blob: e9b69ba489d28930a3f5ee3d80fe99ca4283ca17 [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>
49#include <linux/highmem.h>
50#include <linux/spinlock.h>
51#include <linux/blkdev.h>
52#include <linux/delay.h>
53#include <linux/timer.h>
54#include <linux/interrupt.h>
55#include <linux/completion.h>
56#include <linux/suspend.h>
57#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040058#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100059#include <linux/scatterlist.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040060#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050062#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <scsi/scsi_host.h>
64#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <asm/semaphore.h>
66#include <asm/byteorder.h>
Tejun Heo140b5e52007-12-12 12:21:52 +090067#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#include "libata.h"
70
Jeff Garzikfda0efc2007-01-31 07:43:15 -050071
Tejun Heod7bb4cc2006-05-31 18:27:46 +090072/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090073const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
74const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
75const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090076
Tejun Heo3373efd2006-05-15 20:57:53 +090077static unsigned int ata_dev_init_params(struct ata_device *dev,
78 u16 heads, u16 sectors);
79static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -040080static unsigned int ata_dev_set_feature(struct ata_device *dev,
81 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +090082static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090083static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Tejun Heof3187192007-04-17 23:44:07 +090085unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static struct workqueue_struct *ata_wq;
87
Tejun Heo453b07a2006-05-31 18:27:42 +090088struct workqueue_struct *ata_aux_wq;
89
Tejun Heo33267322008-02-13 09:15:09 +090090struct ata_force_param {
91 const char *name;
92 unsigned int cbl;
93 int spd_limit;
94 unsigned long xfer_mask;
95 unsigned int horkage_on;
96 unsigned int horkage_off;
97};
98
99struct ata_force_ent {
100 int port;
101 int device;
102 struct ata_force_param param;
103};
104
105static struct ata_force_ent *ata_force_tbl;
106static int ata_force_tbl_size;
107
108static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900109/* param_buf is thrown away after initialization, disallow read */
110module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900111MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
112
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500113int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400114module_param(atapi_enabled, int, 0444);
115MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
116
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200117static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800118module_param(atapi_dmadir, int, 0444);
119MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
120
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900121int atapi_passthru16 = 1;
122module_param(atapi_passthru16, int, 0444);
123MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
124
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500125int libata_fua = 0;
126module_param_named(fua, libata_fua, int, 0444);
127MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
128
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400129static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100130module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
131MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
132
Alan Coxb3a70602007-10-02 12:38:26 -0400133static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
134module_param_named(dma, libata_dma_mask, int, 0444);
135MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
136
Andrew Mortona8601e52006-06-25 01:36:52 -0700137static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
138module_param(ata_probe_timeout, int, 0444);
139MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
140
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400141int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400142module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400143MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700144
Alan Coxae8d4ee2007-11-04 22:05:49 -0500145int libata_allow_tpm = 0;
146module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
147MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149MODULE_AUTHOR("Jeff Garzik");
150MODULE_DESCRIPTION("Library module for ATA devices");
151MODULE_LICENSE("GPL");
152MODULE_VERSION(DRV_VERSION);
153
Edward Falk0baab862005-06-02 18:17:13 -0400154
155/**
Tejun Heo33267322008-02-13 09:15:09 +0900156 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800157 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900158 *
159 * Force cable type according to libata.force and whine about it.
160 * The last entry which has matching port number is used, so it
161 * can be specified as part of device force parameters. For
162 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
163 * same effect.
164 *
165 * LOCKING:
166 * EH context.
167 */
168void ata_force_cbl(struct ata_port *ap)
169{
170 int i;
171
172 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
173 const struct ata_force_ent *fe = &ata_force_tbl[i];
174
175 if (fe->port != -1 && fe->port != ap->print_id)
176 continue;
177
178 if (fe->param.cbl == ATA_CBL_NONE)
179 continue;
180
181 ap->cbl = fe->param.cbl;
182 ata_port_printk(ap, KERN_NOTICE,
183 "FORCE: cable set to %s\n", fe->param.name);
184 return;
185 }
186}
187
188/**
189 * ata_force_spd_limit - force SATA spd limit according to libata.force
190 * @link: ATA link of interest
191 *
192 * Force SATA spd limit according to libata.force and whine about
193 * it. When only the port part is specified (e.g. 1:), the limit
194 * applies to all links connected to both the host link and all
195 * fan-out ports connected via PMP. If the device part is
196 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
197 * link not the host link. Device number 15 always points to the
198 * host link whether PMP is attached or not.
199 *
200 * LOCKING:
201 * EH context.
202 */
203static void ata_force_spd_limit(struct ata_link *link)
204{
205 int linkno, i;
206
207 if (ata_is_host_link(link))
208 linkno = 15;
209 else
210 linkno = link->pmp;
211
212 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
213 const struct ata_force_ent *fe = &ata_force_tbl[i];
214
215 if (fe->port != -1 && fe->port != link->ap->print_id)
216 continue;
217
218 if (fe->device != -1 && fe->device != linkno)
219 continue;
220
221 if (!fe->param.spd_limit)
222 continue;
223
224 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
225 ata_link_printk(link, KERN_NOTICE,
226 "FORCE: PHY spd limit set to %s\n", fe->param.name);
227 return;
228 }
229}
230
231/**
232 * ata_force_xfermask - force xfermask according to libata.force
233 * @dev: ATA device of interest
234 *
235 * Force xfer_mask according to libata.force and whine about it.
236 * For consistency with link selection, device number 15 selects
237 * the first device connected to the host link.
238 *
239 * LOCKING:
240 * EH context.
241 */
242static void ata_force_xfermask(struct ata_device *dev)
243{
244 int devno = dev->link->pmp + dev->devno;
245 int alt_devno = devno;
246 int i;
247
248 /* allow n.15 for the first device attached to host port */
249 if (ata_is_host_link(dev->link) && devno == 0)
250 alt_devno = 15;
251
252 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
253 const struct ata_force_ent *fe = &ata_force_tbl[i];
254 unsigned long pio_mask, mwdma_mask, udma_mask;
255
256 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
257 continue;
258
259 if (fe->device != -1 && fe->device != devno &&
260 fe->device != alt_devno)
261 continue;
262
263 if (!fe->param.xfer_mask)
264 continue;
265
266 ata_unpack_xfermask(fe->param.xfer_mask,
267 &pio_mask, &mwdma_mask, &udma_mask);
268 if (udma_mask)
269 dev->udma_mask = udma_mask;
270 else if (mwdma_mask) {
271 dev->udma_mask = 0;
272 dev->mwdma_mask = mwdma_mask;
273 } else {
274 dev->udma_mask = 0;
275 dev->mwdma_mask = 0;
276 dev->pio_mask = pio_mask;
277 }
278
279 ata_dev_printk(dev, KERN_NOTICE,
280 "FORCE: xfer_mask set to %s\n", fe->param.name);
281 return;
282 }
283}
284
285/**
286 * ata_force_horkage - force horkage according to libata.force
287 * @dev: ATA device of interest
288 *
289 * Force horkage according to libata.force and whine about it.
290 * For consistency with link selection, device number 15 selects
291 * the first device connected to the host link.
292 *
293 * LOCKING:
294 * EH context.
295 */
296static void ata_force_horkage(struct ata_device *dev)
297{
298 int devno = dev->link->pmp + dev->devno;
299 int alt_devno = devno;
300 int i;
301
302 /* allow n.15 for the first device attached to host port */
303 if (ata_is_host_link(dev->link) && devno == 0)
304 alt_devno = 15;
305
306 for (i = 0; i < ata_force_tbl_size; i++) {
307 const struct ata_force_ent *fe = &ata_force_tbl[i];
308
309 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
310 continue;
311
312 if (fe->device != -1 && fe->device != devno &&
313 fe->device != alt_devno)
314 continue;
315
316 if (!(~dev->horkage & fe->param.horkage_on) &&
317 !(dev->horkage & fe->param.horkage_off))
318 continue;
319
320 dev->horkage |= fe->param.horkage_on;
321 dev->horkage &= ~fe->param.horkage_off;
322
323 ata_dev_printk(dev, KERN_NOTICE,
324 "FORCE: horkage modified (%s)\n", fe->param.name);
325 }
326}
327
328/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900329 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
330 * @opcode: SCSI opcode
331 *
332 * Determine ATAPI command type from @opcode.
333 *
334 * LOCKING:
335 * None.
336 *
337 * RETURNS:
338 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
339 */
340int atapi_cmd_type(u8 opcode)
341{
342 switch (opcode) {
343 case GPCMD_READ_10:
344 case GPCMD_READ_12:
345 return ATAPI_READ;
346
347 case GPCMD_WRITE_10:
348 case GPCMD_WRITE_12:
349 case GPCMD_WRITE_AND_VERIFY_10:
350 return ATAPI_WRITE;
351
352 case GPCMD_READ_CD:
353 case GPCMD_READ_CD_MSF:
354 return ATAPI_READ_CD;
355
356 default:
357 return ATAPI_MISC;
358 }
359}
360
361/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
363 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900365 * @is_cmd: This FIS is for command
366 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * Converts a standard ATA taskfile to a Serial ATA
369 * FIS structure (Register - Host to Device).
370 *
371 * LOCKING:
372 * Inherited from caller.
373 */
Tejun Heo99771262007-07-16 14:29:38 +0900374void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Tejun Heo99771262007-07-16 14:29:38 +0900376 fis[0] = 0x27; /* Register - Host to Device FIS */
377 fis[1] = pmp & 0xf; /* Port multiplier number*/
378 if (is_cmd)
379 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 fis[2] = tf->command;
382 fis[3] = tf->feature;
383
384 fis[4] = tf->lbal;
385 fis[5] = tf->lbam;
386 fis[6] = tf->lbah;
387 fis[7] = tf->device;
388
389 fis[8] = tf->hob_lbal;
390 fis[9] = tf->hob_lbam;
391 fis[10] = tf->hob_lbah;
392 fis[11] = tf->hob_feature;
393
394 fis[12] = tf->nsect;
395 fis[13] = tf->hob_nsect;
396 fis[14] = 0;
397 fis[15] = tf->ctl;
398
399 fis[16] = 0;
400 fis[17] = 0;
401 fis[18] = 0;
402 fis[19] = 0;
403}
404
405/**
406 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
407 * @fis: Buffer from which data will be input
408 * @tf: Taskfile to output
409 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500410 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
412 * LOCKING:
413 * Inherited from caller.
414 */
415
Jeff Garzik057ace52005-10-22 14:27:05 -0400416void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 tf->command = fis[2]; /* status */
419 tf->feature = fis[3]; /* error */
420
421 tf->lbal = fis[4];
422 tf->lbam = fis[5];
423 tf->lbah = fis[6];
424 tf->device = fis[7];
425
426 tf->hob_lbal = fis[8];
427 tf->hob_lbam = fis[9];
428 tf->hob_lbah = fis[10];
429
430 tf->nsect = fis[12];
431 tf->hob_nsect = fis[13];
432}
433
Albert Lee8cbd6df2005-10-12 15:06:27 +0800434static const u8 ata_rw_cmds[] = {
435 /* pio multi */
436 ATA_CMD_READ_MULTI,
437 ATA_CMD_WRITE_MULTI,
438 ATA_CMD_READ_MULTI_EXT,
439 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100440 0,
441 0,
442 0,
443 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800444 /* pio */
445 ATA_CMD_PIO_READ,
446 ATA_CMD_PIO_WRITE,
447 ATA_CMD_PIO_READ_EXT,
448 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100449 0,
450 0,
451 0,
452 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800453 /* dma */
454 ATA_CMD_READ,
455 ATA_CMD_WRITE,
456 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100457 ATA_CMD_WRITE_EXT,
458 0,
459 0,
460 0,
461 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800462};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800465 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900466 * @tf: command to examine and configure
467 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500469 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800470 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *
472 * LOCKING:
473 * caller.
474 */
Tejun Heobd056d72006-11-14 22:47:10 +0900475static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100477 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100479 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500480
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100481 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800482 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
483 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Albert Lee8cbd6df2005-10-12 15:06:27 +0800485 if (dev->flags & ATA_DFLAG_PIO) {
486 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100487 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900488 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000489 /* Unable to use DMA due to host limitation */
490 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800491 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800492 } else {
493 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100494 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100497 cmd = ata_rw_cmds[index + fua + lba48 + write];
498 if (cmd) {
499 tf->command = cmd;
500 return 0;
501 }
502 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Tejun Heocb95d562006-03-06 04:31:56 +0900505/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900506 * ata_tf_read_block - Read block address from ATA taskfile
507 * @tf: ATA taskfile of interest
508 * @dev: ATA device @tf belongs to
509 *
510 * LOCKING:
511 * None.
512 *
513 * Read block address from @tf. This function can handle all
514 * three address formats - LBA, LBA48 and CHS. tf->protocol and
515 * flags select the address format to use.
516 *
517 * RETURNS:
518 * Block address read from @tf.
519 */
520u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
521{
522 u64 block = 0;
523
524 if (tf->flags & ATA_TFLAG_LBA) {
525 if (tf->flags & ATA_TFLAG_LBA48) {
526 block |= (u64)tf->hob_lbah << 40;
527 block |= (u64)tf->hob_lbam << 32;
528 block |= tf->hob_lbal << 24;
529 } else
530 block |= (tf->device & 0xf) << 24;
531
532 block |= tf->lbah << 16;
533 block |= tf->lbam << 8;
534 block |= tf->lbal;
535 } else {
536 u32 cyl, head, sect;
537
538 cyl = tf->lbam | (tf->lbah << 8);
539 head = tf->device & 0xf;
540 sect = tf->lbal;
541
542 block = (cyl * dev->heads + head) * dev->sectors + sect;
543 }
544
545 return block;
546}
547
548/**
Tejun Heobd056d72006-11-14 22:47:10 +0900549 * ata_build_rw_tf - Build ATA taskfile for given read/write request
550 * @tf: Target ATA taskfile
551 * @dev: ATA device @tf belongs to
552 * @block: Block address
553 * @n_block: Number of blocks
554 * @tf_flags: RW/FUA etc...
555 * @tag: tag
556 *
557 * LOCKING:
558 * None.
559 *
560 * Build ATA taskfile @tf for read/write request described by
561 * @block, @n_block, @tf_flags and @tag on @dev.
562 *
563 * RETURNS:
564 *
565 * 0 on success, -ERANGE if the request is too large for @dev,
566 * -EINVAL if the request is invalid.
567 */
568int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
569 u64 block, u32 n_block, unsigned int tf_flags,
570 unsigned int tag)
571{
572 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
573 tf->flags |= tf_flags;
574
Tejun Heo6d1245b2007-02-20 23:20:27 +0900575 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900576 /* yay, NCQ */
577 if (!lba_48_ok(block, n_block))
578 return -ERANGE;
579
580 tf->protocol = ATA_PROT_NCQ;
581 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
582
583 if (tf->flags & ATA_TFLAG_WRITE)
584 tf->command = ATA_CMD_FPDMA_WRITE;
585 else
586 tf->command = ATA_CMD_FPDMA_READ;
587
588 tf->nsect = tag << 3;
589 tf->hob_feature = (n_block >> 8) & 0xff;
590 tf->feature = n_block & 0xff;
591
592 tf->hob_lbah = (block >> 40) & 0xff;
593 tf->hob_lbam = (block >> 32) & 0xff;
594 tf->hob_lbal = (block >> 24) & 0xff;
595 tf->lbah = (block >> 16) & 0xff;
596 tf->lbam = (block >> 8) & 0xff;
597 tf->lbal = block & 0xff;
598
599 tf->device = 1 << 6;
600 if (tf->flags & ATA_TFLAG_FUA)
601 tf->device |= 1 << 7;
602 } else if (dev->flags & ATA_DFLAG_LBA) {
603 tf->flags |= ATA_TFLAG_LBA;
604
605 if (lba_28_ok(block, n_block)) {
606 /* use LBA28 */
607 tf->device |= (block >> 24) & 0xf;
608 } else if (lba_48_ok(block, n_block)) {
609 if (!(dev->flags & ATA_DFLAG_LBA48))
610 return -ERANGE;
611
612 /* use LBA48 */
613 tf->flags |= ATA_TFLAG_LBA48;
614
615 tf->hob_nsect = (n_block >> 8) & 0xff;
616
617 tf->hob_lbah = (block >> 40) & 0xff;
618 tf->hob_lbam = (block >> 32) & 0xff;
619 tf->hob_lbal = (block >> 24) & 0xff;
620 } else
621 /* request too large even for LBA48 */
622 return -ERANGE;
623
624 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
625 return -EINVAL;
626
627 tf->nsect = n_block & 0xff;
628
629 tf->lbah = (block >> 16) & 0xff;
630 tf->lbam = (block >> 8) & 0xff;
631 tf->lbal = block & 0xff;
632
633 tf->device |= ATA_LBA;
634 } else {
635 /* CHS */
636 u32 sect, head, cyl, track;
637
638 /* The request -may- be too large for CHS addressing. */
639 if (!lba_28_ok(block, n_block))
640 return -ERANGE;
641
642 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
643 return -EINVAL;
644
645 /* Convert LBA to CHS */
646 track = (u32)block / dev->sectors;
647 cyl = track / dev->heads;
648 head = track % dev->heads;
649 sect = (u32)block % dev->sectors + 1;
650
651 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
652 (u32)block, track, cyl, head, sect);
653
654 /* Check whether the converted CHS can fit.
655 Cylinder: 0-65535
656 Head: 0-15
657 Sector: 1-255*/
658 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
659 return -ERANGE;
660
661 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
662 tf->lbal = sect;
663 tf->lbam = cyl;
664 tf->lbah = cyl >> 8;
665 tf->device |= head;
666 }
667
668 return 0;
669}
670
671/**
Tejun Heocb95d562006-03-06 04:31:56 +0900672 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
673 * @pio_mask: pio_mask
674 * @mwdma_mask: mwdma_mask
675 * @udma_mask: udma_mask
676 *
677 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
678 * unsigned int xfer_mask.
679 *
680 * LOCKING:
681 * None.
682 *
683 * RETURNS:
684 * Packed xfer_mask.
685 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900686unsigned long ata_pack_xfermask(unsigned long pio_mask,
687 unsigned long mwdma_mask,
688 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900689{
690 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
691 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
692 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
693}
694
Tejun Heoc0489e42006-03-24 14:07:49 +0900695/**
696 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
697 * @xfer_mask: xfer_mask to unpack
698 * @pio_mask: resulting pio_mask
699 * @mwdma_mask: resulting mwdma_mask
700 * @udma_mask: resulting udma_mask
701 *
702 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
703 * Any NULL distination masks will be ignored.
704 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900705void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
706 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900707{
708 if (pio_mask)
709 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
710 if (mwdma_mask)
711 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
712 if (udma_mask)
713 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
714}
715
Tejun Heocb95d562006-03-06 04:31:56 +0900716static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900717 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900718 u8 base;
719} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900720 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
721 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
722 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900723 { -1, },
724};
725
726/**
727 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
728 * @xfer_mask: xfer_mask of interest
729 *
730 * Return matching XFER_* value for @xfer_mask. Only the highest
731 * bit of @xfer_mask is considered.
732 *
733 * LOCKING:
734 * None.
735 *
736 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900737 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900738 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900739u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900740{
741 int highbit = fls(xfer_mask) - 1;
742 const struct ata_xfer_ent *ent;
743
744 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
745 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
746 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900747 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900748}
749
750/**
751 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
752 * @xfer_mode: XFER_* of interest
753 *
754 * Return matching xfer_mask for @xfer_mode.
755 *
756 * LOCKING:
757 * None.
758 *
759 * RETURNS:
760 * Matching xfer_mask, 0 if no match found.
761 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900762unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900763{
764 const struct ata_xfer_ent *ent;
765
766 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
767 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900768 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
769 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900770 return 0;
771}
772
773/**
774 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
775 * @xfer_mode: XFER_* of interest
776 *
777 * Return matching xfer_shift for @xfer_mode.
778 *
779 * LOCKING:
780 * None.
781 *
782 * RETURNS:
783 * Matching xfer_shift, -1 if no match found.
784 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900785int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900786{
787 const struct ata_xfer_ent *ent;
788
789 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
790 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
791 return ent->shift;
792 return -1;
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900796 * ata_mode_string - convert xfer_mask to string
797 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
799 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900800 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *
802 * LOCKING:
803 * None.
804 *
805 * RETURNS:
806 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900807 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900809const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Tejun Heo75f554b2006-03-06 04:31:57 +0900811 static const char * const xfer_mode_str[] = {
812 "PIO0",
813 "PIO1",
814 "PIO2",
815 "PIO3",
816 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100817 "PIO5",
818 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900819 "MWDMA0",
820 "MWDMA1",
821 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100822 "MWDMA3",
823 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900824 "UDMA/16",
825 "UDMA/25",
826 "UDMA/33",
827 "UDMA/44",
828 "UDMA/66",
829 "UDMA/100",
830 "UDMA/133",
831 "UDMA7",
832 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900833 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900835 highbit = fls(xfer_mask) - 1;
836 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
837 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Tejun Heo4c360c82006-04-01 01:38:17 +0900841static const char *sata_spd_string(unsigned int spd)
842{
843 static const char * const spd_str[] = {
844 "1.5 Gbps",
845 "3.0 Gbps",
846 };
847
848 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
849 return "<unknown>";
850 return spd_str[spd - 1];
851}
852
Tejun Heo3373efd2006-05-15 20:57:53 +0900853void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900854{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900855 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900856 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900857 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900858 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900859 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
860 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900861 dev->class++;
862 }
863}
864
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400865static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
866{
867 struct ata_link *link = dev->link;
868 struct ata_port *ap = link->ap;
869 u32 scontrol;
870 unsigned int err_mask;
871 int rc;
872
873 /*
874 * disallow DIPM for drivers which haven't set
875 * ATA_FLAG_IPM. This is because when DIPM is enabled,
876 * phy ready will be set in the interrupt status on
877 * state changes, which will cause some drivers to
878 * think there are errors - additionally drivers will
879 * need to disable hot plug.
880 */
881 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
882 ap->pm_policy = NOT_AVAILABLE;
883 return -EINVAL;
884 }
885
886 /*
887 * For DIPM, we will only enable it for the
888 * min_power setting.
889 *
890 * Why? Because Disks are too stupid to know that
891 * If the host rejects a request to go to SLUMBER
892 * they should retry at PARTIAL, and instead it
893 * just would give up. So, for medium_power to
894 * work at all, we need to only allow HIPM.
895 */
896 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
897 if (rc)
898 return rc;
899
900 switch (policy) {
901 case MIN_POWER:
902 /* no restrictions on IPM transitions */
903 scontrol &= ~(0x3 << 8);
904 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
905 if (rc)
906 return rc;
907
908 /* enable DIPM */
909 if (dev->flags & ATA_DFLAG_DIPM)
910 err_mask = ata_dev_set_feature(dev,
911 SETFEATURES_SATA_ENABLE, SATA_DIPM);
912 break;
913 case MEDIUM_POWER:
914 /* allow IPM to PARTIAL */
915 scontrol &= ~(0x1 << 8);
916 scontrol |= (0x2 << 8);
917 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
918 if (rc)
919 return rc;
920
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700921 /*
922 * we don't have to disable DIPM since IPM flags
923 * disallow transitions to SLUMBER, which effectively
924 * disable DIPM if it does not support PARTIAL
925 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400926 break;
927 case NOT_AVAILABLE:
928 case MAX_PERFORMANCE:
929 /* disable all IPM transitions */
930 scontrol |= (0x3 << 8);
931 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
932 if (rc)
933 return rc;
934
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700935 /*
936 * we don't have to disable DIPM since IPM flags
937 * disallow all transitions which effectively
938 * disable DIPM anyway.
939 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400940 break;
941 }
942
943 /* FIXME: handle SET FEATURES failure */
944 (void) err_mask;
945
946 return 0;
947}
948
949/**
950 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700951 * @dev: device to enable power management
952 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400953 *
954 * Enable SATA Interface power management. This will enable
955 * Device Interface Power Management (DIPM) for min_power
956 * policy, and then call driver specific callbacks for
957 * enabling Host Initiated Power management.
958 *
959 * Locking: Caller.
960 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
961 */
962void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
963{
964 int rc = 0;
965 struct ata_port *ap = dev->link->ap;
966
967 /* set HIPM first, then DIPM */
968 if (ap->ops->enable_pm)
969 rc = ap->ops->enable_pm(ap, policy);
970 if (rc)
971 goto enable_pm_out;
972 rc = ata_dev_set_dipm(dev, policy);
973
974enable_pm_out:
975 if (rc)
976 ap->pm_policy = MAX_PERFORMANCE;
977 else
978 ap->pm_policy = policy;
979 return /* rc */; /* hopefully we can use 'rc' eventually */
980}
981
Stephen Rothwell1992a5e2007-10-31 14:53:32 +1100982#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400983/**
984 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700985 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400986 *
987 * Disable SATA Interface power management. This will disable
988 * Device Interface Power Management (DIPM) without changing
989 * policy, call driver specific callbacks for disabling Host
990 * Initiated Power management.
991 *
992 * Locking: Caller.
993 * Returns: void
994 */
995static void ata_dev_disable_pm(struct ata_device *dev)
996{
997 struct ata_port *ap = dev->link->ap;
998
999 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1000 if (ap->ops->disable_pm)
1001 ap->ops->disable_pm(ap);
1002}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001003#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001004
1005void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1006{
1007 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001008 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001009 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1010 ata_port_schedule_eh(ap);
1011}
1012
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001013#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001014static void ata_lpm_enable(struct ata_host *host)
1015{
1016 struct ata_link *link;
1017 struct ata_port *ap;
1018 struct ata_device *dev;
1019 int i;
1020
1021 for (i = 0; i < host->n_ports; i++) {
1022 ap = host->ports[i];
1023 ata_port_for_each_link(link, ap) {
1024 ata_link_for_each_dev(dev, link)
1025 ata_dev_disable_pm(dev);
1026 }
1027 }
1028}
1029
1030static void ata_lpm_disable(struct ata_host *host)
1031{
1032 int i;
1033
1034 for (i = 0; i < host->n_ports; i++) {
1035 struct ata_port *ap = host->ports[i];
1036 ata_lpm_schedule(ap, ap->pm_policy);
1037 }
1038}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001039#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001040
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 * ata_devchk - PATA device presence detection
1044 * @ap: ATA channel to examine
1045 * @device: Device to examine (starting at zero)
1046 *
Tejun Heo0d5ff562007-02-01 15:06:36 +09001047 * This technique was originally described in
1048 * Hale Landis's ATADRVR (www.ata-atapi.com), and
1049 * later found its way into the ATA/ATAPI spec.
1050 *
1051 * Write a pattern to the ATA shadow registers,
1052 * and if a device is present, it will respond by
1053 * correctly storing and echoing back the
1054 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 *
1056 * LOCKING:
1057 * caller.
1058 */
1059
Tejun Heo0d5ff562007-02-01 15:06:36 +09001060static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001062 struct ata_ioports *ioaddr = &ap->ioaddr;
1063 u8 nsect, lbal;
1064
1065 ap->ops->dev_select(ap, device);
1066
1067 iowrite8(0x55, ioaddr->nsect_addr);
1068 iowrite8(0xaa, ioaddr->lbal_addr);
1069
1070 iowrite8(0xaa, ioaddr->nsect_addr);
1071 iowrite8(0x55, ioaddr->lbal_addr);
1072
1073 iowrite8(0x55, ioaddr->nsect_addr);
1074 iowrite8(0xaa, ioaddr->lbal_addr);
1075
1076 nsect = ioread8(ioaddr->nsect_addr);
1077 lbal = ioread8(ioaddr->lbal_addr);
1078
1079 if ((nsect == 0x55) && (lbal == 0xaa))
1080 return 1; /* we found a device */
1081
1082 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085/**
1086 * ata_dev_classify - determine device type based on ATA-spec signature
1087 * @tf: ATA taskfile register set for device to be identified
1088 *
1089 * Determine from taskfile register contents whether a device is
1090 * ATA or ATAPI, as per "Signature and persistence" section
1091 * of ATA/PI spec (volume 1, sect 5.14).
1092 *
1093 * LOCKING:
1094 * None.
1095 *
1096 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001097 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1098 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001100unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
1102 /* Apple's open source Darwin code hints that some devices only
1103 * put a proper signature into the LBA mid/high registers,
1104 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001105 *
1106 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1107 * signatures for ATA and ATAPI devices attached on SerialATA,
1108 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1109 * spec has never mentioned about using different signatures
1110 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1111 * Multiplier specification began to use 0x69/0x96 to identify
1112 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1113 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1114 * 0x69/0x96 shortly and described them as reserved for
1115 * SerialATA.
1116 *
1117 * We follow the current spec and consider that 0x69/0x96
1118 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 */
Tejun Heo633273a32007-09-23 13:19:54 +09001120 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 DPRINTK("found ATA device by sig\n");
1122 return ATA_DEV_ATA;
1123 }
1124
Tejun Heo633273a32007-09-23 13:19:54 +09001125 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 DPRINTK("found ATAPI device by sig\n");
1127 return ATA_DEV_ATAPI;
1128 }
1129
Tejun Heo633273a32007-09-23 13:19:54 +09001130 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1131 DPRINTK("found PMP device by sig\n");
1132 return ATA_DEV_PMP;
1133 }
1134
1135 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001136 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001137 return ATA_DEV_SEMB_UNSUP; /* not yet */
1138 }
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 DPRINTK("unknown device\n");
1141 return ATA_DEV_UNKNOWN;
1142}
1143
1144/**
1145 * ata_dev_try_classify - Parse returned ATA device signature
Tejun Heo3f198592007-09-02 23:23:57 +09001146 * @dev: ATA device to classify (starting at zero)
1147 * @present: device seems present
Tejun Heob4dc7622006-01-24 17:05:22 +09001148 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 *
1150 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
1151 * an ATA/ATAPI-defined set of values is placed in the ATA
1152 * shadow registers, indicating the results of device detection
1153 * and diagnostics.
1154 *
1155 * Select the ATA device, and read the values from the ATA shadow
1156 * registers. Then parse according to the Error register value,
1157 * and the spec-defined values examined by ata_dev_classify().
1158 *
1159 * LOCKING:
1160 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +09001161 *
1162 * RETURNS:
1163 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
Tejun Heo3f198592007-09-02 23:23:57 +09001165unsigned int ata_dev_try_classify(struct ata_device *dev, int present,
1166 u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Tejun Heo3f198592007-09-02 23:23:57 +09001168 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 struct ata_taskfile tf;
1170 unsigned int class;
1171 u8 err;
1172
Tejun Heo3f198592007-09-02 23:23:57 +09001173 ap->ops->dev_select(ap, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 memset(&tf, 0, sizeof(tf));
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -04001178 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +09001179 if (r_err)
1180 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Alan Coxc5038fc2007-10-25 14:21:16 +01001182 /* see if device passed diags: continue and warn later */
1183 if (err == 0)
Alan Cox93590852006-09-12 16:55:12 +01001184 /* diagnostic fail : do nothing _YET_ */
Tejun Heo3f198592007-09-02 23:23:57 +09001185 dev->horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +01001186 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* do nothing */ ;
Tejun Heo3f198592007-09-02 23:23:57 +09001188 else if ((dev->devno == 0) && (err == 0x81))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* do nothing */ ;
1190 else
Tejun Heob4dc7622006-01-24 17:05:22 +09001191 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Tejun Heob4dc7622006-01-24 17:05:22 +09001193 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +09001195
Tejun Heod7fbee02007-09-02 23:24:48 +09001196 if (class == ATA_DEV_UNKNOWN) {
1197 /* If the device failed diagnostic, it's likely to
1198 * have reported incorrect device signature too.
1199 * Assume ATA device if the device seems present but
1200 * device signature is invalid with diagnostic
1201 * failure.
1202 */
1203 if (present && (dev->horkage & ATA_HORKAGE_DIAGNOSTIC))
1204 class = ATA_DEV_ATA;
1205 else
1206 class = ATA_DEV_NONE;
1207 } else if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
1208 class = ATA_DEV_NONE;
1209
Tejun Heob4dc7622006-01-24 17:05:22 +09001210 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001214 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 * @id: IDENTIFY DEVICE results we will examine
1216 * @s: string into which data is output
1217 * @ofs: offset into identify device page
1218 * @len: length of string to return. must be an even number.
1219 *
1220 * The strings in the IDENTIFY DEVICE page are broken up into
1221 * 16-bit chunks. Run through the string, and output each
1222 * 8-bit chunk linearly, regardless of platform.
1223 *
1224 * LOCKING:
1225 * caller.
1226 */
1227
Tejun Heo6a62a042006-02-13 10:02:46 +09001228void ata_id_string(const u16 *id, unsigned char *s,
1229 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 unsigned int c;
1232
1233 while (len > 0) {
1234 c = id[ofs] >> 8;
1235 *s = c;
1236 s++;
1237
1238 c = id[ofs] & 0xff;
1239 *s = c;
1240 s++;
1241
1242 ofs++;
1243 len -= 2;
1244 }
1245}
1246
Tejun Heo0e949ff2006-02-12 22:47:04 +09001247/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001248 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001249 * @id: IDENTIFY DEVICE results we will examine
1250 * @s: string into which data is output
1251 * @ofs: offset into identify device page
1252 * @len: length of string to return. must be an odd number.
1253 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001254 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001255 * trims trailing spaces and terminates the resulting string with
1256 * null. @len must be actual maximum length (even number) + 1.
1257 *
1258 * LOCKING:
1259 * caller.
1260 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001261void ata_id_c_string(const u16 *id, unsigned char *s,
1262 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001263{
1264 unsigned char *p;
1265
1266 WARN_ON(!(len & 1));
1267
Tejun Heo6a62a042006-02-13 10:02:46 +09001268 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001269
1270 p = s + strnlen(s, len - 1);
1271 while (p > s && p[-1] == ' ')
1272 p--;
1273 *p = '\0';
1274}
Edward Falk0baab862005-06-02 18:17:13 -04001275
Tejun Heodb6f8752007-09-03 12:31:58 +09001276static u64 ata_id_n_sectors(const u16 *id)
1277{
1278 if (ata_id_has_lba(id)) {
1279 if (ata_id_has_lba48(id))
1280 return ata_id_u64(id, 100);
1281 else
1282 return ata_id_u32(id, 60);
1283 } else {
1284 if (ata_id_current_chs_valid(id))
1285 return ata_id_u32(id, 57);
1286 else
1287 return id[1] * id[3] * id[6];
1288 }
1289}
1290
Alan Cox1e999732007-04-11 00:23:13 +01001291static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
1292{
1293 u64 sectors = 0;
1294
1295 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1296 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1297 sectors |= (tf->hob_lbal & 0xff) << 24;
1298 sectors |= (tf->lbah & 0xff) << 16;
1299 sectors |= (tf->lbam & 0xff) << 8;
1300 sectors |= (tf->lbal & 0xff);
1301
1302 return ++sectors;
1303}
1304
1305static u64 ata_tf_to_lba(struct ata_taskfile *tf)
1306{
1307 u64 sectors = 0;
1308
1309 sectors |= (tf->device & 0x0f) << 24;
1310 sectors |= (tf->lbah & 0xff) << 16;
1311 sectors |= (tf->lbam & 0xff) << 8;
1312 sectors |= (tf->lbal & 0xff);
1313
1314 return ++sectors;
1315}
1316
1317/**
Tejun Heoc728a912007-09-03 12:32:30 +09001318 * ata_read_native_max_address - Read native max address
1319 * @dev: target device
1320 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001321 *
Tejun Heoc728a912007-09-03 12:32:30 +09001322 * Perform an LBA48 or LBA28 native size query upon the device in
1323 * question.
1324 *
1325 * RETURNS:
1326 * 0 on success, -EACCES if command is aborted by the drive.
1327 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001328 */
Tejun Heoc728a912007-09-03 12:32:30 +09001329static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001330{
Tejun Heoc728a912007-09-03 12:32:30 +09001331 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001332 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001333 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001334
1335 ata_tf_init(dev, &tf);
1336
Tejun Heoc728a912007-09-03 12:32:30 +09001337 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001338 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001339
1340 if (lba48) {
1341 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1342 tf.flags |= ATA_TFLAG_LBA48;
1343 } else
1344 tf.command = ATA_CMD_READ_NATIVE_MAX;
1345
Alan Cox1e999732007-04-11 00:23:13 +01001346 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001347 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001348
Tejun Heo2b789102007-10-09 15:05:44 +09001349 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001350 if (err_mask) {
1351 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1352 "max address (err_mask=0x%x)\n", err_mask);
1353 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1354 return -EACCES;
1355 return -EIO;
1356 }
Alan Cox1e999732007-04-11 00:23:13 +01001357
Tejun Heoc728a912007-09-03 12:32:30 +09001358 if (lba48)
1359 *max_sectors = ata_tf_to_lba48(&tf);
1360 else
1361 *max_sectors = ata_tf_to_lba(&tf);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001362 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001363 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001364 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001365}
1366
1367/**
Tejun Heoc728a912007-09-03 12:32:30 +09001368 * ata_set_max_sectors - Set max sectors
1369 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001370 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001371 *
Tejun Heoc728a912007-09-03 12:32:30 +09001372 * Set max sectors of @dev to @new_sectors.
1373 *
1374 * RETURNS:
1375 * 0 on success, -EACCES if command is aborted or denied (due to
1376 * previous non-volatile SET_MAX) by the drive. -EIO on other
1377 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001378 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001379static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001380{
Tejun Heoc728a912007-09-03 12:32:30 +09001381 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001382 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001383 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001384
1385 new_sectors--;
1386
1387 ata_tf_init(dev, &tf);
1388
Alan Cox1e999732007-04-11 00:23:13 +01001389 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001390
1391 if (lba48) {
1392 tf.command = ATA_CMD_SET_MAX_EXT;
1393 tf.flags |= ATA_TFLAG_LBA48;
1394
1395 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1396 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1397 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001398 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001399 tf.command = ATA_CMD_SET_MAX;
1400
Tejun Heo1e582ba2007-09-21 20:07:14 +09001401 tf.device |= (new_sectors >> 24) & 0xf;
1402 }
1403
Alan Cox1e999732007-04-11 00:23:13 +01001404 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001405 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001406
1407 tf.lbal = (new_sectors >> 0) & 0xff;
1408 tf.lbam = (new_sectors >> 8) & 0xff;
1409 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001410
Tejun Heo2b789102007-10-09 15:05:44 +09001411 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001412 if (err_mask) {
1413 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1414 "max address (err_mask=0x%x)\n", err_mask);
1415 if (err_mask == AC_ERR_DEV &&
1416 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1417 return -EACCES;
1418 return -EIO;
1419 }
Alan Cox1e999732007-04-11 00:23:13 +01001420
Tejun Heoc728a912007-09-03 12:32:30 +09001421 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001422}
1423
1424/**
1425 * ata_hpa_resize - Resize a device with an HPA set
1426 * @dev: Device to resize
1427 *
1428 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1429 * it if required to the full size of the media. The caller must check
1430 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001431 *
1432 * RETURNS:
1433 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001434 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001435static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001436{
Tejun Heo05027ad2007-09-03 12:32:57 +09001437 struct ata_eh_context *ehc = &dev->link->eh_context;
1438 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1439 u64 sectors = ata_id_n_sectors(dev->id);
1440 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001441 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001442
Tejun Heo05027ad2007-09-03 12:32:57 +09001443 /* do we need to do it? */
1444 if (dev->class != ATA_DEV_ATA ||
1445 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1446 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001447 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001448
Tejun Heo05027ad2007-09-03 12:32:57 +09001449 /* read native max address */
1450 rc = ata_read_native_max_address(dev, &native_sectors);
1451 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001452 /* If device aborted the command or HPA isn't going to
1453 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001454 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001455 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001456 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001457 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001458 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001459
Tejun Heo05027ad2007-09-03 12:32:57 +09001460 /* we can continue if device aborted the command */
1461 if (rc == -EACCES)
1462 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001463 }
Tejun Heo37301a52007-06-25 20:45:54 +09001464
Tejun Heo05027ad2007-09-03 12:32:57 +09001465 return rc;
1466 }
1467
1468 /* nothing to do? */
1469 if (native_sectors <= sectors || !ata_ignore_hpa) {
1470 if (!print_info || native_sectors == sectors)
1471 return 0;
1472
1473 if (native_sectors > sectors)
1474 ata_dev_printk(dev, KERN_INFO,
1475 "HPA detected: current %llu, native %llu\n",
1476 (unsigned long long)sectors,
1477 (unsigned long long)native_sectors);
1478 else if (native_sectors < sectors)
1479 ata_dev_printk(dev, KERN_WARNING,
1480 "native sectors (%llu) is smaller than "
1481 "sectors (%llu)\n",
1482 (unsigned long long)native_sectors,
1483 (unsigned long long)sectors);
1484 return 0;
1485 }
1486
1487 /* let's unlock HPA */
1488 rc = ata_set_max_sectors(dev, native_sectors);
1489 if (rc == -EACCES) {
1490 /* if device aborted the command, skip HPA resizing */
1491 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1492 "(%llu -> %llu), skipping HPA handling\n",
1493 (unsigned long long)sectors,
1494 (unsigned long long)native_sectors);
1495 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1496 return 0;
1497 } else if (rc)
1498 return rc;
1499
1500 /* re-read IDENTIFY data */
1501 rc = ata_dev_reread_id(dev, 0);
1502 if (rc) {
1503 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1504 "data after HPA resizing\n");
1505 return rc;
1506 }
1507
1508 if (print_info) {
1509 u64 new_sectors = ata_id_n_sectors(dev->id);
1510 ata_dev_printk(dev, KERN_INFO,
1511 "HPA unlocked: %llu -> %llu, native %llu\n",
1512 (unsigned long long)sectors,
1513 (unsigned long long)new_sectors,
1514 (unsigned long long)native_sectors);
1515 }
1516
1517 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001518}
1519
Edward Falk0baab862005-06-02 18:17:13 -04001520/**
1521 * ata_noop_dev_select - Select device 0/1 on ATA bus
1522 * @ap: ATA channel to manipulate
1523 * @device: ATA device (numbered from zero) to select
1524 *
1525 * This function performs no actual function.
1526 *
1527 * May be used as the dev_select() entry in ata_port_operations.
1528 *
1529 * LOCKING:
1530 * caller.
1531 */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001532void ata_noop_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534}
1535
Edward Falk0baab862005-06-02 18:17:13 -04001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/**
1538 * ata_std_dev_select - Select device 0/1 on ATA bus
1539 * @ap: ATA channel to manipulate
1540 * @device: ATA device (numbered from zero) to select
1541 *
1542 * Use the method defined in the ATA specification to
1543 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001544 * ATA channel. Works with both PIO and MMIO.
1545 *
1546 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 *
1548 * LOCKING:
1549 * caller.
1550 */
1551
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001552void ata_std_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 u8 tmp;
1555
1556 if (device == 0)
1557 tmp = ATA_DEVICE_OBS;
1558 else
1559 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1560
Tejun Heo0d5ff562007-02-01 15:06:36 +09001561 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 ata_pause(ap); /* needed; also flushes, for mmio */
1563}
1564
1565/**
1566 * ata_dev_select - Select device 0/1 on ATA bus
1567 * @ap: ATA channel to manipulate
1568 * @device: ATA device (numbered from zero) to select
1569 * @wait: non-zero to wait for Status register BSY bit to clear
1570 * @can_sleep: non-zero if context allows sleeping
1571 *
1572 * Use the method defined in the ATA specification to
1573 * make either device 0, or device 1, active on the
1574 * ATA channel.
1575 *
1576 * This is a high-level version of ata_std_dev_select(),
1577 * which additionally provides the services of inserting
1578 * the proper pauses and status polling, where needed.
1579 *
1580 * LOCKING:
1581 * caller.
1582 */
1583
1584void ata_dev_select(struct ata_port *ap, unsigned int device,
1585 unsigned int wait, unsigned int can_sleep)
1586{
Tejun Heo88574552006-06-25 20:00:35 +09001587 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001588 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1589 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 if (wait)
1592 ata_wait_idle(ap);
1593
1594 ap->ops->dev_select(ap, device);
1595
1596 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001597 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 msleep(150);
1599 ata_wait_idle(ap);
1600 }
1601}
1602
1603/**
1604 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001605 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001607 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1608 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 *
1610 * LOCKING:
1611 * caller.
1612 */
1613
Tejun Heo0bd33002006-02-12 22:47:05 +09001614static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 DPRINTK("49==0x%04x "
1617 "53==0x%04x "
1618 "63==0x%04x "
1619 "64==0x%04x "
1620 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001621 id[49],
1622 id[53],
1623 id[63],
1624 id[64],
1625 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 DPRINTK("80==0x%04x "
1627 "81==0x%04x "
1628 "82==0x%04x "
1629 "83==0x%04x "
1630 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001631 id[80],
1632 id[81],
1633 id[82],
1634 id[83],
1635 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 DPRINTK("88==0x%04x "
1637 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001638 id[88],
1639 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Tejun Heocb95d562006-03-06 04:31:56 +09001642/**
1643 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1644 * @id: IDENTIFY data to compute xfer mask from
1645 *
1646 * Compute the xfermask for this device. This is not as trivial
1647 * as it seems if we must consider early devices correctly.
1648 *
1649 * FIXME: pre IDE drive timing (do we care ?).
1650 *
1651 * LOCKING:
1652 * None.
1653 *
1654 * RETURNS:
1655 * Computed xfermask
1656 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001657unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001658{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001659 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001660
1661 /* Usual case. Word 53 indicates word 64 is valid */
1662 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1663 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1664 pio_mask <<= 3;
1665 pio_mask |= 0x7;
1666 } else {
1667 /* If word 64 isn't valid then Word 51 high byte holds
1668 * the PIO timing number for the maximum. Turn it into
1669 * a mask.
1670 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001671 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001672 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001673 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001674 else
1675 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001676
1677 /* But wait.. there's more. Design your standards by
1678 * committee and you too can get a free iordy field to
1679 * process. However its the speeds not the modes that
1680 * are supported... Note drivers using the timing API
1681 * will get this right anyway
1682 */
1683 }
1684
1685 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001686
Alan Coxb352e572006-08-10 18:52:12 +01001687 if (ata_id_is_cfa(id)) {
1688 /*
1689 * Process compact flash extended modes
1690 */
1691 int pio = id[163] & 0x7;
1692 int dma = (id[163] >> 3) & 7;
1693
1694 if (pio)
1695 pio_mask |= (1 << 5);
1696 if (pio > 1)
1697 pio_mask |= (1 << 6);
1698 if (dma)
1699 mwdma_mask |= (1 << 3);
1700 if (dma > 1)
1701 mwdma_mask |= (1 << 4);
1702 }
1703
Tejun Heofb21f0d2006-03-12 12:34:35 +09001704 udma_mask = 0;
1705 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1706 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001707
1708 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1709}
1710
Tejun Heo86e45b62006-03-05 15:29:09 +09001711/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001712 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001713 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001714 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001715 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001716 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001717 *
1718 * Schedule @fn(@data) for execution after @delay jiffies using
1719 * port_task. There is one port_task per port and it's the
1720 * user(low level driver)'s responsibility to make sure that only
1721 * one task is active at any given time.
1722 *
1723 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001724 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001725 * synchronization.
1726 *
1727 * LOCKING:
1728 * Inherited from caller.
1729 */
Jeff Garzik442eacc2007-12-19 04:25:10 -05001730static void ata_pio_queue_task(struct ata_port *ap, void *data,
1731 unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001732{
David Howells65f27f32006-11-22 14:55:48 +00001733 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001734
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001735 /* may fail if ata_port_flush_task() in progress */
1736 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001737}
1738
1739/**
1740 * ata_port_flush_task - Flush port_task
1741 * @ap: The ata_port to flush port_task for
1742 *
1743 * After this function completes, port_task is guranteed not to
1744 * be running or scheduled.
1745 *
1746 * LOCKING:
1747 * Kernel thread context (may sleep)
1748 */
1749void ata_port_flush_task(struct ata_port *ap)
1750{
Tejun Heo86e45b62006-03-05 15:29:09 +09001751 DPRINTK("ENTER\n");
1752
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001753 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001754
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001755 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001756 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001757}
1758
Adrian Bunk7102d232007-01-04 00:09:36 +01001759static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001760{
Tejun Heo77853bf2006-01-23 13:09:36 +09001761 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001762
Tejun Heoa2a7a662005-12-13 14:48:31 +09001763 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001764}
1765
1766/**
Tejun Heo24326972006-11-14 22:47:09 +09001767 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001768 * @dev: Device to which the command is sent
1769 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001770 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001771 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001772 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001773 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001774 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001775 *
1776 * Executes libata internal command with timeout. @tf contains
1777 * command on entry and result on return. Timeout and error
1778 * conditions are reported via return value. No recovery action
1779 * is taken after a command times out. It's caller's duty to
1780 * clean up after timeout.
1781 *
1782 * LOCKING:
1783 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001784 *
1785 * RETURNS:
1786 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001787 */
Tejun Heo24326972006-11-14 22:47:09 +09001788unsigned ata_exec_internal_sg(struct ata_device *dev,
1789 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001790 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001791 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001792{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001793 struct ata_link *link = dev->link;
1794 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001795 u8 command = tf->command;
1796 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001797 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001798 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001799 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001800 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001801 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001802 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001803 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001804
Jeff Garzikba6a1302006-06-22 23:46:10 -04001805 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001806
Tejun Heoe3180492006-05-15 20:58:09 +09001807 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001808 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001809 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001810 return AC_ERR_SYSTEM;
1811 }
1812
Tejun Heo2ab7db12006-05-15 20:58:02 +09001813 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001814
Tejun Heo2ab7db12006-05-15 20:58:02 +09001815 /* XXX: Tag 0 is used for drivers with legacy EH as some
1816 * drivers choke if any other tag is given. This breaks
1817 * ata_tag_internal() test for those drivers. Don't use new
1818 * EH stuff without converting to it.
1819 */
1820 if (ap->ops->error_handler)
1821 tag = ATA_TAG_INTERNAL;
1822 else
1823 tag = 0;
1824
Tejun Heo6cec4a32006-05-15 21:03:41 +09001825 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001826 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001827 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001828
1829 qc->tag = tag;
1830 qc->scsicmd = NULL;
1831 qc->ap = ap;
1832 qc->dev = dev;
1833 ata_qc_reinit(qc);
1834
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001835 preempted_tag = link->active_tag;
1836 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001837 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001838 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001839 link->active_tag = ATA_TAG_POISON;
1840 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001841 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001842 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001843
1844 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001845 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001846 if (cdb)
1847 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001848 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001849 qc->dma_dir = dma_dir;
1850 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001851 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001852 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001853
Jens Axboe87260212007-10-16 11:14:12 +02001854 for_each_sg(sgl, sg, n_elem, i)
1855 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001856
Jens Axboe87260212007-10-16 11:14:12 +02001857 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001858 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001859 }
1860
Tejun Heo77853bf2006-01-23 13:09:36 +09001861 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001862 qc->complete_fn = ata_qc_complete_internal;
1863
Tejun Heo8e0e6942006-03-31 20:41:11 +09001864 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001865
Jeff Garzikba6a1302006-06-22 23:46:10 -04001866 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001867
Tejun Heo2b789102007-10-09 15:05:44 +09001868 if (!timeout)
1869 timeout = ata_probe_timeout * 1000 / HZ;
1870
1871 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001872
Tejun Heod95a7172006-05-15 20:58:14 +09001873 ata_port_flush_task(ap);
1874
1875 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001876 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001877
1878 /* We're racing with irq here. If we lose, the
1879 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001880 * twice. If we win, the port is frozen and will be
1881 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001882 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001883 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001884 qc->err_mask |= AC_ERR_TIMEOUT;
1885
1886 if (ap->ops->error_handler)
1887 ata_port_freeze(ap);
1888 else
1889 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001890
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001891 if (ata_msg_warn(ap))
1892 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001893 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001894 }
1895
Jeff Garzikba6a1302006-06-22 23:46:10 -04001896 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001897 }
1898
Tejun Heod95a7172006-05-15 20:58:14 +09001899 /* do post_internal_cmd */
1900 if (ap->ops->post_internal_cmd)
1901 ap->ops->post_internal_cmd(qc);
1902
Tejun Heoa51d6442007-03-20 15:24:11 +09001903 /* perform minimal error analysis */
1904 if (qc->flags & ATA_QCFLAG_FAILED) {
1905 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1906 qc->err_mask |= AC_ERR_DEV;
1907
1908 if (!qc->err_mask)
1909 qc->err_mask |= AC_ERR_OTHER;
1910
1911 if (qc->err_mask & ~AC_ERR_OTHER)
1912 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001913 }
1914
Tejun Heo15869302006-05-15 20:57:33 +09001915 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001916 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001917
Tejun Heoe61e0672006-05-15 20:57:40 +09001918 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001919 err_mask = qc->err_mask;
1920
1921 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001922 link->active_tag = preempted_tag;
1923 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001924 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001925 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001926
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001927 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1928 * Until those drivers are fixed, we detect the condition
1929 * here, fail the command with AC_ERR_SYSTEM and reenable the
1930 * port.
1931 *
1932 * Note that this doesn't change any behavior as internal
1933 * command failure results in disabling the device in the
1934 * higher layer for LLDDs without new reset/EH callbacks.
1935 *
1936 * Kill the following code as soon as those drivers are fixed.
1937 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001938 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001939 err_mask |= AC_ERR_SYSTEM;
1940 ata_port_probe(ap);
1941 }
1942
Jeff Garzikba6a1302006-06-22 23:46:10 -04001943 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001944
Tejun Heo77853bf2006-01-23 13:09:36 +09001945 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001946}
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948/**
Tejun Heo33480a02006-12-12 02:15:31 +09001949 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001950 * @dev: Device to which the command is sent
1951 * @tf: Taskfile registers for the command and the result
1952 * @cdb: CDB for packet command
1953 * @dma_dir: Data tranfer direction of the command
1954 * @buf: Data buffer of the command
1955 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001956 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001957 *
1958 * Wrapper around ata_exec_internal_sg() which takes simple
1959 * buffer instead of sg list.
1960 *
1961 * LOCKING:
1962 * None. Should be called with kernel context, might sleep.
1963 *
1964 * RETURNS:
1965 * Zero on success, AC_ERR_* mask on failure
1966 */
1967unsigned ata_exec_internal(struct ata_device *dev,
1968 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001969 int dma_dir, void *buf, unsigned int buflen,
1970 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001971{
Tejun Heo33480a02006-12-12 02:15:31 +09001972 struct scatterlist *psg = NULL, sg;
1973 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001974
Tejun Heo33480a02006-12-12 02:15:31 +09001975 if (dma_dir != DMA_NONE) {
1976 WARN_ON(!buf);
1977 sg_init_one(&sg, buf, buflen);
1978 psg = &sg;
1979 n_elem++;
1980 }
Tejun Heo24326972006-11-14 22:47:09 +09001981
Tejun Heo2b789102007-10-09 15:05:44 +09001982 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1983 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001984}
1985
1986/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001987 * ata_do_simple_cmd - execute simple internal command
1988 * @dev: Device to which the command is sent
1989 * @cmd: Opcode to execute
1990 *
1991 * Execute a 'simple' command, that only consists of the opcode
1992 * 'cmd' itself, without filling any other registers
1993 *
1994 * LOCKING:
1995 * Kernel thread context (may sleep).
1996 *
1997 * RETURNS:
1998 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001999 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09002000unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09002001{
2002 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09002003
2004 ata_tf_init(dev, &tf);
2005
2006 tf.command = cmd;
2007 tf.flags |= ATA_TFLAG_DEVICE;
2008 tf.protocol = ATA_PROT_NODATA;
2009
Tejun Heo2b789102007-10-09 15:05:44 +09002010 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09002011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002014 * ata_pio_need_iordy - check if iordy needed
2015 * @adev: ATA device
2016 *
2017 * Check if the current speed of the device requires IORDY. Used
2018 * by various controllers for chip configuration.
2019 */
Jeff Garzika617c092007-05-21 20:14:23 -04002020
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002021unsigned int ata_pio_need_iordy(const struct ata_device *adev)
2022{
Alan Cox432729f2007-03-08 23:22:59 +00002023 /* Controller doesn't support IORDY. Probably a pointless check
2024 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002025 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002026 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00002027 /* PIO3 and higher it is mandatory */
2028 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002029 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00002030 /* We turn it on when possible */
2031 if (ata_id_has_iordy(adev->id))
2032 return 1;
2033 return 0;
2034}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002035
Alan Cox432729f2007-03-08 23:22:59 +00002036/**
2037 * ata_pio_mask_no_iordy - Return the non IORDY mask
2038 * @adev: ATA device
2039 *
2040 * Compute the highest mode possible if we are not using iordy. Return
2041 * -1 if no iordy mode is available.
2042 */
Jeff Garzika617c092007-05-21 20:14:23 -04002043
Alan Cox432729f2007-03-08 23:22:59 +00002044static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
2045{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002046 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002047 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00002048 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002049 /* Is the speed faster than the drive allows non IORDY ? */
2050 if (pio) {
2051 /* This is cycle times not frequency - watch the logic! */
2052 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00002053 return 3 << ATA_SHIFT_PIO;
2054 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002055 }
2056 }
Alan Cox432729f2007-03-08 23:22:59 +00002057 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002058}
2059
2060/**
Tejun Heo49016ac2006-02-21 02:12:11 +09002061 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09002062 * @dev: target device
2063 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09002064 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09002065 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09002066 *
2067 * Read ID data from the specified device. ATA_CMD_ID_ATA is
2068 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002069 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
2070 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09002071 *
Alan Cox50a99012007-08-08 14:27:00 +01002072 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002073 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01002074 *
Tejun Heo49016ac2006-02-21 02:12:11 +09002075 * LOCKING:
2076 * Kernel thread context (may sleep)
2077 *
2078 * RETURNS:
2079 * 0 on success, -errno otherwise.
2080 */
Tejun Heoa9beec92006-05-31 18:27:44 +09002081int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09002082 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09002083{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002084 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09002085 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09002086 struct ata_taskfile tf;
2087 unsigned int err_mask = 0;
2088 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02002089 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09002090 int rc;
2091
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002092 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002093 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09002094
Tejun Heo49016ac2006-02-21 02:12:11 +09002095 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09002096 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09002097 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09002098
2099 switch (class) {
2100 case ATA_DEV_ATA:
2101 tf.command = ATA_CMD_ID_ATA;
2102 break;
2103 case ATA_DEV_ATAPI:
2104 tf.command = ATA_CMD_ID_ATAPI;
2105 break;
2106 default:
2107 rc = -ENODEV;
2108 reason = "unsupported class";
2109 goto err_out;
2110 }
2111
2112 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08002113
2114 /* Some devices choke if TF registers contain garbage. Make
2115 * sure those are properly initialized.
2116 */
2117 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2118
2119 /* Device presence detection is unreliable on some
2120 * controllers. Always poll IDENTIFY if available.
2121 */
2122 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09002123
Tejun Heo3373efd2006-05-15 20:57:53 +09002124 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09002125 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09002126 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09002127 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09002128 ata_dev_printk(dev, KERN_DEBUG,
2129 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09002130 return -ENOENT;
2131 }
2132
Tejun Heo1ffc1512008-03-23 15:16:53 +09002133 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
2134 /* Device or controller might have reported
2135 * the wrong device class. Give a shot at the
2136 * other IDENTIFY if the current one is
2137 * aborted by the device.
2138 */
2139 if (may_fallback) {
2140 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02002141
Tejun Heo1ffc1512008-03-23 15:16:53 +09002142 if (class == ATA_DEV_ATA)
2143 class = ATA_DEV_ATAPI;
2144 else
2145 class = ATA_DEV_ATA;
2146 goto retry;
2147 }
2148
2149 /* Control reaches here iff the device aborted
2150 * both flavors of IDENTIFYs which happens
2151 * sometimes with phantom devices.
2152 */
2153 ata_dev_printk(dev, KERN_DEBUG,
2154 "both IDENTIFYs aborted, assuming NODEV\n");
2155 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002156 }
2157
Tejun Heo49016ac2006-02-21 02:12:11 +09002158 rc = -EIO;
2159 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002160 goto err_out;
2161 }
2162
Tejun Heo54936f82007-05-11 14:35:29 +02002163 /* Falling back doesn't make sense if ID data was read
2164 * successfully at least once.
2165 */
2166 may_fallback = 0;
2167
Tejun Heo49016ac2006-02-21 02:12:11 +09002168 swap_buf_le16(id, ATA_ID_WORDS);
2169
Tejun Heo49016ac2006-02-21 02:12:11 +09002170 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002171 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002172 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002173
2174 if (class == ATA_DEV_ATA) {
2175 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2176 goto err_out;
2177 } else {
2178 if (ata_id_is_ata(id))
2179 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002180 }
2181
Mark Lord169439c2007-04-17 18:26:07 -04002182 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2183 tried_spinup = 1;
2184 /*
2185 * Drive powered-up in standby mode, and requires a specific
2186 * SET_FEATURES spin-up subcommand before it will accept
2187 * anything other than the original IDENTIFY command.
2188 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002189 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002190 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002191 rc = -EIO;
2192 reason = "SPINUP failed";
2193 goto err_out;
2194 }
2195 /*
2196 * If the drive initially returned incomplete IDENTIFY info,
2197 * we now must reissue the IDENTIFY command.
2198 */
2199 if (id[2] == 0x37c8)
2200 goto retry;
2201 }
2202
Tejun Heobff04642006-11-10 18:08:10 +09002203 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002204 /*
2205 * The exact sequence expected by certain pre-ATA4 drives is:
2206 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002207 * IDENTIFY (optional in early ATA)
2208 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002209 * anything else..
2210 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002211 *
2212 * Note that ATA4 says lba is mandatory so the second check
2213 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002214 */
2215 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002216 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002217 if (err_mask) {
2218 rc = -EIO;
2219 reason = "INIT_DEV_PARAMS failed";
2220 goto err_out;
2221 }
2222
2223 /* current CHS translation info (id[53-58]) might be
2224 * changed. reread the identify device info.
2225 */
Tejun Heobff04642006-11-10 18:08:10 +09002226 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002227 goto retry;
2228 }
2229 }
2230
2231 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002232
Tejun Heo49016ac2006-02-21 02:12:11 +09002233 return 0;
2234
2235 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002236 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002237 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002238 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002239 return rc;
2240}
2241
Tejun Heo3373efd2006-05-15 20:57:53 +09002242static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002243{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002244 struct ata_port *ap = dev->link->ap;
2245 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 Heo67465442007-05-15 03:28:16 +09002311 /* let ACPI work its magic */
2312 rc = ata_acpi_on_devcfg(dev);
2313 if (rc)
2314 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002315
Tejun Heo05027ad2007-09-03 12:32:57 +09002316 /* massage HPA, do it early as it might change IDENTIFY data */
2317 rc = ata_hpa_resize(dev);
2318 if (rc)
2319 return rc;
2320
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002321 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002322 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002323 ata_dev_printk(dev, KERN_DEBUG,
2324 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2325 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002326 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002327 id[49], id[82], id[83], id[84],
2328 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002329
Tejun Heo208a9932006-03-05 17:55:58 +09002330 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002331 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002332 dev->max_sectors = 0;
2333 dev->cdb_len = 0;
2334 dev->n_sectors = 0;
2335 dev->cylinders = 0;
2336 dev->heads = 0;
2337 dev->sectors = 0;
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 /*
2340 * common ATA, ATAPI feature tests
2341 */
2342
Tejun Heoff8854b2006-03-06 04:31:56 +09002343 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002344 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002346 if (ata_msg_probe(ap))
2347 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Albert Leeef143d52007-06-05 13:01:33 +08002349 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2350 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2351 sizeof(fwrevbuf));
2352
2353 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2354 sizeof(modelbuf));
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 /* ATA-specific feature tests */
2357 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002358 if (ata_id_is_cfa(id)) {
2359 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002360 ata_dev_printk(dev, KERN_WARNING,
2361 "supports DRM functions and may "
2362 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002363 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002364 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002365 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002366 /* Warn the user if the device has TPM extensions */
2367 if (ata_id_has_tpm(id))
2368 ata_dev_printk(dev, KERN_WARNING,
2369 "supports DRM functions and may "
2370 "not be fully accessable.\n");
2371 }
Alan Coxb352e572006-08-10 18:52:12 +01002372
Tejun Heo1148c3a2006-03-13 19:48:04 +09002373 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002374
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002375 if (dev->id[59] & 0x100)
2376 dev->multi_count = dev->id[59] & 0xff;
2377
Tejun Heo1148c3a2006-03-13 19:48:04 +09002378 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002379 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002380 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002381
Tejun Heo4c2d7212006-03-05 17:55:58 +09002382 lba_desc = "LBA";
2383 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002384 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002385 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002386 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002387
2388 if (dev->n_sectors >= (1UL << 28) &&
2389 ata_id_has_flush_ext(id))
2390 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002391 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002392
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002393 /* config NCQ */
2394 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2395
Albert Lee8bf62ece2005-05-12 15:29:42 -04002396 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002397 if (ata_msg_drv(ap) && print_info) {
2398 ata_dev_printk(dev, KERN_INFO,
2399 "%s: %s, %s, max %s\n",
2400 revbuf, modelbuf, fwrevbuf,
2401 ata_mode_string(xfer_mask));
2402 ata_dev_printk(dev, KERN_INFO,
2403 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002404 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002405 dev->multi_count, lba_desc, ncq_desc);
2406 }
Tejun Heoffeae412006-03-01 16:09:35 +09002407 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002408 /* CHS */
2409
2410 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002411 dev->cylinders = id[1];
2412 dev->heads = id[3];
2413 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002414
Tejun Heo1148c3a2006-03-13 19:48:04 +09002415 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002416 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002417 dev->cylinders = id[54];
2418 dev->heads = id[55];
2419 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002420 }
2421
2422 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002423 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002424 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002425 "%s: %s, %s, max %s\n",
2426 revbuf, modelbuf, fwrevbuf,
2427 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002428 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002429 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2430 (unsigned long long)dev->n_sectors,
2431 dev->multi_count, dev->cylinders,
2432 dev->heads, dev->sectors);
2433 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002434 }
2435
Tejun Heo6e7846e2006-02-12 23:32:58 +09002436 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438
2439 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002440 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002441 const char *cdb_intr_string = "";
2442 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002443 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002444 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002445
Tejun Heo1148c3a2006-03-13 19:48:04 +09002446 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002448 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002449 ata_dev_printk(dev, KERN_WARNING,
2450 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002451 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 goto err_out_nosup;
2453 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002454 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Tejun Heo7d77b242007-09-23 13:14:13 +09002456 /* Enable ATAPI AN if both the host and device have
2457 * the support. If PMP is attached, SNTF is required
2458 * to enable ATAPI AN to discern between PHY status
2459 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002460 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002461 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2462 (!ap->nr_pmp_links ||
2463 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002464 unsigned int err_mask;
2465
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002466 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002467 err_mask = ata_dev_set_feature(dev,
2468 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002469 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002470 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002471 "failed to enable ATAPI AN "
2472 "(err_mask=0x%x)\n", err_mask);
2473 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002474 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002475 atapi_an_string = ", ATAPI AN";
2476 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002477 }
2478
Albert Lee08a556d2006-03-31 13:29:04 +08002479 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002480 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002481 cdb_intr_string = ", CDB intr";
2482 }
Albert Lee312f7da2005-09-27 17:38:03 +08002483
Tejun Heo91163002008-02-21 13:25:50 +09002484 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2485 dev->flags |= ATA_DFLAG_DMADIR;
2486 dma_dir_string = ", DMADIR";
2487 }
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002490 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002491 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002492 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002493 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002494 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002495 cdb_intr_string, atapi_an_string,
2496 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 }
2498
Tejun Heo914ed352006-11-01 18:39:55 +09002499 /* determine max_sectors */
2500 dev->max_sectors = ATA_MAX_SECTORS;
2501 if (dev->flags & ATA_DFLAG_LBA48)
2502 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2503
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002504 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2505 if (ata_id_has_hipm(dev->id))
2506 dev->flags |= ATA_DFLAG_HIPM;
2507 if (ata_id_has_dipm(dev->id))
2508 dev->flags |= ATA_DFLAG_DIPM;
2509 }
2510
Alan Coxc5038fc2007-10-25 14:21:16 +01002511 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2512 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002513 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002514 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002515 ata_dev_printk(dev, KERN_INFO,
2516 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002517 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002518 dev->max_sectors = ATA_MAX_SECTORS;
2519 }
2520
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002521 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002522 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002523 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002524 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2525 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002526
Tejun Heo75683fe2007-07-05 13:31:27 +09002527 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002528 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2529 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002530
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002531 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2532 dev->horkage |= ATA_HORKAGE_IPM;
2533
2534 /* reset link pm_policy for this port to no pm */
2535 ap->pm_policy = MAX_PERFORMANCE;
2536 }
2537
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002538 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002539 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002540
Alan Coxc5038fc2007-10-25 14:21:16 +01002541 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2542 /* Let the user know. We don't want to disallow opens for
2543 rescue purposes, or in case the vendor is just a blithering
2544 idiot. Do this after the dev_config call as some controllers
2545 with buggy firmware may want to avoid reporting false device
2546 bugs */
2547
2548 if (print_info) {
2549 ata_dev_printk(dev, KERN_WARNING,
2550"Drive reports diagnostics failure. This may indicate a drive\n");
2551 ata_dev_printk(dev, KERN_WARNING,
2552"fault or invalid emulation. Contact drive vendor for information.\n");
2553 }
2554 }
2555
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002556 if (ata_msg_probe(ap))
2557 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002558 __func__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002559 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002562 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002563 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002564 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002565 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
2568/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002569 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002570 * @ap: port
2571 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002572 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002573 * detection.
2574 */
2575
2576int ata_cable_40wire(struct ata_port *ap)
2577{
2578 return ATA_CBL_PATA40;
2579}
2580
2581/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002582 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002583 * @ap: port
2584 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002585 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002586 * detection.
2587 */
2588
2589int ata_cable_80wire(struct ata_port *ap)
2590{
2591 return ATA_CBL_PATA80;
2592}
2593
2594/**
2595 * ata_cable_unknown - return unknown PATA cable.
2596 * @ap: port
2597 *
2598 * Helper method for drivers which have no PATA cable detection.
2599 */
2600
2601int ata_cable_unknown(struct ata_port *ap)
2602{
2603 return ATA_CBL_PATA_UNK;
2604}
2605
2606/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002607 * ata_cable_ignore - return ignored PATA cable.
2608 * @ap: port
2609 *
2610 * Helper method for drivers which don't use cable type to limit
2611 * transfer mode.
2612 */
2613int ata_cable_ignore(struct ata_port *ap)
2614{
2615 return ATA_CBL_PATA_IGN;
2616}
2617
2618/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002619 * ata_cable_sata - return SATA cable type
2620 * @ap: port
2621 *
2622 * Helper method for drivers which have SATA cables
2623 */
2624
2625int ata_cable_sata(struct ata_port *ap)
2626{
2627 return ATA_CBL_SATA;
2628}
2629
2630/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 * ata_bus_probe - Reset and probe ATA bus
2632 * @ap: Bus to probe
2633 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002634 * Master ATA bus probing function. Initiates a hardware-dependent
2635 * bus reset, then attempts to identify any devices found on
2636 * the bus.
2637 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002639 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 *
2641 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002642 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 */
2644
Brian King80289162006-08-07 14:27:31 -05002645int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002647 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002648 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002649 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002650 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Tejun Heo28ca5c52006-03-01 16:09:36 +09002652 ata_port_probe(ap);
2653
Tejun Heof58229f2007-08-06 18:36:23 +09002654 ata_link_for_each_dev(dev, &ap->link)
2655 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002656
2657 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002658 ata_link_for_each_dev(dev, &ap->link) {
2659 /* If we issue an SRST then an ATA drive (not ATAPI)
2660 * may change configuration and be in PIO0 timing. If
2661 * we do a hard reset (or are coming from power on)
2662 * this is true for ATA or ATAPI. Until we've set a
2663 * suitable controller mode we should not touch the
2664 * bus as we may be talking too fast.
2665 */
2666 dev->pio_mode = XFER_PIO_0;
2667
2668 /* If the controller has a pio mode setup function
2669 * then use it to set the chipset to rights. Don't
2670 * touch the DMA setup as that will be dealt with when
2671 * configuring devices.
2672 */
2673 if (ap->ops->set_piomode)
2674 ap->ops->set_piomode(ap, dev);
2675 }
2676
Tejun Heo20444702006-03-13 01:57:01 +09002677 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002678 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002679
Tejun Heof58229f2007-08-06 18:36:23 +09002680 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002681 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2682 dev->class != ATA_DEV_UNKNOWN)
2683 classes[dev->devno] = dev->class;
2684 else
2685 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002686
Tejun Heo52783c52006-05-31 18:28:22 +09002687 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Tejun Heo52783c52006-05-31 18:28:22 +09002690 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002691
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002692 /* read IDENTIFY page and configure devices. We have to do the identify
2693 specific sequence bass-ackwards so that PDIAG- is released by
2694 the slave device */
2695
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002696 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002697 if (tries[dev->devno])
2698 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002699
Tejun Heoe1211e32006-04-01 01:38:18 +09002700 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002701 continue;
2702
Tejun Heobff04642006-11-10 18:08:10 +09002703 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2704 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002705 if (rc)
2706 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002707 }
2708
Alan Coxbe0d18d2007-03-06 02:37:56 -08002709 /* Now ask for the cable type as PDIAG- should have been released */
2710 if (ap->ops->cable_detect)
2711 ap->cbl = ap->ops->cable_detect(ap);
2712
Alan Cox614fe292007-08-22 23:22:45 +01002713 /* We may have SATA bridge glue hiding here irrespective of the
2714 reported cable types and sensed types */
2715 ata_link_for_each_dev(dev, &ap->link) {
2716 if (!ata_dev_enabled(dev))
2717 continue;
2718 /* SATA drives indicate we have a bridge. We don't know which
2719 end of the link the bridge is which is a problem */
2720 if (ata_id_is_sata(dev->id))
2721 ap->cbl = ATA_CBL_SATA;
2722 }
2723
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002724 /* After the identify sequence we can now set up the devices. We do
2725 this in the normal order so that the user doesn't get confused */
2726
Tejun Heof58229f2007-08-06 18:36:23 +09002727 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002728 if (!ata_dev_enabled(dev))
2729 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002730
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002731 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002732 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002733 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002734 if (rc)
2735 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 }
2737
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002738 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002739 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002740 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002741 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Tejun Heof58229f2007-08-06 18:36:23 +09002743 ata_link_for_each_dev(dev, &ap->link)
2744 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002745 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002746
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002747 /* no device present, disable port */
2748 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002749 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002750
2751 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002752 tries[dev->devno]--;
2753
Tejun Heo14d2bac2006-04-02 17:54:46 +09002754 switch (rc) {
2755 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002756 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002757 tries[dev->devno] = 0;
2758 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002759
2760 case -ENODEV:
2761 /* give it just one more chance */
2762 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002763 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002764 if (tries[dev->devno] == 1) {
2765 /* This is the last chance, better to slow
2766 * down than lose it.
2767 */
Tejun Heo936fd732007-08-06 18:36:23 +09002768 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002769 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2770 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002771 }
2772
Tejun Heo4ae72a12007-02-02 16:22:30 +09002773 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002774 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002775
Tejun Heo14d2bac2006-04-02 17:54:46 +09002776 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778
2779/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002780 * ata_port_probe - Mark port as enabled
2781 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002783 * Modify @ap data structure such that the system
2784 * thinks that the entire port is enabled.
2785 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002786 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002787 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 */
2789
2790void ata_port_probe(struct ata_port *ap)
2791{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002792 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793}
2794
2795/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002796 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002797 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002798 *
2799 * This function prints link speed and status of a SATA link.
2800 *
2801 * LOCKING:
2802 * None.
2803 */
Tejun Heo936fd732007-08-06 18:36:23 +09002804void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002805{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002806 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002807
Tejun Heo936fd732007-08-06 18:36:23 +09002808 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002809 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002810 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002811
Tejun Heo936fd732007-08-06 18:36:23 +09002812 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002813 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002814 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002815 "SATA link up %s (SStatus %X SControl %X)\n",
2816 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002817 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002818 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002819 "SATA link down (SStatus %X SControl %X)\n",
2820 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002821 }
2822}
2823
2824/**
Alan Coxebdfca62006-03-23 15:38:34 +00002825 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002826 * @adev: device
2827 *
2828 * Obtain the other device on the same cable, or if none is
2829 * present NULL is returned
2830 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002831
Tejun Heo3373efd2006-05-15 20:57:53 +09002832struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002833{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002834 struct ata_link *link = adev->link;
2835 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002836 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002837 return NULL;
2838 return pair;
2839}
2840
2841/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002842 * ata_port_disable - Disable port.
2843 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002845 * Modify @ap data structure such that the system
2846 * thinks that the entire port is disabled, and should
2847 * never attempt to probe or communicate with devices
2848 * on this port.
2849 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002850 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002851 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
2853
2854void ata_port_disable(struct ata_port *ap)
2855{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002856 ap->link.device[0].class = ATA_DEV_NONE;
2857 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002858 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859}
2860
Tejun Heo1c3fae42006-04-02 20:53:28 +09002861/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002862 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002863 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002864 *
Tejun Heo936fd732007-08-06 18:36:23 +09002865 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002866 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002867 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002868 *
2869 * LOCKING:
2870 * Inherited from caller.
2871 *
2872 * RETURNS:
2873 * 0 on success, negative errno on failure
2874 */
Tejun Heo936fd732007-08-06 18:36:23 +09002875int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002876{
Tejun Heo81952c52006-05-15 20:57:47 +09002877 u32 sstatus, spd, mask;
2878 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002879
Tejun Heo936fd732007-08-06 18:36:23 +09002880 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002881 return -EOPNOTSUPP;
2882
2883 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002884 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002885 */
Tejun Heo936fd732007-08-06 18:36:23 +09002886 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002887 if (rc == 0)
2888 spd = (sstatus >> 4) & 0xf;
2889 else
Tejun Heo936fd732007-08-06 18:36:23 +09002890 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002891
Tejun Heo936fd732007-08-06 18:36:23 +09002892 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002893 if (mask <= 1)
2894 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002895
2896 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002897 highbit = fls(mask) - 1;
2898 mask &= ~(1 << highbit);
2899
Tejun Heo008a7892007-07-16 14:29:40 +09002900 /* Mask off all speeds higher than or equal to the current
2901 * one. Force 1.5Gbps if current SPD is not available.
2902 */
2903 if (spd > 1)
2904 mask &= (1 << (spd - 1)) - 1;
2905 else
2906 mask &= 1;
2907
2908 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002909 if (!mask)
2910 return -EINVAL;
2911
Tejun Heo936fd732007-08-06 18:36:23 +09002912 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002913
Tejun Heo936fd732007-08-06 18:36:23 +09002914 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002915 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002916
2917 return 0;
2918}
2919
Tejun Heo936fd732007-08-06 18:36:23 +09002920static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002921{
Tejun Heo52702222007-10-31 10:17:07 +09002922 struct ata_link *host_link = &link->ap->link;
2923 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002924
Tejun Heo52702222007-10-31 10:17:07 +09002925 limit = link->sata_spd_limit;
2926
2927 /* Don't configure downstream link faster than upstream link.
2928 * It doesn't speed up anything and some PMPs choke on such
2929 * configuration.
2930 */
2931 if (!ata_is_host_link(link) && host_link->sata_spd)
2932 limit &= (1 << host_link->sata_spd) - 1;
2933
2934 if (limit == UINT_MAX)
2935 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002936 else
Tejun Heo52702222007-10-31 10:17:07 +09002937 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002938
2939 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002940 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002941
Tejun Heo52702222007-10-31 10:17:07 +09002942 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002943}
2944
2945/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002946 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002947 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002948 *
2949 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002950 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002951 * whether hardreset is necessary to apply SATA spd
2952 * configuration.
2953 *
2954 * LOCKING:
2955 * Inherited from caller.
2956 *
2957 * RETURNS:
2958 * 1 if SATA spd configuration is needed, 0 otherwise.
2959 */
Tejun Heo936fd732007-08-06 18:36:23 +09002960int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002961{
2962 u32 scontrol;
2963
Tejun Heo936fd732007-08-06 18:36:23 +09002964 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002965 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002966
Tejun Heo936fd732007-08-06 18:36:23 +09002967 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002968}
2969
2970/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002971 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002972 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002973 *
Tejun Heo936fd732007-08-06 18:36:23 +09002974 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002975 *
2976 * LOCKING:
2977 * Inherited from caller.
2978 *
2979 * RETURNS:
2980 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002981 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002982 */
Tejun Heo936fd732007-08-06 18:36:23 +09002983int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002984{
2985 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002986 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002987
Tejun Heo936fd732007-08-06 18:36:23 +09002988 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002989 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002990
Tejun Heo936fd732007-08-06 18:36:23 +09002991 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002992 return 0;
2993
Tejun Heo936fd732007-08-06 18:36:23 +09002994 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002995 return rc;
2996
Tejun Heo1c3fae42006-04-02 20:53:28 +09002997 return 1;
2998}
2999
Alan Cox452503f2005-10-21 19:01:32 -04003000/*
3001 * This mode timing computation functionality is ported over from
3002 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
3003 */
3004/*
Alan Coxb352e572006-08-10 18:52:12 +01003005 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04003006 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01003007 * for UDMA6, which is currently supported only by Maxtor drives.
3008 *
3009 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04003010 */
3011
3012static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09003013/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
3014 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
3015 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
3016 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
3017 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
3018 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
3019 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
3020 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003021
Tejun Heo70cd0712007-11-27 19:43:40 +09003022 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
3023 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
3024 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003025
Tejun Heo70cd0712007-11-27 19:43:40 +09003026 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
3027 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
3028 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01003029 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09003030 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003031
3032/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09003033 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
3034 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
3035 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
3036 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
3037 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
3038 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
3039 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04003040
3041 { 0xFF }
3042};
3043
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003044#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
3045#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04003046
3047static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
3048{
3049 q->setup = EZ(t->setup * 1000, T);
3050 q->act8b = EZ(t->act8b * 1000, T);
3051 q->rec8b = EZ(t->rec8b * 1000, T);
3052 q->cyc8b = EZ(t->cyc8b * 1000, T);
3053 q->active = EZ(t->active * 1000, T);
3054 q->recover = EZ(t->recover * 1000, T);
3055 q->cycle = EZ(t->cycle * 1000, T);
3056 q->udma = EZ(t->udma * 1000, UT);
3057}
3058
3059void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
3060 struct ata_timing *m, unsigned int what)
3061{
3062 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
3063 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
3064 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
3065 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
3066 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
3067 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
3068 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
3069 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
3070}
3071
Tejun Heo63573572007-11-27 19:43:39 +09003072const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04003073{
Tejun Heo70cd0712007-11-27 19:43:40 +09003074 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04003075
Tejun Heo70cd0712007-11-27 19:43:40 +09003076 while (xfer_mode > t->mode)
3077 t++;
3078
3079 if (xfer_mode == t->mode)
3080 return t;
3081 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04003082}
3083
3084int ata_timing_compute(struct ata_device *adev, unsigned short speed,
3085 struct ata_timing *t, int T, int UT)
3086{
3087 const struct ata_timing *s;
3088 struct ata_timing p;
3089
3090 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003091 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08003092 */
Alan Cox452503f2005-10-21 19:01:32 -04003093
3094 if (!(s = ata_timing_find_mode(speed)))
3095 return -EINVAL;
3096
Albert Lee75b1f2f2005-11-16 17:06:18 +08003097 memcpy(t, s, sizeof(*s));
3098
Alan Cox452503f2005-10-21 19:01:32 -04003099 /*
3100 * If the drive is an EIDE drive, it can tell us it needs extended
3101 * PIO/MW_DMA cycle timing.
3102 */
3103
3104 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
3105 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003106 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04003107 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
3108 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003109 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04003110 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
3111 }
3112 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3113 }
3114
3115 /*
3116 * Convert the timing to bus clock counts.
3117 */
3118
Albert Lee75b1f2f2005-11-16 17:06:18 +08003119 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003120
3121 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003122 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3123 * S.M.A.R.T * and some other commands. We have to ensure that the
3124 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04003125 */
3126
Alanfd3367af2006-12-07 12:41:18 +00003127 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04003128 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3129 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3130 }
3131
3132 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003133 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04003134 */
3135
3136 if (t->act8b + t->rec8b < t->cyc8b) {
3137 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3138 t->rec8b = t->cyc8b - t->act8b;
3139 }
3140
3141 if (t->active + t->recover < t->cycle) {
3142 t->active += (t->cycle - (t->active + t->recover)) / 2;
3143 t->recover = t->cycle - t->active;
3144 }
Jeff Garzika617c092007-05-21 20:14:23 -04003145
Alan Cox4f701d12007-04-23 11:55:36 +01003146 /* In a few cases quantisation may produce enough errors to
3147 leave t->cycle too low for the sum of active and recovery
3148 if so we must correct this */
3149 if (t->active + t->recover > t->cycle)
3150 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003151
3152 return 0;
3153}
3154
Tejun Heocf176e12006-04-02 17:54:46 +09003155/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003156 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3157 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3158 * @cycle: cycle duration in ns
3159 *
3160 * Return matching xfer mode for @cycle. The returned mode is of
3161 * the transfer type specified by @xfer_shift. If @cycle is too
3162 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3163 * than the fastest known mode, the fasted mode is returned.
3164 *
3165 * LOCKING:
3166 * None.
3167 *
3168 * RETURNS:
3169 * Matching xfer_mode, 0xff if no match found.
3170 */
3171u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3172{
3173 u8 base_mode = 0xff, last_mode = 0xff;
3174 const struct ata_xfer_ent *ent;
3175 const struct ata_timing *t;
3176
3177 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3178 if (ent->shift == xfer_shift)
3179 base_mode = ent->base;
3180
3181 for (t = ata_timing_find_mode(base_mode);
3182 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3183 unsigned short this_cycle;
3184
3185 switch (xfer_shift) {
3186 case ATA_SHIFT_PIO:
3187 case ATA_SHIFT_MWDMA:
3188 this_cycle = t->cycle;
3189 break;
3190 case ATA_SHIFT_UDMA:
3191 this_cycle = t->udma;
3192 break;
3193 default:
3194 return 0xff;
3195 }
3196
3197 if (cycle > this_cycle)
3198 break;
3199
3200 last_mode = t->mode;
3201 }
3202
3203 return last_mode;
3204}
3205
3206/**
Tejun Heocf176e12006-04-02 17:54:46 +09003207 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003208 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003209 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003210 *
3211 * Adjust xfer masks of @dev downward. Note that this function
3212 * does not apply the change. Invoking ata_set_mode() afterwards
3213 * will apply the limit.
3214 *
3215 * LOCKING:
3216 * Inherited from caller.
3217 *
3218 * RETURNS:
3219 * 0 on success, negative errno on failure
3220 */
Tejun Heo458337d2007-02-02 16:22:30 +09003221int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003222{
Tejun Heo458337d2007-02-02 16:22:30 +09003223 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003224 unsigned long orig_mask, xfer_mask;
3225 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003226 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003227
Tejun Heo458337d2007-02-02 16:22:30 +09003228 quiet = !!(sel & ATA_DNXFER_QUIET);
3229 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003230
Tejun Heo458337d2007-02-02 16:22:30 +09003231 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3232 dev->mwdma_mask,
3233 dev->udma_mask);
3234 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003235
Tejun Heo458337d2007-02-02 16:22:30 +09003236 switch (sel) {
3237 case ATA_DNXFER_PIO:
3238 highbit = fls(pio_mask) - 1;
3239 pio_mask &= ~(1 << highbit);
3240 break;
3241
3242 case ATA_DNXFER_DMA:
3243 if (udma_mask) {
3244 highbit = fls(udma_mask) - 1;
3245 udma_mask &= ~(1 << highbit);
3246 if (!udma_mask)
3247 return -ENOENT;
3248 } else if (mwdma_mask) {
3249 highbit = fls(mwdma_mask) - 1;
3250 mwdma_mask &= ~(1 << highbit);
3251 if (!mwdma_mask)
3252 return -ENOENT;
3253 }
3254 break;
3255
3256 case ATA_DNXFER_40C:
3257 udma_mask &= ATA_UDMA_MASK_40C;
3258 break;
3259
3260 case ATA_DNXFER_FORCE_PIO0:
3261 pio_mask &= 1;
3262 case ATA_DNXFER_FORCE_PIO:
3263 mwdma_mask = 0;
3264 udma_mask = 0;
3265 break;
3266
Tejun Heo458337d2007-02-02 16:22:30 +09003267 default:
3268 BUG();
3269 }
3270
3271 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3272
3273 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3274 return -ENOENT;
3275
3276 if (!quiet) {
3277 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3278 snprintf(buf, sizeof(buf), "%s:%s",
3279 ata_mode_string(xfer_mask),
3280 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3281 else
3282 snprintf(buf, sizeof(buf), "%s",
3283 ata_mode_string(xfer_mask));
3284
3285 ata_dev_printk(dev, KERN_WARNING,
3286 "limiting speed to %s\n", buf);
3287 }
Tejun Heocf176e12006-04-02 17:54:46 +09003288
3289 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3290 &dev->udma_mask);
3291
Tejun Heocf176e12006-04-02 17:54:46 +09003292 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003293}
3294
Tejun Heo3373efd2006-05-15 20:57:53 +09003295static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003297 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003298 const char *dev_err_whine = "";
3299 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003300 unsigned int err_mask;
3301 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Tejun Heoe8384602006-04-02 18:51:53 +09003303 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 if (dev->xfer_shift == ATA_SHIFT_PIO)
3305 dev->flags |= ATA_DFLAG_PIO;
3306
Tejun Heo3373efd2006-05-15 20:57:53 +09003307 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003308
Tejun Heo4055dee2008-02-07 10:34:08 +09003309 if (err_mask & ~AC_ERR_DEV)
3310 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003311
Tejun Heo4055dee2008-02-07 10:34:08 +09003312 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003313 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003314 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003315 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003316 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003317 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003318
Tejun Heo4055dee2008-02-07 10:34:08 +09003319 /* Old CFA may refuse this command, which is just fine */
3320 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
3321 ign_dev_err = 1;
3322
3323 /* Some very old devices and some bad newer ones fail any kind of
3324 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
3325 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
3326 dev->pio_mode <= XFER_PIO_2)
3327 ign_dev_err = 1;
3328
3329 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3330 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3331 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3332 dev->dma_mode == XFER_MW_DMA_0 &&
3333 (dev->id[63] >> 8) & 1)
3334 ign_dev_err = 1;
3335
3336 /* if the device is actually configured correctly, ignore dev err */
3337 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3338 ign_dev_err = 1;
3339
3340 if (err_mask & AC_ERR_DEV) {
3341 if (!ign_dev_err)
3342 goto fail;
3343 else
3344 dev_err_whine = " (device error ignored)";
3345 }
3346
Tejun Heo23e71c32006-03-06 04:31:57 +09003347 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3348 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Tejun Heo4055dee2008-02-07 10:34:08 +09003350 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3351 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3352 dev_err_whine);
3353
Tejun Heo83206a22006-03-24 15:25:31 +09003354 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003355
3356 fail:
3357 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3358 "(err_mask=0x%x)\n", err_mask);
3359 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360}
3361
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362/**
Alan04351822007-03-06 02:37:52 -08003363 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003364 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003365 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 *
Alan04351822007-03-06 02:37:52 -08003367 * Standard implementation of the function used to tune and set
3368 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3369 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003370 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003371 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003373 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003374 *
3375 * RETURNS:
3376 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 */
Alan04351822007-03-06 02:37:52 -08003378
Tejun Heo02607312007-08-06 18:36:23 +09003379int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380{
Tejun Heo02607312007-08-06 18:36:23 +09003381 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003382 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003383 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003384
Tejun Heoa6d5a512006-03-06 04:31:57 +09003385 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003386 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003387 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003388 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003389
Tejun Heoe1211e32006-04-01 01:38:18 +09003390 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003391 continue;
3392
Alan Coxb3a70602007-10-02 12:38:26 -04003393 mode_mask = ATA_DMA_MASK_ATA;
3394 if (dev->class == ATA_DEV_ATAPI)
3395 mode_mask = ATA_DMA_MASK_ATAPI;
3396 else if (ata_id_is_cfa(dev->id))
3397 mode_mask = ATA_DMA_MASK_CFA;
3398
Tejun Heo3373efd2006-05-15 20:57:53 +09003399 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003400 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003401
Tejun Heoacf356b2006-03-24 14:07:50 +09003402 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3403 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003404
3405 if (libata_dma_mask & mode_mask)
3406 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3407 else
3408 dma_mask = 0;
3409
Tejun Heoacf356b2006-03-24 14:07:50 +09003410 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3411 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003412
Tejun Heo4f659772006-04-01 01:38:18 +09003413 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003414 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003415 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003416 }
Tejun Heo4f659772006-04-01 01:38:18 +09003417 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003418 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003419
3420 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003421 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003422 if (!ata_dev_enabled(dev))
3423 continue;
3424
Tejun Heo70cd0712007-11-27 19:43:40 +09003425 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003426 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003427 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003428 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003429 }
3430
3431 dev->xfer_mode = dev->pio_mode;
3432 dev->xfer_shift = ATA_SHIFT_PIO;
3433 if (ap->ops->set_piomode)
3434 ap->ops->set_piomode(ap, dev);
3435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Tejun Heoa6d5a512006-03-06 04:31:57 +09003437 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003438 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003439 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003440 continue;
3441
3442 dev->xfer_mode = dev->dma_mode;
3443 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3444 if (ap->ops->set_dmamode)
3445 ap->ops->set_dmamode(ap, dev);
3446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
3448 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003449 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003450 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003451 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003452 continue;
3453
Tejun Heo3373efd2006-05-15 20:57:53 +09003454 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003455 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003456 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Tejun Heoe8e06192006-04-01 01:38:18 +09003459 /* Record simplex status. If we selected DMA then the other
3460 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003461 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003462 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003463 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003464
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003465 out:
3466 if (rc)
3467 *r_failed_dev = dev;
3468 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469}
3470
3471/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003472 * ata_tf_to_host - issue ATA taskfile to host controller
3473 * @ap: port to which command is being issued
3474 * @tf: ATA taskfile register set
3475 *
3476 * Issues ATA taskfile register set to ATA host controller,
3477 * with proper synchronization with interrupt handler and
3478 * other threads.
3479 *
3480 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003481 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003482 */
3483
3484static inline void ata_tf_to_host(struct ata_port *ap,
3485 const struct ata_taskfile *tf)
3486{
3487 ap->ops->tf_load(ap, tf);
3488 ap->ops->exec_command(ap, tf);
3489}
3490
3491/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 * ata_busy_sleep - sleep until BSY clears, or timeout
3493 * @ap: port containing status register to be polled
3494 * @tmout_pat: impatience timeout
3495 * @tmout: overall timeout
3496 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003497 * Sleep until ATA Status register bit BSY clears,
3498 * or a timeout occurs.
3499 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09003500 * LOCKING:
3501 * Kernel thread context (may sleep).
3502 *
3503 * RETURNS:
3504 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003506int ata_busy_sleep(struct ata_port *ap,
3507 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508{
3509 unsigned long timer_start, timeout;
3510 u8 status;
3511
3512 status = ata_busy_wait(ap, ATA_BUSY, 300);
3513 timer_start = jiffies;
3514 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003515 while (status != 0xff && (status & ATA_BUSY) &&
3516 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 msleep(50);
3518 status = ata_busy_wait(ap, ATA_BUSY, 3);
3519 }
3520
Tejun Heod1adc1b2006-10-09 18:32:15 +09003521 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09003522 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003523 "port is slow to respond, please be patient "
3524 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
3526 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003527 while (status != 0xff && (status & ATA_BUSY) &&
3528 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 msleep(50);
3530 status = ata_chk_status(ap);
3531 }
3532
Tejun Heod1adc1b2006-10-09 18:32:15 +09003533 if (status == 0xff)
3534 return -ENODEV;
3535
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003537 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003538 "(%lu secs, Status 0x%x)\n",
3539 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09003540 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 }
3542
3543 return 0;
3544}
3545
Tejun Heod4b2bab2007-02-02 16:50:52 +09003546/**
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003547 * ata_wait_after_reset - wait before checking status after reset
3548 * @ap: port containing status register to be polled
3549 * @deadline: deadline jiffies for the operation
3550 *
3551 * After reset, we need to pause a while before reading status.
3552 * Also, certain combination of controller and device report 0xff
3553 * for some duration (e.g. until SATA PHY is up and running)
3554 * which is interpreted as empty port in ATA world. This
3555 * function also waits for such devices to get out of 0xff
3556 * status.
3557 *
3558 * LOCKING:
3559 * Kernel thread context (may sleep).
3560 */
3561void ata_wait_after_reset(struct ata_port *ap, unsigned long deadline)
3562{
3563 unsigned long until = jiffies + ATA_TMOUT_FF_WAIT;
3564
3565 if (time_before(until, deadline))
3566 deadline = until;
3567
3568 /* Spec mandates ">= 2ms" before checking status. We wait
3569 * 150ms, because that was the magic delay used for ATAPI
3570 * devices in Hale Landis's ATADRVR, for the period of time
3571 * between when the ATA command register is written, and then
3572 * status is checked. Because waiting for "a while" before
3573 * checking status is fine, post SRST, we perform this magic
3574 * delay here as well.
3575 *
3576 * Old drivers/ide uses the 2mS rule and then waits for ready.
3577 */
3578 msleep(150);
3579
3580 /* Wait for 0xff to clear. Some SATA devices take a long time
3581 * to clear 0xff after reset. For example, HHD424020F7SV00
3582 * iVDR needs >= 800ms while. Quantum GoVault needs even more
3583 * than that.
Tejun Heo1974e202007-11-08 11:20:18 +09003584 *
3585 * Note that some PATA controllers (pata_ali) explode if
3586 * status register is read more than once when there's no
3587 * device attached.
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003588 */
Tejun Heo1974e202007-11-08 11:20:18 +09003589 if (ap->flags & ATA_FLAG_SATA) {
3590 while (1) {
3591 u8 status = ata_chk_status(ap);
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003592
Tejun Heo1974e202007-11-08 11:20:18 +09003593 if (status != 0xff || time_after(jiffies, deadline))
3594 return;
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003595
Tejun Heo1974e202007-11-08 11:20:18 +09003596 msleep(50);
3597 }
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003598 }
3599}
3600
3601/**
Tejun Heod4b2bab2007-02-02 16:50:52 +09003602 * ata_wait_ready - sleep until BSY clears, or timeout
3603 * @ap: port containing status register to be polled
3604 * @deadline: deadline jiffies for the operation
3605 *
3606 * Sleep until ATA Status register bit BSY clears, or timeout
3607 * occurs.
3608 *
3609 * LOCKING:
3610 * Kernel thread context (may sleep).
3611 *
3612 * RETURNS:
3613 * 0 on success, -errno otherwise.
3614 */
3615int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3616{
3617 unsigned long start = jiffies;
3618 int warned = 0;
3619
3620 while (1) {
3621 u8 status = ata_chk_status(ap);
3622 unsigned long now = jiffies;
3623
3624 if (!(status & ATA_BUSY))
3625 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003626 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003627 return -ENODEV;
3628 if (time_after(now, deadline))
3629 return -EBUSY;
3630
3631 if (!warned && time_after(now, start + 5 * HZ) &&
3632 (deadline - now > 3 * HZ)) {
3633 ata_port_printk(ap, KERN_WARNING,
3634 "port is slow to respond, please be patient "
3635 "(Status 0x%x)\n", status);
3636 warned = 1;
3637 }
3638
3639 msleep(50);
3640 }
3641}
3642
3643static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3644 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645{
3646 struct ata_ioports *ioaddr = &ap->ioaddr;
3647 unsigned int dev0 = devmask & (1 << 0);
3648 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003649 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651 /* if device 0 was found in ata_devchk, wait for its
3652 * BSY bit to clear
3653 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003654 if (dev0) {
3655 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003656 if (rc) {
3657 if (rc != -ENODEV)
3658 return rc;
3659 ret = rc;
3660 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Tejun Heoe141d992007-06-10 14:26:20 +09003663 /* if device 1 was found in ata_devchk, wait for register
3664 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 */
Tejun Heoe141d992007-06-10 14:26:20 +09003666 if (dev1) {
3667 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
3669 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003670
3671 /* Wait for register access. Some ATAPI devices fail
3672 * to set nsect/lbal after reset, so don't waste too
3673 * much time on it. We're gonna wait for !BSY anyway.
3674 */
3675 for (i = 0; i < 2; i++) {
3676 u8 nsect, lbal;
3677
3678 nsect = ioread8(ioaddr->nsect_addr);
3679 lbal = ioread8(ioaddr->lbal_addr);
3680 if ((nsect == 1) && (lbal == 1))
3681 break;
3682 msleep(50); /* give drive a breather */
3683 }
3684
Tejun Heod4b2bab2007-02-02 16:50:52 +09003685 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003686 if (rc) {
3687 if (rc != -ENODEV)
3688 return rc;
3689 ret = rc;
3690 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693 /* is all this really necessary? */
3694 ap->ops->dev_select(ap, 0);
3695 if (dev1)
3696 ap->ops->dev_select(ap, 1);
3697 if (dev0)
3698 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003699
Tejun Heo9b893912007-02-02 16:50:52 +09003700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701}
3702
Tejun Heod4b2bab2007-02-02 16:50:52 +09003703static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3704 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705{
3706 struct ata_ioports *ioaddr = &ap->ioaddr;
3707
Tejun Heo44877b42007-02-21 01:06:51 +09003708 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
3710 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003711 iowrite8(ap->ctl, ioaddr->ctl_addr);
3712 udelay(20); /* FIXME: flush */
3713 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3714 udelay(20); /* FIXME: flush */
3715 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003717 /* wait a while before checking status */
3718 ata_wait_after_reset(ap, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003720 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003721 * the bus shows 0xFF because the odd clown forgets the D7
3722 * pulldown resistor.
3723 */
Alan Cox150981b2007-10-23 16:50:02 +01003724 if (ata_chk_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003725 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003726
Tejun Heod4b2bab2007-02-02 16:50:52 +09003727 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728}
3729
3730/**
3731 * ata_bus_reset - reset host port and associated ATA channel
3732 * @ap: port to reset
3733 *
3734 * This is typically the first time we actually start issuing
3735 * commands to the ATA channel. We wait for BSY to clear, then
3736 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3737 * result. Determine what devices, if any, are on the channel
3738 * by looking at the device 0/1 error register. Look at the signature
3739 * stored in each device's taskfile registers, to determine if
3740 * the device is ATA or ATAPI.
3741 *
3742 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003743 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003744 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 *
3746 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003747 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 */
3749
3750void ata_bus_reset(struct ata_port *ap)
3751{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003752 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 struct ata_ioports *ioaddr = &ap->ioaddr;
3754 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3755 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003756 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003757 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Tejun Heo44877b42007-02-21 01:06:51 +09003759 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
3761 /* determine if device 0/1 are present */
3762 if (ap->flags & ATA_FLAG_SATA_RESET)
3763 dev0 = 1;
3764 else {
3765 dev0 = ata_devchk(ap, 0);
3766 if (slave_possible)
3767 dev1 = ata_devchk(ap, 1);
3768 }
3769
3770 if (dev0)
3771 devmask |= (1 << 0);
3772 if (dev1)
3773 devmask |= (1 << 1);
3774
3775 /* select device 0 again */
3776 ap->ops->dev_select(ap, 0);
3777
3778 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003779 if (ap->flags & ATA_FLAG_SRST) {
3780 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3781 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003782 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 /*
3786 * determine by signature whether we have ATA or ATAPI devices
3787 */
Tejun Heo3f198592007-09-02 23:23:57 +09003788 device[0].class = ata_dev_try_classify(&device[0], dev0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 if ((slave_possible) && (err != 0x81))
Tejun Heo3f198592007-09-02 23:23:57 +09003790 device[1].class = ata_dev_try_classify(&device[1], dev1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003793 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003795 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 ap->ops->dev_select(ap, 0);
3797
3798 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003799 if ((device[0].class == ATA_DEV_NONE) &&
3800 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 goto err_out;
3802
3803 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3804 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003805 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 }
3807
3808 DPRINTK("EXIT\n");
3809 return;
3810
3811err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003812 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Jeff Garzikac8869d2007-08-16 03:17:03 -04003813 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
3815 DPRINTK("EXIT\n");
3816}
3817
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003818/**
Tejun Heo936fd732007-08-06 18:36:23 +09003819 * sata_link_debounce - debounce SATA phy status
3820 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003821 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003822 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003823 *
Tejun Heo936fd732007-08-06 18:36:23 +09003824* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003825 * holding the same value where DET is not 1 for @duration polled
3826 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003827 * beginning of the stable state. Because DET gets stuck at 1 on
3828 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003829 * until timeout then returns 0 if DET is stable at 1.
3830 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003831 * @timeout is further limited by @deadline. The sooner of the
3832 * two is used.
3833 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003834 * LOCKING:
3835 * Kernel thread context (may sleep)
3836 *
3837 * RETURNS:
3838 * 0 on success, -errno on failure.
3839 */
Tejun Heo936fd732007-08-06 18:36:23 +09003840int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3841 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003842{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003843 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003844 unsigned long duration = msecs_to_jiffies(params[1]);
3845 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003846 u32 last, cur;
3847 int rc;
3848
Tejun Heod4b2bab2007-02-02 16:50:52 +09003849 t = jiffies + msecs_to_jiffies(params[2]);
3850 if (time_before(t, deadline))
3851 deadline = t;
3852
Tejun Heo936fd732007-08-06 18:36:23 +09003853 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003854 return rc;
3855 cur &= 0xf;
3856
3857 last = cur;
3858 last_jiffies = jiffies;
3859
3860 while (1) {
3861 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003862 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003863 return rc;
3864 cur &= 0xf;
3865
3866 /* DET stable? */
3867 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003868 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003869 continue;
3870 if (time_after(jiffies, last_jiffies + duration))
3871 return 0;
3872 continue;
3873 }
3874
3875 /* unstable, start over */
3876 last = cur;
3877 last_jiffies = jiffies;
3878
Tejun Heof1545152007-07-16 14:29:40 +09003879 /* Check deadline. If debouncing failed, return
3880 * -EPIPE to tell upper layer to lower link speed.
3881 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003882 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003883 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003884 }
3885}
3886
3887/**
Tejun Heo936fd732007-08-06 18:36:23 +09003888 * sata_link_resume - resume SATA link
3889 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003890 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003891 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003892 *
Tejun Heo936fd732007-08-06 18:36:23 +09003893 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003894 *
3895 * LOCKING:
3896 * Kernel thread context (may sleep)
3897 *
3898 * RETURNS:
3899 * 0 on success, -errno on failure.
3900 */
Tejun Heo936fd732007-08-06 18:36:23 +09003901int sata_link_resume(struct ata_link *link, const unsigned long *params,
3902 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003903{
3904 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003905 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003906
Tejun Heo936fd732007-08-06 18:36:23 +09003907 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003908 return rc;
3909
Tejun Heo852ee162006-04-01 01:38:18 +09003910 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003911
Tejun Heo936fd732007-08-06 18:36:23 +09003912 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003913 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003914
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003915 /* Some PHYs react badly if SStatus is pounded immediately
3916 * after resuming. Delay 200ms before debouncing.
3917 */
3918 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003919
Tejun Heo936fd732007-08-06 18:36:23 +09003920 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003921}
3922
Tejun Heof5914a42006-05-31 18:27:48 +09003923/**
3924 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003925 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003926 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003927 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003928 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003929 * prereset makes libata abort whole reset sequence and give up
3930 * that port, so prereset should be best-effort. It does its
3931 * best to prepare for reset sequence but if things go wrong, it
3932 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003933 *
3934 * LOCKING:
3935 * Kernel thread context (may sleep)
3936 *
3937 * RETURNS:
3938 * 0 on success, -errno otherwise.
3939 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003940int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003941{
Tejun Heocc0680a2007-08-06 18:36:23 +09003942 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003943 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003944 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003945 int rc;
3946
Tejun Heo31daabd2007-02-02 16:50:52 +09003947 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003948 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
Tejun Heo0c887582007-08-06 18:36:23 +09003949 (link->flags & ATA_LFLAG_HRST_TO_RESUME))
Tejun Heo28324302006-07-03 16:07:26 +09003950 ehc->i.action |= ATA_EH_HARDRESET;
3951
Tejun Heo633273a32007-09-23 13:19:54 +09003952 /* Some PMPs don't work with only SRST, force hardreset if PMP
3953 * is supported.
3954 */
3955 if (ap->flags & ATA_FLAG_PMP)
3956 ehc->i.action |= ATA_EH_HARDRESET;
3957
Tejun Heof5914a42006-05-31 18:27:48 +09003958 /* if we're about to do hardreset, nothing more to do */
3959 if (ehc->i.action & ATA_EH_HARDRESET)
3960 return 0;
3961
Tejun Heo936fd732007-08-06 18:36:23 +09003962 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003963 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003964 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003965 /* whine about phy resume failure but proceed */
3966 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003967 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003968 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003969 }
3970
3971 /* Wait for !BSY if the controller can wait for the first D2H
3972 * Reg FIS and we don't know that no device is attached.
3973 */
Tejun Heo0c887582007-08-06 18:36:23 +09003974 if (!(link->flags & ATA_LFLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003975 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003976 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003977 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003978 "(errno=%d), forcing hardreset\n", rc);
3979 ehc->i.action |= ATA_EH_HARDRESET;
3980 }
3981 }
Tejun Heof5914a42006-05-31 18:27:48 +09003982
3983 return 0;
3984}
3985
Tejun Heoc2bd5802006-01-24 17:05:22 +09003986/**
3987 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003988 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003989 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003990 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003991 *
Tejun Heo52783c52006-05-31 18:28:22 +09003992 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003993 *
3994 * LOCKING:
3995 * Kernel thread context (may sleep)
3996 *
3997 * RETURNS:
3998 * 0 on success, -errno otherwise.
3999 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004000int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004001 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004002{
Tejun Heocc0680a2007-08-06 18:36:23 +09004003 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004004 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09004005 unsigned int devmask = 0;
4006 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004007 u8 err;
4008
4009 DPRINTK("ENTER\n");
4010
Tejun Heo936fd732007-08-06 18:36:23 +09004011 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09004012 classes[0] = ATA_DEV_NONE;
4013 goto out;
4014 }
4015
Tejun Heoc2bd5802006-01-24 17:05:22 +09004016 /* determine if device 0/1 are present */
4017 if (ata_devchk(ap, 0))
4018 devmask |= (1 << 0);
4019 if (slave_possible && ata_devchk(ap, 1))
4020 devmask |= (1 << 1);
4021
Tejun Heoc2bd5802006-01-24 17:05:22 +09004022 /* select device 0 again */
4023 ap->ops->dev_select(ap, 0);
4024
4025 /* issue bus reset */
4026 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09004027 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09004028 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09004029 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004030 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09004031 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004032 }
4033
4034 /* determine by signature whether we have ATA or ATAPI devices */
Tejun Heo3f198592007-09-02 23:23:57 +09004035 classes[0] = ata_dev_try_classify(&link->device[0],
4036 devmask & (1 << 0), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004037 if (slave_possible && err != 0x81)
Tejun Heo3f198592007-09-02 23:23:57 +09004038 classes[1] = ata_dev_try_classify(&link->device[1],
4039 devmask & (1 << 1), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004040
Tejun Heo3a397462006-02-10 23:58:48 +09004041 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09004042 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
4043 return 0;
4044}
4045
4046/**
Tejun Heocc0680a2007-08-06 18:36:23 +09004047 * sata_link_hardreset - reset link via SATA phy reset
4048 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09004049 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09004050 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09004051 *
Tejun Heocc0680a2007-08-06 18:36:23 +09004052 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09004053 *
4054 * LOCKING:
4055 * Kernel thread context (may sleep)
4056 *
4057 * RETURNS:
4058 * 0 on success, -errno otherwise.
4059 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004060int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004061 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004062{
Tejun Heo852ee162006-04-01 01:38:18 +09004063 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09004064 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09004065
Tejun Heoc2bd5802006-01-24 17:05:22 +09004066 DPRINTK("ENTER\n");
4067
Tejun Heo936fd732007-08-06 18:36:23 +09004068 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09004069 /* SATA spec says nothing about how to reconfigure
4070 * spd. To be on the safe side, turn off phy during
4071 * reconfiguration. This works for at least ICH7 AHCI
4072 * and Sil3124.
4073 */
Tejun Heo936fd732007-08-06 18:36:23 +09004074 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004075 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09004076
Martin Hicksa34b6fc2006-07-05 15:06:13 -04004077 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09004078
Tejun Heo936fd732007-08-06 18:36:23 +09004079 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004080 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004081
Tejun Heo936fd732007-08-06 18:36:23 +09004082 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09004083 }
4084
4085 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09004086 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004087 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09004088
Tejun Heo852ee162006-04-01 01:38:18 +09004089 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09004090
Tejun Heo936fd732007-08-06 18:36:23 +09004091 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004092 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004093
Tejun Heo1c3fae42006-04-02 20:53:28 +09004094 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09004095 * 10.4.2 says at least 1 ms.
4096 */
4097 msleep(1);
4098
Tejun Heo936fd732007-08-06 18:36:23 +09004099 /* bring link back */
4100 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09004101 out:
4102 DPRINTK("EXIT, rc=%d\n", rc);
4103 return rc;
4104}
4105
4106/**
4107 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09004108 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09004109 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09004110 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09004111 *
4112 * SATA phy-reset host port using DET bits of SControl register,
4113 * wait for !BSY and classify the attached device.
4114 *
4115 * LOCKING:
4116 * Kernel thread context (may sleep)
4117 *
4118 * RETURNS:
4119 * 0 on success, -errno otherwise.
4120 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004121int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004122 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09004123{
Tejun Heocc0680a2007-08-06 18:36:23 +09004124 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004125 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09004126 int rc;
4127
4128 DPRINTK("ENTER\n");
4129
4130 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09004131 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09004132 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004133 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09004134 "COMRESET failed (errno=%d)\n", rc);
4135 return rc;
4136 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09004137
Tejun Heoc2bd5802006-01-24 17:05:22 +09004138 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09004139 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09004140 *class = ATA_DEV_NONE;
4141 DPRINTK("EXIT, link offline\n");
4142 return 0;
4143 }
4144
Tejun Heo88ff6ea2007-10-16 14:21:24 -07004145 /* wait a while before checking status */
4146 ata_wait_after_reset(ap, deadline);
Tejun Heo34fee222007-02-02 15:29:27 +09004147
Tejun Heo633273a32007-09-23 13:19:54 +09004148 /* If PMP is supported, we have to do follow-up SRST. Note
4149 * that some PMPs don't send D2H Reg FIS after hardreset at
4150 * all if the first port is empty. Wait for it just for a
4151 * second and request follow-up SRST.
4152 */
4153 if (ap->flags & ATA_FLAG_PMP) {
4154 ata_wait_ready(ap, jiffies + HZ);
4155 return -EAGAIN;
4156 }
4157
Tejun Heod4b2bab2007-02-02 16:50:52 +09004158 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09004159 /* link occupied, -ENODEV too is an error */
4160 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004161 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004162 "COMRESET failed (errno=%d)\n", rc);
4163 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004164 }
4165
Tejun Heo3a397462006-02-10 23:58:48 +09004166 ap->ops->dev_select(ap, 0); /* probably unnecessary */
4167
Tejun Heo3f198592007-09-02 23:23:57 +09004168 *class = ata_dev_try_classify(link->device, 1, NULL);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004169
4170 DPRINTK("EXIT, class=%u\n", *class);
4171 return 0;
4172}
4173
4174/**
4175 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09004176 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09004177 * @classes: classes of attached devices
4178 *
4179 * This function is invoked after a successful reset. Note that
4180 * the device might have been reset more than once using
4181 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09004182 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09004183 * LOCKING:
4184 * Kernel thread context (may sleep)
4185 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004186void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004187{
Tejun Heocc0680a2007-08-06 18:36:23 +09004188 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09004189 u32 serror;
4190
Tejun Heoc2bd5802006-01-24 17:05:22 +09004191 DPRINTK("ENTER\n");
4192
Tejun Heoc2bd5802006-01-24 17:05:22 +09004193 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09004194 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004195
Tejun Heodc2b3512006-05-15 20:58:00 +09004196 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09004197 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
4198 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heof7fe7ad42007-12-08 08:47:01 +09004199 link->eh_info.serror = 0;
Tejun Heodc2b3512006-05-15 20:58:00 +09004200
Tejun Heoc2bd5802006-01-24 17:05:22 +09004201 /* is double-select really necessary? */
4202 if (classes[0] != ATA_DEV_NONE)
4203 ap->ops->dev_select(ap, 1);
4204 if (classes[1] != ATA_DEV_NONE)
4205 ap->ops->dev_select(ap, 0);
4206
Tejun Heo3a397462006-02-10 23:58:48 +09004207 /* bail out if no device is present */
4208 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
4209 DPRINTK("EXIT, no device\n");
4210 return;
4211 }
4212
4213 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004214 if (ap->ioaddr.ctl_addr)
4215 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004216
4217 DPRINTK("EXIT\n");
4218}
4219
Tejun Heoa62c0fc2006-01-24 17:05:22 +09004220/**
Tejun Heo623a3122006-03-05 17:55:58 +09004221 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09004222 * @dev: device to compare against
4223 * @new_class: class of the new device
4224 * @new_id: IDENTIFY page of the new device
4225 *
4226 * Compare @new_class and @new_id against @dev and determine
4227 * whether @dev is the device indicated by @new_class and
4228 * @new_id.
4229 *
4230 * LOCKING:
4231 * None.
4232 *
4233 * RETURNS:
4234 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
4235 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004236static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
4237 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09004238{
4239 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09004240 unsigned char model[2][ATA_ID_PROD_LEN + 1];
4241 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09004242
4243 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004244 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
4245 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09004246 return 0;
4247 }
4248
Tejun Heoa0cf7332007-01-02 20:18:49 +09004249 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
4250 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
4251 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
4252 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09004253
4254 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004255 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
4256 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004257 return 0;
4258 }
4259
4260 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004261 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
4262 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004263 return 0;
4264 }
4265
Tejun Heo623a3122006-03-05 17:55:58 +09004266 return 1;
4267}
4268
4269/**
Tejun Heofe309112007-05-15 03:28:15 +09004270 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02004271 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09004272 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09004273 *
4274 * Re-read IDENTIFY page and make sure @dev is still attached to
4275 * the port.
4276 *
4277 * LOCKING:
4278 * Kernel thread context (may sleep)
4279 *
4280 * RETURNS:
4281 * 0 on success, negative errno otherwise
4282 */
Tejun Heofe309112007-05-15 03:28:15 +09004283int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09004284{
Tejun Heo5eb45c02006-04-02 18:51:52 +09004285 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004286 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09004287 int rc;
4288
Tejun Heofe635c72006-05-15 20:57:35 +09004289 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09004290 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09004291 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09004292 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09004293
4294 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09004295 if (!ata_dev_same_device(dev, class, id))
4296 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09004297
Tejun Heofe635c72006-05-15 20:57:35 +09004298 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09004299 return 0;
4300}
4301
4302/**
4303 * ata_dev_revalidate - Revalidate ATA device
4304 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09004305 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09004306 * @readid_flags: read ID flags
4307 *
4308 * Re-read IDENTIFY page, make sure @dev is still attached to the
4309 * port and reconfigure it according to the new IDENTIFY page.
4310 *
4311 * LOCKING:
4312 * Kernel thread context (may sleep)
4313 *
4314 * RETURNS:
4315 * 0 on success, negative errno otherwise
4316 */
Tejun Heo422c9da2007-09-23 13:14:12 +09004317int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4318 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09004319{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004320 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09004321 int rc;
4322
4323 if (!ata_dev_enabled(dev))
4324 return -ENODEV;
4325
Tejun Heo422c9da2007-09-23 13:14:12 +09004326 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4327 if (ata_class_enabled(new_class) &&
4328 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
4329 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
4330 dev->class, new_class);
4331 rc = -ENODEV;
4332 goto fail;
4333 }
4334
Tejun Heofe309112007-05-15 03:28:15 +09004335 /* re-read ID */
4336 rc = ata_dev_reread_id(dev, readid_flags);
4337 if (rc)
4338 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09004339
4340 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09004341 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004342 if (rc)
4343 goto fail;
4344
4345 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09004346 if (dev->class == ATA_DEV_ATA && n_sectors &&
4347 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004348 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
4349 "%llu != %llu\n",
4350 (unsigned long long)n_sectors,
4351 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09004352
4353 /* restore original n_sectors */
4354 dev->n_sectors = n_sectors;
4355
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004356 rc = -ENODEV;
4357 goto fail;
4358 }
4359
4360 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09004361
4362 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09004363 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09004364 return rc;
4365}
4366
Alan Cox6919a0a2006-10-27 19:08:46 -07004367struct ata_blacklist_entry {
4368 const char *model_num;
4369 const char *model_rev;
4370 unsigned long horkage;
4371};
4372
4373static const struct ata_blacklist_entry ata_device_blacklist [] = {
4374 /* Devices with DMA related problems under Linux */
4375 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
4376 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
4377 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
4378 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
4379 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
4380 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
4381 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
4382 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
4383 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
4384 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
4385 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
4386 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
4387 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
4388 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
4389 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
4390 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
4391 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
4392 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
4393 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
4394 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
4395 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
4396 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
4397 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
4398 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
4399 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
4400 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004401 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4402 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004403 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04004404 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09004405 /* Odd clown on sil3726/4726 PMPs */
4406 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
4407 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07004408
Albert Lee18d6e9d2007-04-02 11:34:15 +08004409 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09004410 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08004411
Alan Cox6919a0a2006-10-27 19:08:46 -07004412 /* Devices we expect to fail diagnostics */
4413
4414 /* Devices where NCQ should be avoided */
4415 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004416 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09004417 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09004418 /* http://thread.gmane.org/gmane.linux.ide/14907 */
4419 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08004420 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004421 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01004422 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09004423 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09004424 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004425
Robert Hancock36e337d2007-04-02 22:05:29 -06004426 /* Blacklist entries taken from Silicon Image 3124/3132
4427 Windows driver .inf file - also several Linux problem reports */
4428 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
4429 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
4430 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07004431
Tejun Heo16c55b02007-08-29 11:58:33 +09004432 /* devices which puke on READ_NATIVE_MAX */
4433 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
4434 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4435 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4436 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004437
Alan Cox93328e12007-09-29 04:06:48 -04004438 /* Devices which report 1 sector over size HPA */
4439 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4440 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01004441 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04004442
Alan Cox6bbfd532007-11-05 22:58:58 +00004443 /* Devices which get the IVB wrong */
4444 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
4445 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01004446 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
4447 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
4448 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004449
Alan Cox6919a0a2006-10-27 19:08:46 -07004450 /* End Marker */
4451 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004453
Adrian Bunk741b7762007-10-24 18:23:06 +02004454static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004455{
4456 const char *p;
4457 int len;
4458
4459 /*
4460 * check for trailing wildcard: *\0
4461 */
4462 p = strchr(patt, wildchar);
4463 if (p && ((*(p + 1)) == 0))
4464 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004465 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004466 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004467 if (!len) {
4468 if (!*patt)
4469 return 0;
4470 return -1;
4471 }
4472 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004473
4474 return strncmp(patt, name, len);
4475}
4476
Tejun Heo75683fe2007-07-05 13:31:27 +09004477static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004479 unsigned char model_num[ATA_ID_PROD_LEN + 1];
4480 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07004481 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08004482
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004483 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4484 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Alan Cox6919a0a2006-10-27 19:08:46 -07004486 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004487 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07004488 if (ad->model_rev == NULL)
4489 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004490 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07004491 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004492 }
Alan Cox6919a0a2006-10-27 19:08:46 -07004493 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 return 0;
4496}
4497
Alan Cox6919a0a2006-10-27 19:08:46 -07004498static int ata_dma_blacklisted(const struct ata_device *dev)
4499{
4500 /* We don't support polling DMA.
4501 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4502 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4503 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004504 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004505 (dev->flags & ATA_DFLAG_CDB_INTR))
4506 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004507 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004508}
4509
Tejun Heoa6d5a512006-03-06 04:31:57 +09004510/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004511 * ata_is_40wire - check drive side detection
4512 * @dev: device
4513 *
4514 * Perform drive side detection decoding, allowing for device vendors
4515 * who can't follow the documentation.
4516 */
4517
4518static int ata_is_40wire(struct ata_device *dev)
4519{
4520 if (dev->horkage & ATA_HORKAGE_IVB)
4521 return ata_drive_40wire_relaxed(dev->id);
4522 return ata_drive_40wire(dev->id);
4523}
4524
4525/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004526 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004527 * @dev: Device to compute xfermask for
4528 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004529 * Compute supported xfermask of @dev and store it in
4530 * dev->*_mask. This function is responsible for applying all
4531 * known limits including host controller limits, device
4532 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004533 *
4534 * LOCKING:
4535 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004536 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004537static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004539 struct ata_link *link = dev->link;
4540 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004541 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004542 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Tejun Heo37deecb2006-08-10 16:59:07 +09004544 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004545 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4546 ap->mwdma_mask, ap->udma_mask);
4547
Robert Hancock8343f882007-03-06 02:37:51 -08004548 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004549 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4550 dev->mwdma_mask, dev->udma_mask);
4551 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004552
Alan Coxb352e572006-08-10 18:52:12 +01004553 /*
4554 * CFA Advanced TrueIDE timings are not allowed on a shared
4555 * cable
4556 */
4557 if (ata_dev_pair(dev)) {
4558 /* No PIO5 or PIO6 */
4559 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4560 /* No MWDMA3 or MWDMA 4 */
4561 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4562 }
4563
Tejun Heo37deecb2006-08-10 16:59:07 +09004564 if (ata_dma_blacklisted(dev)) {
4565 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004566 ata_dev_printk(dev, KERN_WARNING,
4567 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004568 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004569
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004570 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004571 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004572 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4573 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4574 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004575 }
Tejun Heo565083e2006-04-02 17:54:47 +09004576
Jeff Garzike4246752007-03-09 09:56:46 -05004577 if (ap->flags & ATA_FLAG_NO_IORDY)
4578 xfer_mask &= ata_pio_mask_no_iordy(dev);
4579
Alan Cox5444a6f2006-03-27 18:58:20 +01004580 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004581 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004582
Robert Hancock8343f882007-03-06 02:37:51 -08004583 /* Apply cable rule here. Don't apply it early because when
4584 * we handle hot plug the cable type can itself change.
4585 * Check this last so that we know if the transfer rate was
4586 * solely limited by the cable.
4587 * Unknown or 80 wire cables reported host side are checked
4588 * drive side as well. Cases where we know a 40wire cable
4589 * is used safely for 80 are not checked here.
4590 */
4591 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4592 /* UDMA/44 or higher would be available */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004593 if ((ap->cbl == ATA_CBL_PATA40) ||
Alan Cox6bbfd532007-11-05 22:58:58 +00004594 (ata_is_40wire(dev) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004595 (ap->cbl == ATA_CBL_PATA_UNK ||
4596 ap->cbl == ATA_CBL_PATA80))) {
4597 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004598 "limited to UDMA/33 due to 40-wire cable\n");
4599 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4600 }
4601
Tejun Heo565083e2006-04-02 17:54:47 +09004602 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4603 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604}
4605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 * @dev: Device to which command will be sent
4609 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004610 * Issue SET FEATURES - XFER MODE command to device @dev
4611 * on port @ap.
4612 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004614 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004615 *
4616 * RETURNS:
4617 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 */
4619
Tejun Heo3373efd2006-05-15 20:57:53 +09004620static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621{
Tejun Heoa0123702005-12-13 14:49:31 +09004622 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004623 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625 /* set up set-features taskfile */
4626 DPRINTK("set features - xfer mode\n");
4627
Tejun Heo464cf172007-05-27 15:10:40 +02004628 /* Some controllers and ATAPI devices show flaky interrupt
4629 * behavior after setting xfer mode. Use polling instead.
4630 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004631 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004632 tf.command = ATA_CMD_SET_FEATURES;
4633 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004634 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004635 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004636 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004637 if (ata_pio_need_iordy(dev))
4638 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004639 /* If the device has IORDY and the controller does not - turn it off */
4640 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004641 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004642 else /* In the ancient relic department - skip all of this */
4643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Tejun Heo2b789102007-10-09 15:05:44 +09004645 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Tejun Heo83206a22006-03-24 15:25:31 +09004647 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4648 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004651 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004652 * @dev: Device to which command will be sent
4653 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004654 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004655 *
4656 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004657 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004658 *
4659 * LOCKING:
4660 * PCI/etc. bus probe sem.
4661 *
4662 * RETURNS:
4663 * 0 on success, AC_ERR_* mask otherwise.
4664 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004665static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4666 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004667{
4668 struct ata_taskfile tf;
4669 unsigned int err_mask;
4670
4671 /* set up set-features taskfile */
4672 DPRINTK("set features - SATA features\n");
4673
4674 ata_tf_init(dev, &tf);
4675 tf.command = ATA_CMD_SET_FEATURES;
4676 tf.feature = enable;
4677 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4678 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004679 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004680
Tejun Heo2b789102007-10-09 15:05:44 +09004681 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004682
4683 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4684 return err_mask;
4685}
4686
4687/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004688 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004689 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004690 * @heads: Number of heads (taskfile parameter)
4691 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004692 *
4693 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004694 * Kernel thread context (may sleep)
4695 *
4696 * RETURNS:
4697 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004698 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004699static unsigned int ata_dev_init_params(struct ata_device *dev,
4700 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004701{
Tejun Heoa0123702005-12-13 14:49:31 +09004702 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004703 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004704
4705 /* Number of sectors per track 1-255. Number of heads 1-16 */
4706 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004707 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004708
4709 /* set up init dev params taskfile */
4710 DPRINTK("init dev params \n");
4711
Tejun Heo3373efd2006-05-15 20:57:53 +09004712 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004713 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4714 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4715 tf.protocol = ATA_PROT_NODATA;
4716 tf.nsect = sectors;
4717 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004718
Tejun Heo2b789102007-10-09 15:05:44 +09004719 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004720 /* A clean abort indicates an original or just out of spec drive
4721 and we should continue as we issue the setup based on the
4722 drive reported working geometry */
4723 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4724 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004725
Tejun Heo6aff8f12006-02-15 18:24:09 +09004726 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4727 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004728}
4729
4730/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004731 * ata_sg_clean - Unmap DMA memory associated with command
4732 * @qc: Command containing DMA memory to be released
4733 *
4734 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 *
4736 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004737 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004739void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740{
4741 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004742 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 int dir = qc->dma_dir;
4744
Tejun Heoa46314742006-02-11 19:11:13 +09004745 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
James Bottomleydde20202008-02-19 11:36:56 +01004747 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
James Bottomleydde20202008-02-19 11:36:56 +01004749 if (qc->n_elem)
4750 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
4752 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004753 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754}
4755
4756/**
4757 * ata_fill_sg - Fill PCI IDE PRD table
4758 * @qc: Metadata associated with taskfile to be transferred
4759 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004760 * Fill PCI IDE PRD (scatter-gather) table with segments
4761 * associated with the current disk command.
4762 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004764 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 *
4766 */
4767static void ata_fill_sg(struct ata_queued_cmd *qc)
4768{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004770 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004771 unsigned int si, pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Tejun Heoff2aeb12007-12-05 16:43:11 +09004773 pi = 0;
4774 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 u32 addr, offset;
4776 u32 sg_len, len;
4777
4778 /* determine if physical DMA addr spans 64K boundary.
4779 * Note h/w doesn't support 64-bit, so we unconditionally
4780 * truncate dma_addr_t to u32.
4781 */
4782 addr = (u32) sg_dma_address(sg);
4783 sg_len = sg_dma_len(sg);
4784
4785 while (sg_len) {
4786 offset = addr & 0xffff;
4787 len = sg_len;
4788 if ((offset + sg_len) > 0x10000)
4789 len = 0x10000 - offset;
4790
Tejun Heoff2aeb12007-12-05 16:43:11 +09004791 ap->prd[pi].addr = cpu_to_le32(addr);
4792 ap->prd[pi].flags_len = cpu_to_le32(len & 0xffff);
4793 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Tejun Heoff2aeb12007-12-05 16:43:11 +09004795 pi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 sg_len -= len;
4797 addr += len;
4798 }
4799 }
4800
Tejun Heoff2aeb12007-12-05 16:43:11 +09004801 ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802}
Tejun Heob9a41972007-06-27 02:48:43 +09004803
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804/**
Alan Coxd26fc952007-07-06 19:13:52 -04004805 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4806 * @qc: Metadata associated with taskfile to be transferred
4807 *
4808 * Fill PCI IDE PRD (scatter-gather) table with segments
4809 * associated with the current disk command. Perform the fill
4810 * so that we avoid writing any length 64K records for
4811 * controllers that don't follow the spec.
4812 *
4813 * LOCKING:
4814 * spin_lock_irqsave(host lock)
4815 *
4816 */
4817static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4818{
4819 struct ata_port *ap = qc->ap;
4820 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004821 unsigned int si, pi;
Alan Coxd26fc952007-07-06 19:13:52 -04004822
Tejun Heoff2aeb12007-12-05 16:43:11 +09004823 pi = 0;
4824 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Alan Coxd26fc952007-07-06 19:13:52 -04004825 u32 addr, offset;
4826 u32 sg_len, len, blen;
4827
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004828 /* determine if physical DMA addr spans 64K boundary.
Alan Coxd26fc952007-07-06 19:13:52 -04004829 * Note h/w doesn't support 64-bit, so we unconditionally
4830 * truncate dma_addr_t to u32.
4831 */
4832 addr = (u32) sg_dma_address(sg);
4833 sg_len = sg_dma_len(sg);
4834
4835 while (sg_len) {
4836 offset = addr & 0xffff;
4837 len = sg_len;
4838 if ((offset + sg_len) > 0x10000)
4839 len = 0x10000 - offset;
4840
4841 blen = len & 0xffff;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004842 ap->prd[pi].addr = cpu_to_le32(addr);
Alan Coxd26fc952007-07-06 19:13:52 -04004843 if (blen == 0) {
4844 /* Some PATA chipsets like the CS5530 can't
4845 cope with 0x0000 meaning 64K as the spec says */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004846 ap->prd[pi].flags_len = cpu_to_le32(0x8000);
Alan Coxd26fc952007-07-06 19:13:52 -04004847 blen = 0x8000;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004848 ap->prd[++pi].addr = cpu_to_le32(addr + 0x8000);
Alan Coxd26fc952007-07-06 19:13:52 -04004849 }
Tejun Heoff2aeb12007-12-05 16:43:11 +09004850 ap->prd[pi].flags_len = cpu_to_le32(blen);
4851 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
Alan Coxd26fc952007-07-06 19:13:52 -04004852
Tejun Heoff2aeb12007-12-05 16:43:11 +09004853 pi++;
Alan Coxd26fc952007-07-06 19:13:52 -04004854 sg_len -= len;
4855 addr += len;
4856 }
4857 }
4858
Tejun Heoff2aeb12007-12-05 16:43:11 +09004859 ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Alan Coxd26fc952007-07-06 19:13:52 -04004860}
4861
4862/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4864 * @qc: Metadata associated with taskfile to check
4865 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004866 * Allow low-level driver to filter ATA PACKET commands, returning
4867 * a status indicating whether or not it is OK to use DMA for the
4868 * supplied PACKET command.
4869 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004871 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004872 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 * RETURNS: 0 when ATAPI DMA can be used
4874 * nonzero otherwise
4875 */
4876int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4877{
4878 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Tejun Heob9a41972007-06-27 02:48:43 +09004880 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4881 * few ATAPI devices choke on such DMA requests.
4882 */
4883 if (unlikely(qc->nbytes & 15))
4884 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004885
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004887 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Tejun Heob9a41972007-06-27 02:48:43 +09004889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890}
Tejun Heob9a41972007-06-27 02:48:43 +09004891
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004893 * ata_std_qc_defer - Check whether a qc needs to be deferred
4894 * @qc: ATA command in question
4895 *
4896 * Non-NCQ commands cannot run with any other command, NCQ or
4897 * not. As upper layer only knows the queue depth, we are
4898 * responsible for maintaining exclusion. This function checks
4899 * whether a new command @qc can be issued.
4900 *
4901 * LOCKING:
4902 * spin_lock_irqsave(host lock)
4903 *
4904 * RETURNS:
4905 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4906 */
4907int ata_std_qc_defer(struct ata_queued_cmd *qc)
4908{
4909 struct ata_link *link = qc->dev->link;
4910
4911 if (qc->tf.protocol == ATA_PROT_NCQ) {
4912 if (!ata_tag_valid(link->active_tag))
4913 return 0;
4914 } else {
4915 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4916 return 0;
4917 }
4918
4919 return ATA_DEFER_LINK;
4920}
4921
4922/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 * ata_qc_prep - Prepare taskfile for submission
4924 * @qc: Metadata associated with taskfile to be prepared
4925 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004926 * Prepare ATA taskfile for submission.
4927 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004929 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 */
4931void ata_qc_prep(struct ata_queued_cmd *qc)
4932{
4933 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4934 return;
4935
4936 ata_fill_sg(qc);
4937}
4938
Alan Coxd26fc952007-07-06 19:13:52 -04004939/**
4940 * ata_dumb_qc_prep - Prepare taskfile for submission
4941 * @qc: Metadata associated with taskfile to be prepared
4942 *
4943 * Prepare ATA taskfile for submission.
4944 *
4945 * LOCKING:
4946 * spin_lock_irqsave(host lock)
4947 */
4948void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4949{
4950 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4951 return;
4952
4953 ata_fill_sg_dumb(qc);
4954}
4955
Brian Kinge46834c2006-03-17 17:04:03 -06004956void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4957
Jeff Garzik0cba6322005-05-30 19:49:12 -04004958/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004959 * ata_sg_init - Associate command with scatter-gather table.
4960 * @qc: Command to be associated
4961 * @sg: Scatter-gather table.
4962 * @n_elem: Number of elements in s/g table.
4963 *
4964 * Initialize the data-related elements of queued_cmd @qc
4965 * to point to a scatter-gather table @sg, containing @n_elem
4966 * elements.
4967 *
4968 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004969 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4972 unsigned int n_elem)
4973{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004974 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004976 qc->cursg = qc->sg;
4977}
4978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004980 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4981 * @qc: Command with scatter-gather table to be mapped.
4982 *
4983 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 *
4985 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004986 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 *
4988 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004989 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 *
4991 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992static int ata_sg_setup(struct ata_queued_cmd *qc)
4993{
4994 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004995 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Tejun Heo44877b42007-02-21 01:06:51 +09004997 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
James Bottomleydde20202008-02-19 11:36:56 +01004999 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
5000 if (n_elem < 1)
5001 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005002
James Bottomleydde20202008-02-19 11:36:56 +01005003 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005004
James Bottomleydde20202008-02-19 11:36:56 +01005005 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09005006 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
5008 return 0;
5009}
5010
5011/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005012 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04005013 * @buf: Buffer to swap
5014 * @buf_words: Number of 16-bit words in buffer.
5015 *
5016 * Swap halves of 16-bit words if needed to convert from
5017 * little-endian byte order to native cpu byte order, or
5018 * vice-versa.
5019 *
5020 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005021 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023void swap_buf_le16(u16 *buf, unsigned int buf_words)
5024{
5025#ifdef __BIG_ENDIAN
5026 unsigned int i;
5027
5028 for (i = 0; i < buf_words; i++)
5029 buf[i] = le16_to_cpu(buf[i]);
5030#endif /* __BIG_ENDIAN */
5031}
5032
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005033/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09005034 * ata_data_xfer - Transfer data by PIO
Tejun Heo55dba312007-12-05 16:43:07 +09005035 * @dev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005036 * @buf: data buffer
5037 * @buflen: buffer length
Linus Nilsson0affa452008-01-28 15:56:27 +01005038 * @rw: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005039 *
5040 * Transfer data from/to the device data register by PIO.
5041 *
5042 * LOCKING:
5043 * Inherited from caller.
Tejun Heo55dba312007-12-05 16:43:07 +09005044 *
5045 * RETURNS:
5046 * Bytes consumed.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005047 */
Tejun Heo55dba312007-12-05 16:43:07 +09005048unsigned int ata_data_xfer(struct ata_device *dev, unsigned char *buf,
5049 unsigned int buflen, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050{
Tejun Heo55dba312007-12-05 16:43:07 +09005051 struct ata_port *ap = dev->link->ap;
5052 void __iomem *data_addr = ap->ioaddr.data_addr;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005053 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005055 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +09005056 if (rw == READ)
5057 ioread16_rep(data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 else
Tejun Heo55dba312007-12-05 16:43:07 +09005059 iowrite16_rep(data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005060
5061 /* Transfer trailing 1 byte, if any. */
5062 if (unlikely(buflen & 0x01)) {
Al Viro4ca4e432007-12-30 09:32:22 +00005063 __le16 align_buf[1] = { 0 };
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005064 unsigned char *trailing_buf = buf + buflen - 1;
5065
Tejun Heo55dba312007-12-05 16:43:07 +09005066 if (rw == READ) {
5067 align_buf[0] = cpu_to_le16(ioread16(data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005068 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +09005069 } else {
5070 memcpy(align_buf, trailing_buf, 1);
5071 iowrite16(le16_to_cpu(align_buf[0]), data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005072 }
Tejun Heo55dba312007-12-05 16:43:07 +09005073 words++;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005074 }
Tejun Heo55dba312007-12-05 16:43:07 +09005075
5076 return words << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077}
5078
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005079/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09005080 * ata_data_xfer_noirq - Transfer data by PIO
Tejun Heo55dba312007-12-05 16:43:07 +09005081 * @dev: device to target
Alan Cox75e99582006-05-24 14:14:41 +01005082 * @buf: data buffer
5083 * @buflen: buffer length
Linus Nilsson0affa452008-01-28 15:56:27 +01005084 * @rw: read/write
Alan Cox75e99582006-05-24 14:14:41 +01005085 *
Tejun Heo88574552006-06-25 20:00:35 +09005086 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01005087 * transfer with interrupts disabled.
5088 *
5089 * LOCKING:
5090 * Inherited from caller.
Tejun Heo55dba312007-12-05 16:43:07 +09005091 *
5092 * RETURNS:
5093 * Bytes consumed.
Alan Cox75e99582006-05-24 14:14:41 +01005094 */
Tejun Heo55dba312007-12-05 16:43:07 +09005095unsigned int ata_data_xfer_noirq(struct ata_device *dev, unsigned char *buf,
5096 unsigned int buflen, int rw)
Alan Cox75e99582006-05-24 14:14:41 +01005097{
5098 unsigned long flags;
Tejun Heo55dba312007-12-05 16:43:07 +09005099 unsigned int consumed;
5100
Alan Cox75e99582006-05-24 14:14:41 +01005101 local_irq_save(flags);
Tejun Heo55dba312007-12-05 16:43:07 +09005102 consumed = ata_data_xfer(dev, buf, buflen, rw);
Alan Cox75e99582006-05-24 14:14:41 +01005103 local_irq_restore(flags);
Tejun Heo55dba312007-12-05 16:43:07 +09005104
5105 return consumed;
Alan Cox75e99582006-05-24 14:14:41 +01005106}
5107
5108
5109/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04005110 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005111 * @qc: Command on going
5112 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04005113 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005114 *
5115 * LOCKING:
5116 * Inherited from caller.
5117 */
5118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119static void ata_pio_sector(struct ata_queued_cmd *qc)
5120{
5121 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 struct ata_port *ap = qc->ap;
5123 struct page *page;
5124 unsigned int offset;
5125 unsigned char *buf;
5126
Mark Lord5a5dbd12007-03-16 10:22:26 -04005127 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08005128 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Jens Axboe45711f12007-10-22 21:19:53 +02005130 page = sg_page(qc->cursg);
Jens Axboe87260212007-10-16 11:14:12 +02005131 offset = qc->cursg->offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
5133 /* get the current page and offset */
5134 page = nth_page(page, (offset >> PAGE_SHIFT));
5135 offset %= PAGE_SIZE;
5136
Albert Lee7282aa42005-10-09 09:46:07 -04005137 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
5138
Albert Lee91b8b312005-10-09 09:48:44 -04005139 if (PageHighMem(page)) {
5140 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04005141
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005142 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04005143 local_irq_save(flags);
5144 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04005145
Albert Lee91b8b312005-10-09 09:48:44 -04005146 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04005147 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04005148
5149 kunmap_atomic(buf, KM_IRQ0);
5150 local_irq_restore(flags);
5151 } else {
5152 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04005153 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04005154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Mark Lord5a5dbd12007-03-16 10:22:26 -04005156 qc->curbytes += qc->sect_size;
5157 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Jens Axboe87260212007-10-16 11:14:12 +02005159 if (qc->cursg_ofs == qc->cursg->length) {
5160 qc->cursg = sg_next(qc->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 qc->cursg_ofs = 0;
5162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005165/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04005166 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08005167 * @qc: Command on going
5168 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04005169 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08005170 * ATA device for the DRQ request.
5171 *
5172 * LOCKING:
5173 * Inherited from caller.
5174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175
Albert Lee07f6f7d2005-11-01 19:33:20 +08005176static void ata_pio_sectors(struct ata_queued_cmd *qc)
5177{
5178 if (is_multi_taskfile(&qc->tf)) {
5179 /* READ/WRITE MULTIPLE */
5180 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
Jeff Garzik587005d2006-02-11 18:17:32 -05005182 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08005183
Mark Lord5a5dbd12007-03-16 10:22:26 -04005184 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09005185 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08005186 while (nsect--)
5187 ata_pio_sector(qc);
5188 } else
5189 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04005190
5191 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08005192}
5193
5194/**
Albert Leec71c1852005-10-04 06:03:45 -04005195 * atapi_send_cdb - Write CDB bytes to hardware
5196 * @ap: Port to which ATAPI device is attached.
5197 * @qc: Taskfile currently active
5198 *
5199 * When device has indicated its readiness to accept
5200 * a CDB, this function is called. Send the CDB.
5201 *
5202 * LOCKING:
5203 * caller.
5204 */
5205
5206static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
5207{
5208 /* send SCSI cdb */
5209 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05005210 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04005211
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005212 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04005213 ata_altstatus(ap); /* flush */
5214
5215 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -05005216 case ATAPI_PROT_PIO:
Albert Leec71c1852005-10-04 06:03:45 -04005217 ap->hsm_task_state = HSM_ST;
5218 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05005219 case ATAPI_PROT_NODATA:
Albert Leec71c1852005-10-04 06:03:45 -04005220 ap->hsm_task_state = HSM_ST_LAST;
5221 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05005222 case ATAPI_PROT_DMA:
Albert Leec71c1852005-10-04 06:03:45 -04005223 ap->hsm_task_state = HSM_ST_LAST;
5224 /* initiate bmdma */
5225 ap->ops->bmdma_start(qc);
5226 break;
5227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228}
5229
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005230/**
5231 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
5232 * @qc: Command on going
5233 * @bytes: number of bytes
5234 *
5235 * Transfer Transfer data from/to the ATAPI device.
5236 *
5237 * LOCKING:
5238 * Inherited from caller.
5239 *
5240 */
Tejun Heo140b5e52007-12-12 12:21:52 +09005241static int __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242{
Tejun Heo56c819d2008-02-19 11:35:37 +01005243 int rw = (qc->tf.flags & ATA_TFLAG_WRITE) ? WRITE : READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 struct ata_port *ap = qc->ap;
Tejun Heo56c819d2008-02-19 11:35:37 +01005245 struct ata_device *dev = qc->dev;
5246 struct ata_eh_info *ehi = &dev->link->eh_info;
Tejun Heo140b5e52007-12-12 12:21:52 +09005247 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 struct page *page;
5249 unsigned char *buf;
Tejun Heo56c819d2008-02-19 11:35:37 +01005250 unsigned int offset, count, consumed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
5252next_sg:
Tejun Heo140b5e52007-12-12 12:21:52 +09005253 sg = qc->cursg;
5254 if (unlikely(!sg)) {
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01005255 ata_ehi_push_desc(ehi, "unexpected or too much trailing data "
5256 "buf=%u cur=%u bytes=%u",
5257 qc->nbytes, qc->curbytes, bytes);
5258 return -1;
Tejun Heo140b5e52007-12-12 12:21:52 +09005259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
Jens Axboe45711f12007-10-22 21:19:53 +02005261 page = sg_page(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 offset = sg->offset + qc->cursg_ofs;
5263
5264 /* get the current page and offset */
5265 page = nth_page(page, (offset >> PAGE_SHIFT));
5266 offset %= PAGE_SIZE;
5267
Albert Lee6952df02005-06-06 15:56:03 +08005268 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04005269 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
5271 /* don't cross page boundaries */
5272 count = min(count, (unsigned int)PAGE_SIZE - offset);
5273
Albert Lee7282aa42005-10-09 09:46:07 -04005274 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
5275
Albert Lee91b8b312005-10-09 09:48:44 -04005276 if (PageHighMem(page)) {
5277 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04005278
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005279 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04005280 local_irq_save(flags);
5281 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04005282
Albert Lee91b8b312005-10-09 09:48:44 -04005283 /* do the actual data transfer */
Tejun Heo56c819d2008-02-19 11:35:37 +01005284 consumed = ap->ops->data_xfer(dev, buf + offset, count, rw);
Albert Lee91b8b312005-10-09 09:48:44 -04005285
5286 kunmap_atomic(buf, KM_IRQ0);
5287 local_irq_restore(flags);
5288 } else {
5289 buf = page_address(page);
Tejun Heo56c819d2008-02-19 11:35:37 +01005290 consumed = ap->ops->data_xfer(dev, buf + offset, count, rw);
Albert Lee91b8b312005-10-09 09:48:44 -04005291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292
Tejun Heo56c819d2008-02-19 11:35:37 +01005293 bytes -= min(bytes, consumed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 qc->curbytes += count;
5295 qc->cursg_ofs += count;
5296
Albert Lee32529e02005-05-26 03:49:42 -04005297 if (qc->cursg_ofs == sg->length) {
Jens Axboe87260212007-10-16 11:14:12 +02005298 qc->cursg = sg_next(qc->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 qc->cursg_ofs = 0;
5300 }
5301
Tejun Heo56c819d2008-02-19 11:35:37 +01005302 /* consumed can be larger than count only for the last transfer */
5303 WARN_ON(qc->cursg && count != consumed);
5304
Albert Lee563a6e12005-08-12 14:17:50 +08005305 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 goto next_sg;
Tejun Heo140b5e52007-12-12 12:21:52 +09005307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308}
5309
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005310/**
5311 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
5312 * @qc: Command on going
5313 *
5314 * Transfer Transfer data from/to the ATAPI device.
5315 *
5316 * LOCKING:
5317 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005318 */
5319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320static void atapi_pio_bytes(struct ata_queued_cmd *qc)
5321{
5322 struct ata_port *ap = qc->ap;
5323 struct ata_device *dev = qc->dev;
Tejun Heo56c819d2008-02-19 11:35:37 +01005324 struct ata_eh_info *ehi = &dev->link->eh_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 unsigned int ireason, bc_lo, bc_hi, bytes;
5326 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
5327
Albert Leeeec4c3f2006-05-18 17:51:10 +08005328 /* Abuse qc->result_tf for temp storage of intermediate TF
5329 * here to save some kernel stack usage.
5330 * For normal completion, qc->result_tf is not relevant. For
5331 * error, qc->result_tf is later overwritten by ata_qc_complete().
5332 * So, the correctness of qc->result_tf is not affected.
5333 */
5334 ap->ops->tf_read(ap, &qc->result_tf);
5335 ireason = qc->result_tf.nsect;
5336 bc_lo = qc->result_tf.lbam;
5337 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 bytes = (bc_hi << 8) | bc_lo;
5339
5340 /* shall be cleared to zero, indicating xfer of data */
Albert Lee01063722007-12-05 16:43:02 +09005341 if (unlikely(ireason & (1 << 0)))
Tejun Heo56c819d2008-02-19 11:35:37 +01005342 goto atapi_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
5344 /* make sure transfer direction matches expected */
5345 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
Albert Lee01063722007-12-05 16:43:02 +09005346 if (unlikely(do_write != i_write))
Tejun Heo56c819d2008-02-19 11:35:37 +01005347 goto atapi_check;
Albert Lee01063722007-12-05 16:43:02 +09005348
5349 if (unlikely(!bytes))
Tejun Heo56c819d2008-02-19 11:35:37 +01005350 goto atapi_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Tejun Heo44877b42007-02-21 01:06:51 +09005352 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08005353
Tejun Heo56c819d2008-02-19 11:35:37 +01005354 if (unlikely(__atapi_pio_bytes(qc, bytes)))
Tejun Heo140b5e52007-12-12 12:21:52 +09005355 goto err_out;
Albert Lee4cc980b2007-08-15 03:19:45 -04005356 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358 return;
5359
Tejun Heo56c819d2008-02-19 11:35:37 +01005360 atapi_check:
5361 ata_ehi_push_desc(ehi, "ATAPI check failed (ireason=0x%x bytes=%u)",
5362 ireason, bytes);
5363 err_out:
Tejun Heo11a56d22006-01-23 13:09:36 +09005364 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08005365 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366}
5367
5368/**
Albert Leec234fb02006-03-25 17:58:38 +08005369 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
5370 * @ap: the target ata_port
5371 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 *
Albert Leec234fb02006-03-25 17:58:38 +08005373 * RETURNS:
5374 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 */
Albert Leec234fb02006-03-25 17:58:38 +08005376
5377static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378{
Albert Leec234fb02006-03-25 17:58:38 +08005379 if (qc->tf.flags & ATA_TFLAG_POLLING)
5380 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381
Albert Leec234fb02006-03-25 17:58:38 +08005382 if (ap->hsm_task_state == HSM_ST_FIRST) {
5383 if (qc->tf.protocol == ATA_PROT_PIO &&
5384 (qc->tf.flags & ATA_TFLAG_WRITE))
5385 return 1;
5386
Tejun Heo405e66b2007-11-27 19:28:53 +09005387 if (ata_is_atapi(qc->tf.protocol) &&
Albert Leec234fb02006-03-25 17:58:38 +08005388 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
5389 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 }
5391
Albert Leec234fb02006-03-25 17:58:38 +08005392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393}
5394
Albert Leec234fb02006-03-25 17:58:38 +08005395/**
Tejun Heoc17ea202006-05-15 20:59:29 +09005396 * ata_hsm_qc_complete - finish a qc running on standard HSM
5397 * @qc: Command to complete
5398 * @in_wq: 1 if called from workqueue, 0 otherwise
5399 *
5400 * Finish @qc which is running on standard HSM.
5401 *
5402 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005403 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09005404 * Otherwise, none on entry and grabs host lock.
5405 */
5406static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
5407{
5408 struct ata_port *ap = qc->ap;
5409 unsigned long flags;
5410
5411 if (ap->ops->error_handler) {
5412 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005413 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005414
Jeff Garzikcca39742006-08-24 03:19:22 -04005415 /* EH might have kicked in while host lock is
5416 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09005417 */
5418 qc = ata_qc_from_tag(ap, qc->tag);
5419 if (qc) {
5420 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09005421 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005422 ata_qc_complete(qc);
5423 } else
5424 ata_port_freeze(ap);
5425 }
5426
Jeff Garzikba6a1302006-06-22 23:46:10 -04005427 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005428 } else {
5429 if (likely(!(qc->err_mask & AC_ERR_HSM)))
5430 ata_qc_complete(qc);
5431 else
5432 ata_port_freeze(ap);
5433 }
5434 } else {
5435 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005436 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09005437 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005438 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04005439 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005440 } else
5441 ata_qc_complete(qc);
5442 }
5443}
5444
5445/**
Albert Leebb5cb292006-03-25 17:48:02 +08005446 * ata_hsm_move - move the HSM to the next state.
5447 * @ap: the target ata_port
5448 * @qc: qc on going
5449 * @status: current device status
5450 * @in_wq: 1 if called from workqueue, 0 otherwise
5451 *
5452 * RETURNS:
5453 * 1 when poll next status needed, 0 otherwise.
5454 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09005455int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
5456 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457{
Albert Leebb5cb292006-03-25 17:48:02 +08005458 unsigned long flags = 0;
5459 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Albert Lee6912ccd2006-03-25 17:45:49 +08005461 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08005462
Albert Leebb5cb292006-03-25 17:48:02 +08005463 /* Make sure ata_qc_issue_prot() does not throw things
5464 * like DMA polling into the workqueue. Notice that
5465 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08005466 */
Albert Leec234fb02006-03-25 17:58:38 +08005467 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08005468
Albert Leee2cec772006-03-25 17:43:49 +08005469fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08005470 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005471 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
Albert Leee2cec772006-03-25 17:43:49 +08005473 switch (ap->hsm_task_state) {
5474 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08005475 /* Send first data block or PACKET CDB */
5476
5477 /* If polling, we will stay in the work queue after
5478 * sending the data. Otherwise, interrupt handler
5479 * takes over after sending the data.
5480 */
5481 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
5482
Albert Leee2cec772006-03-25 17:43:49 +08005483 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08005484 if (unlikely((status & ATA_DRQ) == 0)) {
5485 /* handle BSY=0, DRQ=0 as error */
5486 if (likely(status & (ATA_ERR | ATA_DF)))
5487 /* device stops HSM for abort/error */
5488 qc->err_mask |= AC_ERR_DEV;
5489 else
5490 /* HSM violation. Let EH handle this */
5491 qc->err_mask |= AC_ERR_HSM;
5492
Albert Leee2cec772006-03-25 17:43:49 +08005493 ap->hsm_task_state = HSM_ST_ERR;
5494 goto fsm_start;
5495 }
5496
Albert Lee71601952006-03-25 18:11:12 +08005497 /* Device should not ask for data transfer (DRQ=1)
5498 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005499 * We ignore DRQ here and stop the HSM by
5500 * changing hsm_task_state to HSM_ST_ERR and
5501 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005502 */
5503 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee2d3b8ee2007-11-15 10:35:46 +09005504 /* Some ATAPI tape drives forget to clear the ERR bit
5505 * when doing the next command (mostly request sense).
5506 * We ignore ERR here to workaround and proceed sending
5507 * the CDB.
5508 */
5509 if (!(qc->dev->horkage & ATA_HORKAGE_STUCK_ERR)) {
5510 ata_port_printk(ap, KERN_WARNING,
5511 "DRQ=1 with device error, "
5512 "dev_stat 0x%X\n", status);
5513 qc->err_mask |= AC_ERR_HSM;
5514 ap->hsm_task_state = HSM_ST_ERR;
5515 goto fsm_start;
5516 }
Albert Lee71601952006-03-25 18:11:12 +08005517 }
5518
Albert Leebb5cb292006-03-25 17:48:02 +08005519 /* Send the CDB (atapi) or the first data block (ata pio out).
5520 * During the state transition, interrupt handler shouldn't
5521 * be invoked before the data transfer is complete and
5522 * hsm_task_state is changed. Hence, the following locking.
5523 */
5524 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005525 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08005526
Albert Leebb5cb292006-03-25 17:48:02 +08005527 if (qc->tf.protocol == ATA_PROT_PIO) {
5528 /* PIO data out protocol.
5529 * send first data block.
5530 */
5531
5532 /* ata_pio_sectors() might change the state
5533 * to HSM_ST_LAST. so, the state is changed here
5534 * before ata_pio_sectors().
5535 */
5536 ap->hsm_task_state = HSM_ST;
5537 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08005538 } else
5539 /* send CDB */
5540 atapi_send_cdb(ap, qc);
5541
5542 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005543 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08005544
5545 /* if polling, ata_pio_task() handles the rest.
5546 * otherwise, interrupt handler takes over from here.
5547 */
Albert Leee2cec772006-03-25 17:43:49 +08005548 break;
5549
5550 case HSM_ST:
5551 /* complete command or read/write the data register */
Tejun Heo0dc36882007-12-18 16:34:43 -05005552 if (qc->tf.protocol == ATAPI_PROT_PIO) {
Albert Leee2cec772006-03-25 17:43:49 +08005553 /* ATAPI PIO protocol */
5554 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08005555 /* No more data to transfer or device error.
5556 * Device error will be tagged in HSM_ST_LAST.
5557 */
Albert Leee2cec772006-03-25 17:43:49 +08005558 ap->hsm_task_state = HSM_ST_LAST;
5559 goto fsm_start;
5560 }
5561
Albert Lee71601952006-03-25 18:11:12 +08005562 /* Device should not ask for data transfer (DRQ=1)
5563 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005564 * We ignore DRQ here and stop the HSM by
5565 * changing hsm_task_state to HSM_ST_ERR and
5566 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005567 */
5568 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005569 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5570 "device error, dev_stat 0x%X\n",
5571 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005572 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005573 ap->hsm_task_state = HSM_ST_ERR;
5574 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005575 }
5576
Albert Leee2cec772006-03-25 17:43:49 +08005577 atapi_pio_bytes(qc);
5578
5579 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5580 /* bad ireason reported by device */
5581 goto fsm_start;
5582
5583 } else {
5584 /* ATA PIO protocol */
5585 if (unlikely((status & ATA_DRQ) == 0)) {
5586 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005587 if (likely(status & (ATA_ERR | ATA_DF)))
5588 /* device stops HSM for abort/error */
5589 qc->err_mask |= AC_ERR_DEV;
5590 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005591 /* HSM violation. Let EH handle this.
5592 * Phantom devices also trigger this
5593 * condition. Mark hint.
5594 */
5595 qc->err_mask |= AC_ERR_HSM |
5596 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005597
Albert Leee2cec772006-03-25 17:43:49 +08005598 ap->hsm_task_state = HSM_ST_ERR;
5599 goto fsm_start;
5600 }
5601
Albert Leeeee6c322006-04-01 17:38:43 +08005602 /* For PIO reads, some devices may ask for
5603 * data transfer (DRQ=1) alone with ERR=1.
5604 * We respect DRQ here and transfer one
5605 * block of junk data before changing the
5606 * hsm_task_state to HSM_ST_ERR.
5607 *
5608 * For PIO writes, ERR=1 DRQ=1 doesn't make
5609 * sense since the data block has been
5610 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005611 */
5612 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005613 /* data might be corrputed */
5614 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005615
5616 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5617 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005618 status = ata_wait_idle(ap);
5619 }
5620
Albert Lee3655d1d2006-05-19 11:43:04 +08005621 if (status & (ATA_BUSY | ATA_DRQ))
5622 qc->err_mask |= AC_ERR_HSM;
5623
Albert Leeeee6c322006-04-01 17:38:43 +08005624 /* ata_pio_sectors() might change the
5625 * state to HSM_ST_LAST. so, the state
5626 * is changed after ata_pio_sectors().
5627 */
5628 ap->hsm_task_state = HSM_ST_ERR;
5629 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005630 }
5631
Albert Leee2cec772006-03-25 17:43:49 +08005632 ata_pio_sectors(qc);
5633
5634 if (ap->hsm_task_state == HSM_ST_LAST &&
5635 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5636 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005637 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005638 goto fsm_start;
5639 }
5640 }
5641
Albert Leebb5cb292006-03-25 17:48:02 +08005642 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005643 break;
5644
5645 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005646 if (unlikely(!ata_ok(status))) {
5647 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005648 ap->hsm_task_state = HSM_ST_ERR;
5649 goto fsm_start;
5650 }
5651
5652 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005653 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005654 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005655
Albert Lee6912ccd2006-03-25 17:45:49 +08005656 WARN_ON(qc->err_mask);
5657
Albert Leee2cec772006-03-25 17:43:49 +08005658 ap->hsm_task_state = HSM_ST_IDLE;
5659
5660 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005661 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005662
5663 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005664 break;
5665
5666 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005667 /* make sure qc->err_mask is available to
5668 * know what's wrong and recover
5669 */
5670 WARN_ON(qc->err_mask == 0);
5671
5672 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005673
Albert Lee999bb6f2006-03-25 18:07:48 +08005674 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005675 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005676
5677 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005678 break;
5679 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005680 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005681 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005682 }
5683
Albert Leebb5cb292006-03-25 17:48:02 +08005684 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685}
5686
David Howells65f27f32006-11-22 14:55:48 +00005687static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688{
David Howells65f27f32006-11-22 14:55:48 +00005689 struct ata_port *ap =
5690 container_of(work, struct ata_port, port_task.work);
5691 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005692 u8 status;
5693 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005694
5695fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005696 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
Albert Leea1af3732006-03-25 17:50:15 +08005698 /*
5699 * This is purely heuristic. This is a fast path.
5700 * Sometimes when we enter, BSY will be cleared in
5701 * a chk-status or two. If not, the drive is probably seeking
5702 * or something. Snooze for a couple msecs, then
5703 * chk-status again. If still busy, queue delayed work.
5704 */
5705 status = ata_busy_wait(ap, ATA_BUSY, 5);
5706 if (status & ATA_BUSY) {
5707 msleep(2);
5708 status = ata_busy_wait(ap, ATA_BUSY, 10);
5709 if (status & ATA_BUSY) {
Jeff Garzik442eacc2007-12-19 04:25:10 -05005710 ata_pio_queue_task(ap, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005711 return;
5712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 }
5714
Albert Leea1af3732006-03-25 17:50:15 +08005715 /* move the HSM */
5716 poll_next = ata_hsm_move(ap, qc, status, 1);
5717
5718 /* another command or interrupt handler
5719 * may be running at this point.
5720 */
5721 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005722 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723}
5724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 * ata_qc_new - Request an available ATA command, for queueing
5727 * @ap: Port associated with device @dev
5728 * @dev: Device from whom we request an available command structure
5729 *
5730 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005731 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 */
5733
5734static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5735{
5736 struct ata_queued_cmd *qc = NULL;
5737 unsigned int i;
5738
Tejun Heoe3180492006-05-15 20:58:09 +09005739 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005740 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005741 return NULL;
5742
Tejun Heo2ab7db12006-05-15 20:58:02 +09005743 /* the last tag is reserved for internal command. */
5744 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005745 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005746 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 break;
5748 }
5749
5750 if (qc)
5751 qc->tag = i;
5752
5753 return qc;
5754}
5755
5756/**
5757 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 * @dev: Device from whom we request an available command structure
5759 *
5760 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005761 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 */
5763
Tejun Heo3373efd2006-05-15 20:57:53 +09005764struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005766 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 struct ata_queued_cmd *qc;
5768
5769 qc = ata_qc_new(ap);
5770 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771 qc->scsicmd = NULL;
5772 qc->ap = ap;
5773 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005775 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 }
5777
5778 return qc;
5779}
5780
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781/**
5782 * ata_qc_free - free unused ata_queued_cmd
5783 * @qc: Command to complete
5784 *
5785 * Designed to free unused ata_queued_cmd object
5786 * in case something prevents using it.
5787 *
5788 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005789 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 */
5791void ata_qc_free(struct ata_queued_cmd *qc)
5792{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005793 struct ata_port *ap = qc->ap;
5794 unsigned int tag;
5795
Tejun Heoa46314742006-02-11 19:11:13 +09005796 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
Tejun Heo4ba946e2006-01-23 13:09:36 +09005798 qc->flags = 0;
5799 tag = qc->tag;
5800 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005801 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005802 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804}
5805
Tejun Heo76014422006-02-11 15:13:49 +09005806void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005808 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005809 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005810
Tejun Heoa46314742006-02-11 19:11:13 +09005811 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5812 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
5814 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5815 ata_sg_clean(qc);
5816
Tejun Heo7401abf2006-05-15 20:57:32 +09005817 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09005818 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005819 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09005820 if (!link->sactive)
5821 ap->nr_active_links--;
5822 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005823 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09005824 ap->nr_active_links--;
5825 }
5826
5827 /* clear exclusive status */
5828 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
5829 ap->excl_link == link))
5830 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09005831
Albert Lee3f3791d2005-08-16 14:25:38 +08005832 /* atapi: mark qc as inactive to prevent the interrupt handler
5833 * from completing the command twice later, before the error handler
5834 * is called. (when rc != 0 and atapi request sense is needed)
5835 */
5836 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005837 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005838
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005840 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841}
5842
Tejun Heo39599a52006-11-14 22:37:35 +09005843static void fill_result_tf(struct ata_queued_cmd *qc)
5844{
5845 struct ata_port *ap = qc->ap;
5846
Tejun Heo39599a52006-11-14 22:37:35 +09005847 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005848 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005849}
5850
Tejun Heo00115e02007-11-27 19:28:58 +09005851static void ata_verify_xfer(struct ata_queued_cmd *qc)
5852{
5853 struct ata_device *dev = qc->dev;
5854
5855 if (ata_tag_internal(qc->tag))
5856 return;
5857
5858 if (ata_is_nodata(qc->tf.protocol))
5859 return;
5860
5861 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
5862 return;
5863
5864 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
5865}
5866
Tejun Heof686bcb2006-05-15 20:58:05 +09005867/**
5868 * ata_qc_complete - Complete an active ATA command
5869 * @qc: Command to complete
5870 * @err_mask: ATA Status register contents
5871 *
5872 * Indicate to the mid and upper layers that an ATA
5873 * command has completed, with either an ok or not-ok status.
5874 *
5875 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005876 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005877 */
5878void ata_qc_complete(struct ata_queued_cmd *qc)
5879{
5880 struct ata_port *ap = qc->ap;
5881
5882 /* XXX: New EH and old EH use different mechanisms to
5883 * synchronize EH with regular execution path.
5884 *
5885 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5886 * Normal execution path is responsible for not accessing a
5887 * failed qc. libata core enforces the rule by returning NULL
5888 * from ata_qc_from_tag() for failed qcs.
5889 *
5890 * Old EH depends on ata_qc_complete() nullifying completion
5891 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5892 * not synchronize with interrupt handler. Only PIO task is
5893 * taken care of.
5894 */
5895 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09005896 struct ata_device *dev = qc->dev;
5897 struct ata_eh_info *ehi = &dev->link->eh_info;
5898
Tejun Heob51e9e52006-06-29 01:29:30 +09005899 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005900
5901 if (unlikely(qc->err_mask))
5902 qc->flags |= ATA_QCFLAG_FAILED;
5903
5904 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5905 if (!ata_tag_internal(qc->tag)) {
5906 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005907 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005908 ata_qc_schedule_eh(qc);
5909 return;
5910 }
5911 }
5912
5913 /* read result TF if requested */
5914 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005915 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005916
Tejun Heo4dbfa392007-10-25 18:22:44 +09005917 /* Some commands need post-processing after successful
5918 * completion.
5919 */
5920 switch (qc->tf.command) {
5921 case ATA_CMD_SET_FEATURES:
5922 if (qc->tf.feature != SETFEATURES_WC_ON &&
5923 qc->tf.feature != SETFEATURES_WC_OFF)
5924 break;
5925 /* fall through */
5926 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
5927 case ATA_CMD_SET_MULTI: /* multi_count changed */
5928 /* revalidate device */
5929 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
5930 ata_port_schedule_eh(ap);
5931 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005932
5933 case ATA_CMD_SLEEP:
5934 dev->flags |= ATA_DFLAG_SLEEPING;
5935 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09005936 }
5937
Tejun Heo00115e02007-11-27 19:28:58 +09005938 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
5939 ata_verify_xfer(qc);
5940
Tejun Heof686bcb2006-05-15 20:58:05 +09005941 __ata_qc_complete(qc);
5942 } else {
5943 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5944 return;
5945
5946 /* read result TF if failed or requested */
5947 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005948 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005949
5950 __ata_qc_complete(qc);
5951 }
5952}
5953
Tejun Heodedaf2b2006-05-15 21:03:43 +09005954/**
5955 * ata_qc_complete_multiple - Complete multiple qcs successfully
5956 * @ap: port in question
5957 * @qc_active: new qc_active mask
5958 * @finish_qc: LLDD callback invoked before completing a qc
5959 *
5960 * Complete in-flight commands. This functions is meant to be
5961 * called from low-level driver's interrupt routine to complete
5962 * requests normally. ap->qc_active and @qc_active is compared
5963 * and commands are completed accordingly.
5964 *
5965 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005966 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005967 *
5968 * RETURNS:
5969 * Number of completed commands on success, -errno otherwise.
5970 */
5971int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5972 void (*finish_qc)(struct ata_queued_cmd *))
5973{
5974 int nr_done = 0;
5975 u32 done_mask;
5976 int i;
5977
5978 done_mask = ap->qc_active ^ qc_active;
5979
5980 if (unlikely(done_mask & qc_active)) {
5981 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5982 "(%08x->%08x)\n", ap->qc_active, qc_active);
5983 return -EINVAL;
5984 }
5985
5986 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5987 struct ata_queued_cmd *qc;
5988
5989 if (!(done_mask & (1 << i)))
5990 continue;
5991
5992 if ((qc = ata_qc_from_tag(ap, i))) {
5993 if (finish_qc)
5994 finish_qc(qc);
5995 ata_qc_complete(qc);
5996 nr_done++;
5997 }
5998 }
5999
6000 return nr_done;
6001}
6002
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003/**
6004 * ata_qc_issue - issue taskfile to device
6005 * @qc: command to issue to device
6006 *
6007 * Prepare an ATA command to submission to device.
6008 * This includes mapping the data into a DMA-able
6009 * area, filling in the S/G table, and finally
6010 * writing the taskfile to hardware, starting the command.
6011 *
6012 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006013 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09006015void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016{
6017 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006018 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09006019 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
Tejun Heodedaf2b2006-05-15 21:03:43 +09006021 /* Make sure only one non-NCQ command is outstanding. The
6022 * check is skipped for old EH because it reuses active qc to
6023 * request ATAPI sense.
6024 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006025 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09006026
Tejun Heo1973a022007-12-05 10:36:13 +09006027 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006028 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09006029
6030 if (!link->sactive)
6031 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006032 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006033 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006034 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09006035
6036 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006037 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006038 }
6039
Tejun Heoe4a70e72006-03-31 20:36:47 +09006040 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006041 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09006042
Tejun Heof92a2632007-12-05 16:43:10 +09006043 /* We guarantee to LLDs that they will have at least one
6044 * non-zero sg if the command is a data command.
6045 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09006046 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09006047
Tejun Heo405e66b2007-11-27 19:28:53 +09006048 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09006049 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09006050 if (ata_sg_setup(qc))
6051 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Tejun Heo054a5fb2007-10-25 18:30:36 +09006053 /* if device is sleeping, schedule softreset and abort the link */
6054 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
6055 link->eh_info.action |= ATA_EH_SOFTRESET;
6056 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
6057 ata_link_abort(link);
6058 return;
6059 }
6060
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 ap->ops->qc_prep(qc);
6062
Tejun Heo8e0e6942006-03-31 20:41:11 +09006063 qc->err_mask |= ap->ops->qc_issue(qc);
6064 if (unlikely(qc->err_mask))
6065 goto err;
6066 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Tejun Heo8e436af2006-01-23 13:09:36 +09006068sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09006069 qc->err_mask |= AC_ERR_SYSTEM;
6070err:
6071 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072}
6073
6074/**
6075 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
6076 * @qc: command to issue to device
6077 *
6078 * Using various libata functions and hooks, this function
6079 * starts an ATA command. ATA commands are grouped into
6080 * classes called "protocols", and issuing each type of protocol
6081 * is slightly different.
6082 *
Edward Falk0baab862005-06-02 18:17:13 -04006083 * May be used as the qc_issue() entry in ata_port_operations.
6084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006086 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087 *
6088 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006089 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 */
6091
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006092unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093{
6094 struct ata_port *ap = qc->ap;
6095
Albert Leee50362e2005-09-27 17:39:50 +08006096 /* Use polling pio if the LLD doesn't handle
6097 * interrupt driven pio and atapi CDB interrupt.
6098 */
6099 if (ap->flags & ATA_FLAG_PIO_POLLING) {
6100 switch (qc->tf.protocol) {
6101 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08006102 case ATA_PROT_NODATA:
Tejun Heo0dc36882007-12-18 16:34:43 -05006103 case ATAPI_PROT_PIO:
6104 case ATAPI_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08006105 qc->tf.flags |= ATA_TFLAG_POLLING;
6106 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05006107 case ATAPI_PROT_DMA:
Albert Leee50362e2005-09-27 17:39:50 +08006108 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08006109 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08006110 BUG();
6111 break;
6112 default:
6113 break;
6114 }
6115 }
6116
Albert Lee312f7da2005-09-27 17:38:03 +08006117 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 ata_dev_select(ap, qc->dev->devno, 1, 0);
6119
Albert Lee312f7da2005-09-27 17:38:03 +08006120 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121 switch (qc->tf.protocol) {
6122 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08006123 if (qc->tf.flags & ATA_TFLAG_POLLING)
6124 ata_qc_set_polling(qc);
6125
Jeff Garzike5338252005-10-30 21:37:17 -05006126 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08006127 ap->hsm_task_state = HSM_ST_LAST;
6128
6129 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik442eacc2007-12-19 04:25:10 -05006130 ata_pio_queue_task(ap, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08006131
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132 break;
6133
6134 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05006135 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08006136
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
6138 ap->ops->bmdma_setup(qc); /* set up bmdma */
6139 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08006140 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 break;
6142
Albert Lee312f7da2005-09-27 17:38:03 +08006143 case ATA_PROT_PIO:
6144 if (qc->tf.flags & ATA_TFLAG_POLLING)
6145 ata_qc_set_polling(qc);
6146
Jeff Garzike5338252005-10-30 21:37:17 -05006147 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08006148
Albert Lee54f00382005-09-30 19:14:19 +08006149 if (qc->tf.flags & ATA_TFLAG_WRITE) {
6150 /* PIO data out protocol */
6151 ap->hsm_task_state = HSM_ST_FIRST;
Jeff Garzik442eacc2007-12-19 04:25:10 -05006152 ata_pio_queue_task(ap, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08006153
6154 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08006155 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08006156 */
Albert Lee312f7da2005-09-27 17:38:03 +08006157 } else {
Albert Lee54f00382005-09-30 19:14:19 +08006158 /* PIO data in protocol */
6159 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08006160
Albert Lee54f00382005-09-30 19:14:19 +08006161 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik442eacc2007-12-19 04:25:10 -05006162 ata_pio_queue_task(ap, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08006163
Albert Lee54f00382005-09-30 19:14:19 +08006164 /* if polling, ata_pio_task() handles the rest.
6165 * otherwise, interrupt handler takes over from here.
6166 */
Albert Lee312f7da2005-09-27 17:38:03 +08006167 }
6168
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 break;
6170
Tejun Heo0dc36882007-12-18 16:34:43 -05006171 case ATAPI_PROT_PIO:
6172 case ATAPI_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08006173 if (qc->tf.flags & ATA_TFLAG_POLLING)
6174 ata_qc_set_polling(qc);
6175
Jeff Garzike5338252005-10-30 21:37:17 -05006176 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05006177
Albert Lee312f7da2005-09-27 17:38:03 +08006178 ap->hsm_task_state = HSM_ST_FIRST;
6179
6180 /* send cdb by polling if no cdb interrupt */
6181 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
6182 (qc->tf.flags & ATA_TFLAG_POLLING))
Jeff Garzik442eacc2007-12-19 04:25:10 -05006183 ata_pio_queue_task(ap, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 break;
6185
Tejun Heo0dc36882007-12-18 16:34:43 -05006186 case ATAPI_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05006187 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08006188
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
6190 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08006191 ap->hsm_task_state = HSM_ST_FIRST;
6192
6193 /* send cdb by polling if no cdb interrupt */
6194 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Jeff Garzik442eacc2007-12-19 04:25:10 -05006195 ata_pio_queue_task(ap, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 break;
6197
6198 default:
6199 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006200 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 }
6202
6203 return 0;
6204}
6205
6206/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 * ata_host_intr - Handle host interrupt for given (port, task)
6208 * @ap: Port on which interrupt arrived (possibly...)
6209 * @qc: Taskfile currently active in engine
6210 *
6211 * Handle host interrupt for given queued command. Currently,
6212 * only DMA interrupts are handled. All other commands are
6213 * handled via polling with interrupts disabled (nIEN bit).
6214 *
6215 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006216 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217 *
6218 * RETURNS:
6219 * One if interrupt was handled, zero if not (shared irq).
6220 */
6221
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006222inline unsigned int ata_host_intr(struct ata_port *ap,
6223 struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006225 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08006226 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Albert Lee312f7da2005-09-27 17:38:03 +08006228 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09006229 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
Albert Lee312f7da2005-09-27 17:38:03 +08006231 /* Check whether we are expecting interrupt in this state */
6232 switch (ap->hsm_task_state) {
6233 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08006234 /* Some pre-ATAPI-4 devices assert INTRQ
6235 * at this state when ready to receive CDB.
6236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
Albert Lee312f7da2005-09-27 17:38:03 +08006238 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
Tejun Heo405e66b2007-11-27 19:28:53 +09006239 * The flag was turned on only for atapi devices. No
6240 * need to check ata_is_atapi(qc->tf.protocol) again.
Albert Lee312f7da2005-09-27 17:38:03 +08006241 */
6242 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244 break;
Albert Lee312f7da2005-09-27 17:38:03 +08006245 case HSM_ST_LAST:
6246 if (qc->tf.protocol == ATA_PROT_DMA ||
Tejun Heo0dc36882007-12-18 16:34:43 -05006247 qc->tf.protocol == ATAPI_PROT_DMA) {
Albert Lee312f7da2005-09-27 17:38:03 +08006248 /* check status of DMA engine */
6249 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006250 VPRINTK("ata%u: host_stat 0x%X\n",
6251 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252
Albert Lee312f7da2005-09-27 17:38:03 +08006253 /* if it's not our irq... */
6254 if (!(host_stat & ATA_DMA_INTR))
6255 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256
Albert Lee312f7da2005-09-27 17:38:03 +08006257 /* before we do anything else, clear DMA-Start bit */
6258 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08006259
6260 if (unlikely(host_stat & ATA_DMA_ERR)) {
6261 /* error when transfering data to/from memory */
6262 qc->err_mask |= AC_ERR_HOST_BUS;
6263 ap->hsm_task_state = HSM_ST_ERR;
6264 }
Albert Lee312f7da2005-09-27 17:38:03 +08006265 }
6266 break;
6267 case HSM_ST:
6268 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 default:
6270 goto idle_irq;
6271 }
6272
Albert Lee312f7da2005-09-27 17:38:03 +08006273 /* check altstatus */
6274 status = ata_altstatus(ap);
6275 if (status & ATA_BUSY)
6276 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
Albert Lee312f7da2005-09-27 17:38:03 +08006278 /* check main status, clearing INTRQ */
6279 status = ata_chk_status(ap);
6280 if (unlikely(status & ATA_BUSY))
6281 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Albert Lee312f7da2005-09-27 17:38:03 +08006283 /* ack bmdma irq events */
6284 ap->ops->irq_clear(ap);
6285
Albert Leebb5cb292006-03-25 17:48:02 +08006286 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09006287
6288 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
Tejun Heo0dc36882007-12-18 16:34:43 -05006289 qc->tf.protocol == ATAPI_PROT_DMA))
Tejun Heoea547632006-11-17 12:06:21 +09006290 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
6291
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 return 1; /* irq handled */
6293
6294idle_irq:
6295 ap->stats.idle_irq++;
6296
6297#ifdef ATA_IRQ_TRAP
6298 if ((ap->stats.idle_irq % 1000) == 0) {
Jeff Garzik6d32d302007-08-15 05:38:46 -04006299 ata_chk_status(ap);
6300 ap->ops->irq_clear(ap);
Tejun Heof15a1da2006-05-15 20:57:56 +09006301 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00006302 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 }
6304#endif
6305 return 0; /* irq not handled */
6306}
6307
6308/**
6309 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04006310 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04006311 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04006313 * Default interrupt handler for PCI IDE devices. Calls
6314 * ata_host_intr() for each port that is not disabled.
6315 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006317 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318 *
6319 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04006320 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321 */
6322
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006323irqreturn_t ata_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324{
Jeff Garzikcca39742006-08-24 03:19:22 -04006325 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326 unsigned int i;
6327 unsigned int handled = 0;
6328 unsigned long flags;
6329
6330 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04006331 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332
Jeff Garzikcca39742006-08-24 03:19:22 -04006333 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334 struct ata_port *ap;
6335
Jeff Garzikcca39742006-08-24 03:19:22 -04006336 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09006337 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04006338 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 struct ata_queued_cmd *qc;
6340
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006341 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08006342 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08006343 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344 handled |= ata_host_intr(ap, qc);
6345 }
6346 }
6347
Jeff Garzikcca39742006-08-24 03:19:22 -04006348 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
6350 return IRQ_RETVAL(handled);
6351}
6352
Tejun Heo34bf2172006-05-15 20:57:46 +09006353/**
6354 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09006355 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09006356 *
Tejun Heo936fd732007-08-06 18:36:23 +09006357 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09006358 *
6359 * LOCKING:
6360 * None.
6361 *
6362 * RETURNS:
6363 * 1 if SCRs are accessible, 0 otherwise.
6364 */
Tejun Heo936fd732007-08-06 18:36:23 +09006365int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006366{
Tejun Heo936fd732007-08-06 18:36:23 +09006367 struct ata_port *ap = link->ap;
6368
Tejun Heoa16abc02007-05-21 18:33:47 +02006369 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09006370}
6371
6372/**
6373 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006374 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006375 * @reg: SCR to read
6376 * @val: Place to store read value
6377 *
Tejun Heo936fd732007-08-06 18:36:23 +09006378 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006379 * guaranteed to succeed if @link is ap->link, the cable type of
6380 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006381 *
6382 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006383 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006384 *
6385 * RETURNS:
6386 * 0 on success, negative errno on failure.
6387 */
Tejun Heo936fd732007-08-06 18:36:23 +09006388int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006389{
Tejun Heo633273a32007-09-23 13:19:54 +09006390 if (ata_is_host_link(link)) {
6391 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006392
Tejun Heo633273a32007-09-23 13:19:54 +09006393 if (sata_scr_valid(link))
6394 return ap->ops->scr_read(ap, reg, val);
6395 return -EOPNOTSUPP;
6396 }
6397
6398 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006399}
6400
6401/**
6402 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006403 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006404 * @reg: SCR to write
6405 * @val: value to write
6406 *
Tejun Heo936fd732007-08-06 18:36:23 +09006407 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006408 * guaranteed to succeed if @link is ap->link, the cable type of
6409 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006410 *
6411 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006412 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006413 *
6414 * RETURNS:
6415 * 0 on success, negative errno on failure.
6416 */
Tejun Heo936fd732007-08-06 18:36:23 +09006417int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006418{
Tejun Heo633273a32007-09-23 13:19:54 +09006419 if (ata_is_host_link(link)) {
6420 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006421
Tejun Heo633273a32007-09-23 13:19:54 +09006422 if (sata_scr_valid(link))
6423 return ap->ops->scr_write(ap, reg, val);
6424 return -EOPNOTSUPP;
6425 }
6426
6427 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006428}
6429
6430/**
6431 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09006432 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006433 * @reg: SCR to write
6434 * @val: value to write
6435 *
6436 * This function is identical to sata_scr_write() except that this
6437 * function performs flush after writing to the register.
6438 *
6439 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006440 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006441 *
6442 * RETURNS:
6443 * 0 on success, negative errno on failure.
6444 */
Tejun Heo936fd732007-08-06 18:36:23 +09006445int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006446{
Tejun Heo633273a32007-09-23 13:19:54 +09006447 if (ata_is_host_link(link)) {
6448 struct ata_port *ap = link->ap;
6449 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09006450
Tejun Heo633273a32007-09-23 13:19:54 +09006451 if (sata_scr_valid(link)) {
6452 rc = ap->ops->scr_write(ap, reg, val);
6453 if (rc == 0)
6454 rc = ap->ops->scr_read(ap, reg, &val);
6455 return rc;
6456 }
6457 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09006458 }
Tejun Heo633273a32007-09-23 13:19:54 +09006459
6460 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006461}
6462
6463/**
Tejun Heo936fd732007-08-06 18:36:23 +09006464 * ata_link_online - test whether the given link is online
6465 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006466 *
Tejun Heo936fd732007-08-06 18:36:23 +09006467 * Test whether @link is online. Note that this function returns
6468 * 0 if online status of @link cannot be obtained, so
6469 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006470 *
6471 * LOCKING:
6472 * None.
6473 *
6474 * RETURNS:
6475 * 1 if the port online status is available and online.
6476 */
Tejun Heo936fd732007-08-06 18:36:23 +09006477int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006478{
6479 u32 sstatus;
6480
Tejun Heo936fd732007-08-06 18:36:23 +09006481 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6482 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006483 return 1;
6484 return 0;
6485}
6486
6487/**
Tejun Heo936fd732007-08-06 18:36:23 +09006488 * ata_link_offline - test whether the given link is offline
6489 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006490 *
Tejun Heo936fd732007-08-06 18:36:23 +09006491 * Test whether @link is offline. Note that this function
6492 * returns 0 if offline status of @link cannot be obtained, so
6493 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006494 *
6495 * LOCKING:
6496 * None.
6497 *
6498 * RETURNS:
6499 * 1 if the port offline status is available and offline.
6500 */
Tejun Heo936fd732007-08-06 18:36:23 +09006501int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006502{
6503 u32 sstatus;
6504
Tejun Heo936fd732007-08-06 18:36:23 +09006505 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6506 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006507 return 1;
6508 return 0;
6509}
Edward Falk0baab862005-06-02 18:17:13 -04006510
Tejun Heo77b08fb2006-06-24 20:30:19 +09006511int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01006512{
Tejun Heo977e6b92006-06-24 20:30:19 +09006513 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01006514 u8 cmd;
6515
6516 if (!ata_try_flush_cache(dev))
6517 return 0;
6518
Tejun Heo6fc49ad2006-11-11 20:10:45 +09006519 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01006520 cmd = ATA_CMD_FLUSH_EXT;
6521 else
6522 cmd = ATA_CMD_FLUSH;
6523
Alan Cox4f343372007-08-08 14:30:31 +01006524 /* This is wrong. On a failed flush we get back the LBA of the lost
6525 sector and we should (assuming it wasn't aborted as unknown) issue
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006526 a further flush command to continue the writeback until it
Alan Cox4f343372007-08-08 14:30:31 +01006527 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09006528 err_mask = ata_do_simple_cmd(dev, cmd);
6529 if (err_mask) {
6530 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
6531 return -EIO;
6532 }
6533
6534 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01006535}
6536
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006537#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006538static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
6539 unsigned int action, unsigned int ehi_flags,
6540 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09006541{
6542 unsigned long flags;
6543 int i, rc;
6544
Jeff Garzikcca39742006-08-24 03:19:22 -04006545 for (i = 0; i < host->n_ports; i++) {
6546 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09006547 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09006548
6549 /* Previous resume operation might still be in
6550 * progress. Wait for PM_PENDING to clear.
6551 */
6552 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
6553 ata_port_wait_eh(ap);
6554 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6555 }
6556
6557 /* request PM ops to EH */
6558 spin_lock_irqsave(ap->lock, flags);
6559
6560 ap->pm_mesg = mesg;
6561 if (wait) {
6562 rc = 0;
6563 ap->pm_result = &rc;
6564 }
6565
6566 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09006567 __ata_port_for_each_link(link, ap) {
6568 link->eh_info.action |= action;
6569 link->eh_info.flags |= ehi_flags;
6570 }
Tejun Heo500530f2006-07-03 16:07:27 +09006571
6572 ata_port_schedule_eh(ap);
6573
6574 spin_unlock_irqrestore(ap->lock, flags);
6575
6576 /* wait and check result */
6577 if (wait) {
6578 ata_port_wait_eh(ap);
6579 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6580 if (rc)
6581 return rc;
6582 }
6583 }
6584
6585 return 0;
6586}
6587
6588/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006589 * ata_host_suspend - suspend host
6590 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09006591 * @mesg: PM message
6592 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006593 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006594 * function requests EH to perform PM operations and waits for EH
6595 * to finish.
6596 *
6597 * LOCKING:
6598 * Kernel thread context (may sleep).
6599 *
6600 * RETURNS:
6601 * 0 on success, -errno on failure.
6602 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006603int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006604{
Tejun Heo9666f402007-05-04 21:27:47 +02006605 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006606
Kristen Carlson Accardica773292007-10-25 00:58:59 -04006607 /*
6608 * disable link pm on all ports before requesting
6609 * any pm activity
6610 */
6611 ata_lpm_enable(host);
6612
Jeff Garzikcca39742006-08-24 03:19:22 -04006613 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05006614 if (rc == 0)
6615 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09006616 return rc;
6617}
6618
6619/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006620 * ata_host_resume - resume host
6621 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09006622 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006623 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006624 * function requests EH to perform PM operations and returns.
6625 * Note that all resume operations are performed parallely.
6626 *
6627 * LOCKING:
6628 * Kernel thread context (may sleep).
6629 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006630void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006631{
Jeff Garzikcca39742006-08-24 03:19:22 -04006632 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
6633 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05006634 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04006635
6636 /* reenable link pm */
6637 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09006638}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006639#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006640
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006641/**
6642 * ata_port_start - Set port up for dma.
6643 * @ap: Port to initialize
6644 *
6645 * Called just after data structures for each port are
6646 * initialized. Allocates space for PRD table.
6647 *
6648 * May be used as the port_start() entry in ata_port_operations.
6649 *
6650 * LOCKING:
6651 * Inherited from caller.
6652 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006653int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654{
Brian King2f1f6102006-03-23 17:30:15 -06006655 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656
Tejun Heof0d36ef2007-01-20 16:00:28 +09006657 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6658 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 if (!ap->prd)
6660 return -ENOMEM;
6661
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 return 0;
6663}
6664
Edward Falk0baab862005-06-02 18:17:13 -04006665/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006666 * ata_dev_init - Initialize an ata_device structure
6667 * @dev: Device structure to initialize
6668 *
6669 * Initialize @dev in preparation for probing.
6670 *
6671 * LOCKING:
6672 * Inherited from caller.
6673 */
6674void ata_dev_init(struct ata_device *dev)
6675{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006676 struct ata_link *link = dev->link;
6677 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006678 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006679
Tejun Heo5a04bf42006-05-31 18:27:38 +09006680 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006681 link->sata_spd_limit = link->hw_sata_spd_limit;
6682 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006683
Tejun Heo72fa4b72006-05-31 18:27:32 +09006684 /* High bits of dev->flags are used to record warm plug
6685 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006686 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006687 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006688 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006689 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006690 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006691 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006692
6693 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6694 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006695 dev->pio_mask = UINT_MAX;
6696 dev->mwdma_mask = UINT_MAX;
6697 dev->udma_mask = UINT_MAX;
6698}
6699
6700/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006701 * ata_link_init - Initialize an ata_link structure
6702 * @ap: ATA port link is attached to
6703 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006704 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006705 *
6706 * Initialize @link.
6707 *
6708 * LOCKING:
6709 * Kernel thread context (may sleep)
6710 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006711void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006712{
6713 int i;
6714
6715 /* clear everything except for devices */
6716 memset(link, 0, offsetof(struct ata_link, device[0]));
6717
6718 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006719 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006720 link->active_tag = ATA_TAG_POISON;
6721 link->hw_sata_spd_limit = UINT_MAX;
6722
6723 /* can't use iterator, ap isn't initialized yet */
6724 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6725 struct ata_device *dev = &link->device[i];
6726
6727 dev->link = link;
6728 dev->devno = dev - link->device;
6729 ata_dev_init(dev);
6730 }
6731}
6732
6733/**
6734 * sata_link_init_spd - Initialize link->sata_spd_limit
6735 * @link: Link to configure sata_spd_limit for
6736 *
6737 * Initialize @link->[hw_]sata_spd_limit to the currently
6738 * configured value.
6739 *
6740 * LOCKING:
6741 * Kernel thread context (may sleep).
6742 *
6743 * RETURNS:
6744 * 0 on success, -errno on failure.
6745 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006746int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006747{
Tejun Heo33267322008-02-13 09:15:09 +09006748 u32 scontrol;
6749 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006750 int rc;
6751
6752 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6753 if (rc)
6754 return rc;
6755
6756 spd = (scontrol >> 4) & 0xf;
6757 if (spd)
6758 link->hw_sata_spd_limit &= (1 << spd) - 1;
6759
Tejun Heo33267322008-02-13 09:15:09 +09006760 ata_force_spd_limit(link);
6761
Tejun Heo4fb37a22007-08-06 18:36:23 +09006762 link->sata_spd_limit = link->hw_sata_spd_limit;
6763
6764 return 0;
6765}
6766
6767/**
Tejun Heof3187192007-04-17 23:44:07 +09006768 * ata_port_alloc - allocate and initialize basic ATA port resources
6769 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 *
Tejun Heof3187192007-04-17 23:44:07 +09006771 * Allocate and initialize basic ATA port resources.
6772 *
6773 * RETURNS:
6774 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006775 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006777 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778 */
Tejun Heof3187192007-04-17 23:44:07 +09006779struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780{
Tejun Heof3187192007-04-17 23:44:07 +09006781 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782
Tejun Heof3187192007-04-17 23:44:07 +09006783 DPRINTK("ENTER\n");
6784
6785 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6786 if (!ap)
6787 return NULL;
6788
Tejun Heof4d6d002007-05-01 11:50:15 +02006789 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006790 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006791 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006792 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006794 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006795 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006797
6798#if defined(ATA_VERBOSE_DEBUG)
6799 /* turn on all debugging levels */
6800 ap->msg_enable = 0x00FF;
6801#elif defined(ATA_DEBUG)
6802 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 +09006803#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006804 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006805#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806
Jeff Garzik442eacc2007-12-19 04:25:10 -05006807 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
David Howells65f27f32006-11-22 14:55:48 +00006808 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6809 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006810 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006811 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006812 init_timer_deferrable(&ap->fastdrain_timer);
6813 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6814 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815
Tejun Heo838df622006-05-15 20:57:44 +09006816 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006817
Tejun Heo89898052007-08-06 18:36:23 +09006818 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819
6820#ifdef ATA_IRQ_TRAP
6821 ap->stats.unhandled_irq = 1;
6822 ap->stats.idle_irq = 1;
6823#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825}
6826
Tejun Heof0d36ef2007-01-20 16:00:28 +09006827static void ata_host_release(struct device *gendev, void *res)
6828{
6829 struct ata_host *host = dev_get_drvdata(gendev);
6830 int i;
6831
6832 for (i = 0; i < host->n_ports; i++) {
6833 struct ata_port *ap = host->ports[i];
6834
Tejun Heoecef7252007-04-17 23:44:06 +09006835 if (!ap)
6836 continue;
6837
Tejun Heo49114872007-04-17 23:44:06 +09006838 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006839 scsi_host_put(ap->scsi_host);
6840
Tejun Heo633273a32007-09-23 13:19:54 +09006841 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09006842 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006843 host->ports[i] = NULL;
6844 }
6845
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006846 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006847}
6848
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849/**
Tejun Heof3187192007-04-17 23:44:07 +09006850 * ata_host_alloc - allocate and init basic ATA host resources
6851 * @dev: generic device this host is associated with
6852 * @max_ports: maximum number of ATA ports associated with this host
6853 *
6854 * Allocate and initialize basic ATA host resources. LLD calls
6855 * this function to allocate a host, initializes it fully and
6856 * attaches it using ata_host_register().
6857 *
6858 * @max_ports ports are allocated and host->n_ports is
6859 * initialized to @max_ports. The caller is allowed to decrease
6860 * host->n_ports before calling ata_host_register(). The unused
6861 * ports will be automatically freed on registration.
6862 *
6863 * RETURNS:
6864 * Allocate ATA host on success, NULL on failure.
6865 *
6866 * LOCKING:
6867 * Inherited from calling layer (may sleep).
6868 */
6869struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6870{
6871 struct ata_host *host;
6872 size_t sz;
6873 int i;
6874
6875 DPRINTK("ENTER\n");
6876
6877 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6878 return NULL;
6879
6880 /* alloc a container for our list of ATA ports (buses) */
6881 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6882 /* alloc a container for our list of ATA ports (buses) */
6883 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6884 if (!host)
6885 goto err_out;
6886
6887 devres_add(dev, host);
6888 dev_set_drvdata(dev, host);
6889
6890 spin_lock_init(&host->lock);
6891 host->dev = dev;
6892 host->n_ports = max_ports;
6893
6894 /* allocate ports bound to this host */
6895 for (i = 0; i < max_ports; i++) {
6896 struct ata_port *ap;
6897
6898 ap = ata_port_alloc(host);
6899 if (!ap)
6900 goto err_out;
6901
6902 ap->port_no = i;
6903 host->ports[i] = ap;
6904 }
6905
6906 devres_remove_group(dev, NULL);
6907 return host;
6908
6909 err_out:
6910 devres_release_group(dev, NULL);
6911 return NULL;
6912}
6913
6914/**
Tejun Heof5cda252007-04-17 23:44:07 +09006915 * ata_host_alloc_pinfo - alloc host and init with port_info array
6916 * @dev: generic device this host is associated with
6917 * @ppi: array of ATA port_info to initialize host with
6918 * @n_ports: number of ATA ports attached to this host
6919 *
6920 * Allocate ATA host and initialize with info from @ppi. If NULL
6921 * terminated, @ppi may contain fewer entries than @n_ports. The
6922 * last entry will be used for the remaining ports.
6923 *
6924 * RETURNS:
6925 * Allocate ATA host on success, NULL on failure.
6926 *
6927 * LOCKING:
6928 * Inherited from calling layer (may sleep).
6929 */
6930struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6931 const struct ata_port_info * const * ppi,
6932 int n_ports)
6933{
6934 const struct ata_port_info *pi;
6935 struct ata_host *host;
6936 int i, j;
6937
6938 host = ata_host_alloc(dev, n_ports);
6939 if (!host)
6940 return NULL;
6941
6942 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6943 struct ata_port *ap = host->ports[i];
6944
6945 if (ppi[j])
6946 pi = ppi[j++];
6947
6948 ap->pio_mask = pi->pio_mask;
6949 ap->mwdma_mask = pi->mwdma_mask;
6950 ap->udma_mask = pi->udma_mask;
6951 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09006952 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09006953 ap->ops = pi->port_ops;
6954
6955 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6956 host->ops = pi->port_ops;
6957 if (!host->private_data && pi->private_data)
6958 host->private_data = pi->private_data;
6959 }
6960
6961 return host;
6962}
6963
Tejun Heo32ebbc02007-11-08 13:09:00 +09006964static void ata_host_stop(struct device *gendev, void *res)
6965{
6966 struct ata_host *host = dev_get_drvdata(gendev);
6967 int i;
6968
6969 WARN_ON(!(host->flags & ATA_HOST_STARTED));
6970
6971 for (i = 0; i < host->n_ports; i++) {
6972 struct ata_port *ap = host->ports[i];
6973
6974 if (ap->ops->port_stop)
6975 ap->ops->port_stop(ap);
6976 }
6977
6978 if (host->ops->host_stop)
6979 host->ops->host_stop(host);
6980}
6981
Tejun Heof5cda252007-04-17 23:44:07 +09006982/**
Tejun Heoecef7252007-04-17 23:44:06 +09006983 * ata_host_start - start and freeze ports of an ATA host
6984 * @host: ATA host to start ports for
6985 *
6986 * Start and then freeze ports of @host. Started status is
6987 * recorded in host->flags, so this function can be called
6988 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006989 * once. If host->ops isn't initialized yet, its set to the
6990 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006991 *
6992 * LOCKING:
6993 * Inherited from calling layer (may sleep).
6994 *
6995 * RETURNS:
6996 * 0 if all ports are started successfully, -errno otherwise.
6997 */
6998int ata_host_start(struct ata_host *host)
6999{
Tejun Heo32ebbc02007-11-08 13:09:00 +09007000 int have_stop = 0;
7001 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09007002 int i, rc;
7003
7004 if (host->flags & ATA_HOST_STARTED)
7005 return 0;
7006
7007 for (i = 0; i < host->n_ports; i++) {
7008 struct ata_port *ap = host->ports[i];
7009
Tejun Heof3187192007-04-17 23:44:07 +09007010 if (!host->ops && !ata_port_is_dummy(ap))
7011 host->ops = ap->ops;
7012
Tejun Heo32ebbc02007-11-08 13:09:00 +09007013 if (ap->ops->port_stop)
7014 have_stop = 1;
7015 }
7016
7017 if (host->ops->host_stop)
7018 have_stop = 1;
7019
7020 if (have_stop) {
7021 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
7022 if (!start_dr)
7023 return -ENOMEM;
7024 }
7025
7026 for (i = 0; i < host->n_ports; i++) {
7027 struct ata_port *ap = host->ports[i];
7028
Tejun Heoecef7252007-04-17 23:44:06 +09007029 if (ap->ops->port_start) {
7030 rc = ap->ops->port_start(ap);
7031 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00007032 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08007033 dev_printk(KERN_ERR, host->dev,
7034 "failed to start port %d "
7035 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09007036 goto err_out;
7037 }
7038 }
Tejun Heoecef7252007-04-17 23:44:06 +09007039 ata_eh_freeze_port(ap);
7040 }
7041
Tejun Heo32ebbc02007-11-08 13:09:00 +09007042 if (start_dr)
7043 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09007044 host->flags |= ATA_HOST_STARTED;
7045 return 0;
7046
7047 err_out:
7048 while (--i >= 0) {
7049 struct ata_port *ap = host->ports[i];
7050
7051 if (ap->ops->port_stop)
7052 ap->ops->port_stop(ap);
7053 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09007054 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09007055 return rc;
7056}
7057
7058/**
Jeff Garzikcca39742006-08-24 03:19:22 -04007059 * ata_sas_host_init - Initialize a host struct
7060 * @host: host to initialize
7061 * @dev: device host is attached to
7062 * @flags: host flags
7063 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05007064 *
7065 * LOCKING:
7066 * PCI/etc. bus probe sem.
7067 *
7068 */
Tejun Heof3187192007-04-17 23:44:07 +09007069/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04007070void ata_host_init(struct ata_host *host, struct device *dev,
7071 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05007072{
Jeff Garzikcca39742006-08-24 03:19:22 -04007073 spin_lock_init(&host->lock);
7074 host->dev = dev;
7075 host->flags = flags;
7076 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05007077}
7078
7079/**
Tejun Heof3187192007-04-17 23:44:07 +09007080 * ata_host_register - register initialized ATA host
7081 * @host: ATA host to register
7082 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04007083 *
Tejun Heof3187192007-04-17 23:44:07 +09007084 * Register initialized ATA host. @host is allocated using
7085 * ata_host_alloc() and fully initialized by LLD. This function
7086 * starts ports, registers @host with ATA and SCSI layers and
7087 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088 *
7089 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09007090 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091 *
7092 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09007093 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094 */
Tejun Heof3187192007-04-17 23:44:07 +09007095int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096{
Tejun Heof3187192007-04-17 23:44:07 +09007097 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098
Tejun Heof3187192007-04-17 23:44:07 +09007099 /* host must have been started */
7100 if (!(host->flags & ATA_HOST_STARTED)) {
7101 dev_printk(KERN_ERR, host->dev,
7102 "BUG: trying to register unstarted host\n");
7103 WARN_ON(1);
7104 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01007105 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09007106
Tejun Heof3187192007-04-17 23:44:07 +09007107 /* Blow away unused ports. This happens when LLD can't
7108 * determine the exact number of ports to allocate at
7109 * allocation time.
7110 */
7111 for (i = host->n_ports; host->ports[i]; i++)
7112 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113
Tejun Heof3187192007-04-17 23:44:07 +09007114 /* give ports names and add SCSI hosts */
7115 for (i = 0; i < host->n_ports; i++)
7116 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09007117
Tejun Heof3187192007-04-17 23:44:07 +09007118 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09007119 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09007120 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09007121
Tejun Heofafbae82007-05-15 03:28:16 +09007122 /* associate with ACPI nodes */
7123 ata_acpi_associate(host);
7124
Tejun Heof3187192007-04-17 23:44:07 +09007125 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04007126 for (i = 0; i < host->n_ports; i++) {
7127 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09007128 unsigned long xfer_mask;
7129
7130 /* set SATA cable type if still unset */
7131 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
7132 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133
Tejun Heo5a04bf42006-05-31 18:27:38 +09007134 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09007135 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09007136
Tejun Heocbcdd872007-08-18 13:14:55 +09007137 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09007138 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
7139 ap->udma_mask);
7140
Tejun Heoabf6e8e2007-10-09 14:57:25 +09007141 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09007142 ata_port_printk(ap, KERN_INFO,
7143 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02007144 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09007145 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09007146 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09007147 ata_ehi_clear_desc(&ap->link.eh_info);
7148 } else
Tejun Heof3187192007-04-17 23:44:07 +09007149 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
7150 }
7151
7152 /* perform each probe synchronously */
7153 DPRINTK("probe begin\n");
7154 for (i = 0; i < host->n_ports; i++) {
7155 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09007156
7157 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09007158 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09007159 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09007160 unsigned long flags;
7161
7162 ata_port_probe(ap);
7163
7164 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007165 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09007166
Tejun Heof58229f2007-08-06 18:36:23 +09007167 ehi->probe_mask =
7168 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09007169 ehi->action |= ATA_EH_SOFTRESET;
7170 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09007171
Tejun Heof4d6d002007-05-01 11:50:15 +02007172 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09007173 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09007174 ata_port_schedule_eh(ap);
7175
Jeff Garzikba6a1302006-06-22 23:46:10 -04007176 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09007177
7178 /* wait for EH to finish */
7179 ata_port_wait_eh(ap);
7180 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09007181 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09007182 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09007183 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09007184
7185 if (rc) {
7186 /* FIXME: do something useful here?
7187 * Current libata behavior will
7188 * tear down everything when
7189 * the module is removed
7190 * or the h/w is unplugged.
7191 */
7192 }
7193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 }
7195
7196 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05007197 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04007198 for (i = 0; i < host->n_ports; i++) {
7199 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200
Tejun Heo1ae46312007-07-16 14:29:40 +09007201 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04007202 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 }
7204
Tejun Heof3187192007-04-17 23:44:07 +09007205 return 0;
7206}
7207
7208/**
Tejun Heof5cda252007-04-17 23:44:07 +09007209 * ata_host_activate - start host, request IRQ and register it
7210 * @host: target ATA host
7211 * @irq: IRQ to request
7212 * @irq_handler: irq_handler used when requesting IRQ
7213 * @irq_flags: irq_flags used when requesting IRQ
7214 * @sht: scsi_host_template to use when registering the host
7215 *
7216 * After allocating an ATA host and initializing it, most libata
7217 * LLDs perform three steps to activate the host - start host,
7218 * request IRQ and register it. This helper takes necessasry
7219 * arguments and performs the three steps in one go.
7220 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09007221 * An invalid IRQ skips the IRQ registration and expects the host to
7222 * have set polling mode on the port. In this case, @irq_handler
7223 * should be NULL.
7224 *
Tejun Heof5cda252007-04-17 23:44:07 +09007225 * LOCKING:
7226 * Inherited from calling layer (may sleep).
7227 *
7228 * RETURNS:
7229 * 0 on success, -errno otherwise.
7230 */
7231int ata_host_activate(struct ata_host *host, int irq,
7232 irq_handler_t irq_handler, unsigned long irq_flags,
7233 struct scsi_host_template *sht)
7234{
Tejun Heocbcdd872007-08-18 13:14:55 +09007235 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09007236
7237 rc = ata_host_start(host);
7238 if (rc)
7239 return rc;
7240
Paul Mundt3d46b2e2007-11-08 11:14:56 +09007241 /* Special case for polling mode */
7242 if (!irq) {
7243 WARN_ON(irq_handler);
7244 return ata_host_register(host, sht);
7245 }
7246
Tejun Heof5cda252007-04-17 23:44:07 +09007247 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
7248 dev_driver_string(host->dev), host);
7249 if (rc)
7250 return rc;
7251
Tejun Heocbcdd872007-08-18 13:14:55 +09007252 for (i = 0; i < host->n_ports; i++)
7253 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09007254
Tejun Heof5cda252007-04-17 23:44:07 +09007255 rc = ata_host_register(host, sht);
7256 /* if failed, just free the IRQ and leave ports alone */
7257 if (rc)
7258 devm_free_irq(host->dev, irq, host);
7259
7260 return rc;
7261}
7262
7263/**
Tejun Heo720ba122006-05-31 18:28:13 +09007264 * ata_port_detach - Detach ATA port in prepration of device removal
7265 * @ap: ATA port to be detached
7266 *
7267 * Detach all ATA devices and the associated SCSI devices of @ap;
7268 * then, remove the associated SCSI host. @ap is guaranteed to
7269 * be quiescent on return from this function.
7270 *
7271 * LOCKING:
7272 * Kernel thread context (may sleep).
7273 */
Adrian Bunk741b7762007-10-24 18:23:06 +02007274static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09007275{
7276 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09007277 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09007278 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09007279
7280 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09007281 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09007282
7283 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007284 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09007285 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04007286 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007287
7288 ata_port_wait_eh(ap);
7289
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09007290 /* EH is now guaranteed to see UNLOADING - EH context belongs
7291 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09007292 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09007293 ata_port_for_each_link(link, ap) {
7294 ata_link_for_each_dev(dev, link)
7295 ata_dev_disable(dev);
7296 }
Tejun Heo720ba122006-05-31 18:28:13 +09007297
Tejun Heo720ba122006-05-31 18:28:13 +09007298 /* Final freeze & EH. All in-flight commands are aborted. EH
7299 * will be skipped and retrials will be terminated with bad
7300 * target.
7301 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007302 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007303 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007304 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007305
7306 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07007307 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09007308
Tejun Heoc3cf30a2006-08-05 03:59:11 +09007309 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09007310 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04007311 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09007312}
7313
7314/**
Tejun Heo0529c152007-01-20 16:00:26 +09007315 * ata_host_detach - Detach all ports of an ATA host
7316 * @host: Host to detach
7317 *
7318 * Detach all ports of @host.
7319 *
7320 * LOCKING:
7321 * Kernel thread context (may sleep).
7322 */
7323void ata_host_detach(struct ata_host *host)
7324{
7325 int i;
7326
7327 for (i = 0; i < host->n_ports; i++)
7328 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09007329
7330 /* the host is dead now, dissociate ACPI */
7331 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09007332}
7333
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334/**
7335 * ata_std_ports - initialize ioaddr with standard port offsets.
7336 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04007337 *
7338 * Utility function which initializes data_addr, error_addr,
7339 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
7340 * device_addr, status_addr, and command_addr to standard offsets
7341 * relative to cmd_addr.
7342 *
7343 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344 */
Edward Falk0baab862005-06-02 18:17:13 -04007345
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346void ata_std_ports(struct ata_ioports *ioaddr)
7347{
7348 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
7349 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
7350 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
7351 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
7352 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
7353 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
7354 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
7355 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
7356 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
7357 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
7358}
7359
Edward Falk0baab862005-06-02 18:17:13 -04007360
Jeff Garzik374b1872005-08-30 05:42:52 -04007361#ifdef CONFIG_PCI
7362
Edward Falk0baab862005-06-02 18:17:13 -04007363/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364 * ata_pci_remove_one - PCI layer callback for device removal
7365 * @pdev: PCI device that was removed
7366 *
Tejun Heob878ca52007-01-20 16:00:28 +09007367 * PCI layer indicates to libata via this hook that hot-unplug or
7368 * module unload event has occurred. Detach all ports. Resource
7369 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 *
7371 * LOCKING:
7372 * Inherited from PCI layer (may sleep).
7373 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09007374void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375{
Jeff Garzik28555682007-10-11 17:12:35 -04007376 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04007377 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378
Tejun Heob878ca52007-01-20 16:00:28 +09007379 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380}
7381
7382/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04007383int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384{
7385 unsigned long tmp = 0;
7386
7387 switch (bits->width) {
7388 case 1: {
7389 u8 tmp8 = 0;
7390 pci_read_config_byte(pdev, bits->reg, &tmp8);
7391 tmp = tmp8;
7392 break;
7393 }
7394 case 2: {
7395 u16 tmp16 = 0;
7396 pci_read_config_word(pdev, bits->reg, &tmp16);
7397 tmp = tmp16;
7398 break;
7399 }
7400 case 4: {
7401 u32 tmp32 = 0;
7402 pci_read_config_dword(pdev, bits->reg, &tmp32);
7403 tmp = tmp32;
7404 break;
7405 }
7406
7407 default:
7408 return -EINVAL;
7409 }
7410
7411 tmp &= bits->mask;
7412
7413 return (tmp == bits->val) ? 1 : 0;
7414}
Jens Axboe9b847542006-01-06 09:28:07 +01007415
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007416#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09007417void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01007418{
7419 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09007420 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09007421
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01007422 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09007423 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01007424}
7425
Tejun Heo553c4aa2006-12-26 19:39:50 +09007426int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01007427{
Tejun Heo553c4aa2006-12-26 19:39:50 +09007428 int rc;
7429
Jens Axboe9b847542006-01-06 09:28:07 +01007430 pci_set_power_state(pdev, PCI_D0);
7431 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007432
Tejun Heob878ca52007-01-20 16:00:28 +09007433 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007434 if (rc) {
7435 dev_printk(KERN_ERR, &pdev->dev,
7436 "failed to enable device after resume (%d)\n", rc);
7437 return rc;
7438 }
7439
Jens Axboe9b847542006-01-06 09:28:07 +01007440 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007441 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09007442}
7443
Tejun Heo3c5100c2006-07-26 16:58:33 +09007444int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09007445{
Jeff Garzikcca39742006-08-24 03:19:22 -04007446 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09007447 int rc = 0;
7448
Jeff Garzikcca39742006-08-24 03:19:22 -04007449 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007450 if (rc)
7451 return rc;
7452
Tejun Heo3c5100c2006-07-26 16:58:33 +09007453 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007454
7455 return 0;
7456}
7457
7458int ata_pci_device_resume(struct pci_dev *pdev)
7459{
Jeff Garzikcca39742006-08-24 03:19:22 -04007460 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007461 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09007462
Tejun Heo553c4aa2006-12-26 19:39:50 +09007463 rc = ata_pci_device_do_resume(pdev);
7464 if (rc == 0)
7465 ata_host_resume(host);
7466 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01007467}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007468#endif /* CONFIG_PM */
7469
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470#endif /* CONFIG_PCI */
7471
Tejun Heo33267322008-02-13 09:15:09 +09007472static int __init ata_parse_force_one(char **cur,
7473 struct ata_force_ent *force_ent,
7474 const char **reason)
7475{
7476 /* FIXME: Currently, there's no way to tag init const data and
7477 * using __initdata causes build failure on some versions of
7478 * gcc. Once __initdataconst is implemented, add const to the
7479 * following structure.
7480 */
7481 static struct ata_force_param force_tbl[] __initdata = {
7482 { "40c", .cbl = ATA_CBL_PATA40 },
7483 { "80c", .cbl = ATA_CBL_PATA80 },
7484 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
7485 { "unk", .cbl = ATA_CBL_PATA_UNK },
7486 { "ign", .cbl = ATA_CBL_PATA_IGN },
7487 { "sata", .cbl = ATA_CBL_SATA },
7488 { "1.5Gbps", .spd_limit = 1 },
7489 { "3.0Gbps", .spd_limit = 2 },
7490 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
7491 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
7492 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
7493 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
7494 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
7495 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
7496 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
7497 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
7498 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
7499 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
7500 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
7501 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
7502 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
7503 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
7504 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7505 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7506 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7507 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7508 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7509 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7510 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7511 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7512 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7513 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7514 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7515 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7516 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7517 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7518 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7519 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7520 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7521 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7522 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7523 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7524 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7525 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
7526 };
7527 char *start = *cur, *p = *cur;
7528 char *id, *val, *endp;
7529 const struct ata_force_param *match_fp = NULL;
7530 int nr_matches = 0, i;
7531
7532 /* find where this param ends and update *cur */
7533 while (*p != '\0' && *p != ',')
7534 p++;
7535
7536 if (*p == '\0')
7537 *cur = p;
7538 else
7539 *cur = p + 1;
7540
7541 *p = '\0';
7542
7543 /* parse */
7544 p = strchr(start, ':');
7545 if (!p) {
7546 val = strstrip(start);
7547 goto parse_val;
7548 }
7549 *p = '\0';
7550
7551 id = strstrip(start);
7552 val = strstrip(p + 1);
7553
7554 /* parse id */
7555 p = strchr(id, '.');
7556 if (p) {
7557 *p++ = '\0';
7558 force_ent->device = simple_strtoul(p, &endp, 10);
7559 if (p == endp || *endp != '\0') {
7560 *reason = "invalid device";
7561 return -EINVAL;
7562 }
7563 }
7564
7565 force_ent->port = simple_strtoul(id, &endp, 10);
7566 if (p == endp || *endp != '\0') {
7567 *reason = "invalid port/link";
7568 return -EINVAL;
7569 }
7570
7571 parse_val:
7572 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
7573 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
7574 const struct ata_force_param *fp = &force_tbl[i];
7575
7576 if (strncasecmp(val, fp->name, strlen(val)))
7577 continue;
7578
7579 nr_matches++;
7580 match_fp = fp;
7581
7582 if (strcasecmp(val, fp->name) == 0) {
7583 nr_matches = 1;
7584 break;
7585 }
7586 }
7587
7588 if (!nr_matches) {
7589 *reason = "unknown value";
7590 return -EINVAL;
7591 }
7592 if (nr_matches > 1) {
7593 *reason = "ambigious value";
7594 return -EINVAL;
7595 }
7596
7597 force_ent->param = *match_fp;
7598
7599 return 0;
7600}
7601
7602static void __init ata_parse_force_param(void)
7603{
7604 int idx = 0, size = 1;
7605 int last_port = -1, last_device = -1;
7606 char *p, *cur, *next;
7607
7608 /* calculate maximum number of params and allocate force_tbl */
7609 for (p = ata_force_param_buf; *p; p++)
7610 if (*p == ',')
7611 size++;
7612
7613 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
7614 if (!ata_force_tbl) {
7615 printk(KERN_WARNING "ata: failed to extend force table, "
7616 "libata.force ignored\n");
7617 return;
7618 }
7619
7620 /* parse and populate the table */
7621 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
7622 const char *reason = "";
7623 struct ata_force_ent te = { .port = -1, .device = -1 };
7624
7625 next = cur;
7626 if (ata_parse_force_one(&next, &te, &reason)) {
7627 printk(KERN_WARNING "ata: failed to parse force "
7628 "parameter \"%s\" (%s)\n",
7629 cur, reason);
7630 continue;
7631 }
7632
7633 if (te.port == -1) {
7634 te.port = last_port;
7635 te.device = last_device;
7636 }
7637
7638 ata_force_tbl[idx++] = te;
7639
7640 last_port = te.port;
7641 last_device = te.device;
7642 }
7643
7644 ata_force_tbl_size = idx;
7645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647static int __init ata_init(void)
7648{
Andrew Mortona8601e52006-06-25 01:36:52 -07007649 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09007650
7651 ata_parse_force_param();
7652
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653 ata_wq = create_workqueue("ata");
7654 if (!ata_wq)
7655 return -ENOMEM;
7656
Tejun Heo453b07a2006-05-31 18:27:42 +09007657 ata_aux_wq = create_singlethread_workqueue("ata_aux");
7658 if (!ata_aux_wq) {
7659 destroy_workqueue(ata_wq);
7660 return -ENOMEM;
7661 }
7662
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
7664 return 0;
7665}
7666
7667static void __exit ata_exit(void)
7668{
Tejun Heo33267322008-02-13 09:15:09 +09007669 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09007671 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672}
7673
Brian Kinga4625082006-11-13 16:32:36 -06007674subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675module_exit(ata_exit);
7676
Jeff Garzik67846b32005-10-05 02:58:32 -04007677static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07007678static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04007679
7680int ata_ratelimit(void)
7681{
7682 int rc;
7683 unsigned long flags;
7684
7685 spin_lock_irqsave(&ata_ratelimit_lock, flags);
7686
7687 if (time_after(jiffies, ratelimit_time)) {
7688 rc = 1;
7689 ratelimit_time = jiffies + (HZ/5);
7690 } else
7691 rc = 0;
7692
7693 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
7694
7695 return rc;
7696}
7697
Tejun Heoc22daff2006-04-11 22:22:29 +09007698/**
7699 * ata_wait_register - wait until register value changes
7700 * @reg: IO-mapped register
7701 * @mask: Mask to apply to read register value
7702 * @val: Wait condition
7703 * @interval_msec: polling interval in milliseconds
7704 * @timeout_msec: timeout in milliseconds
7705 *
7706 * Waiting for some bits of register to change is a common
7707 * operation for ATA controllers. This function reads 32bit LE
7708 * IO-mapped register @reg and tests for the following condition.
7709 *
7710 * (*@reg & mask) != val
7711 *
7712 * If the condition is met, it returns; otherwise, the process is
7713 * repeated after @interval_msec until timeout.
7714 *
7715 * LOCKING:
7716 * Kernel thread context (may sleep)
7717 *
7718 * RETURNS:
7719 * The final register value.
7720 */
7721u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
7722 unsigned long interval_msec,
7723 unsigned long timeout_msec)
7724{
7725 unsigned long timeout;
7726 u32 tmp;
7727
7728 tmp = ioread32(reg);
7729
7730 /* Calculate timeout _after_ the first read to make sure
7731 * preceding writes reach the controller before starting to
7732 * eat away the timeout.
7733 */
7734 timeout = jiffies + (timeout_msec * HZ) / 1000;
7735
7736 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
7737 msleep(interval_msec);
7738 tmp = ioread32(reg);
7739 }
7740
7741 return tmp;
7742}
7743
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09007745 * Dummy port_ops
7746 */
7747static void ata_dummy_noret(struct ata_port *ap) { }
7748static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
7749static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
7750
7751static u8 ata_dummy_check_status(struct ata_port *ap)
7752{
7753 return ATA_DRDY;
7754}
7755
7756static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
7757{
7758 return AC_ERR_SYSTEM;
7759}
7760
7761const struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09007762 .check_status = ata_dummy_check_status,
7763 .check_altstatus = ata_dummy_check_status,
7764 .dev_select = ata_noop_dev_select,
7765 .qc_prep = ata_noop_qc_prep,
7766 .qc_issue = ata_dummy_qc_issue,
7767 .freeze = ata_dummy_noret,
7768 .thaw = ata_dummy_noret,
7769 .error_handler = ata_dummy_noret,
7770 .post_internal_cmd = ata_dummy_qc_noret,
7771 .irq_clear = ata_dummy_noret,
7772 .port_start = ata_dummy_ret0,
7773 .port_stop = ata_dummy_noret,
7774};
7775
Tejun Heo21b0ad42007-04-17 23:44:07 +09007776const struct ata_port_info ata_dummy_port_info = {
7777 .port_ops = &ata_dummy_port_ops,
7778};
7779
Tejun Heodd5b06c2006-08-10 16:59:12 +09007780/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781 * libata is essentially a library of internal helper functions for
7782 * low-level ATA host controller drivers. As such, the API/ABI is
7783 * likely to change as new drivers are added and updated.
7784 * Do not depend on ABI/API stability.
7785 */
Tejun Heoe9c83912006-07-03 16:07:26 +09007786EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
7787EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
7788EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09007789EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09007790EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791EXPORT_SYMBOL_GPL(ata_std_bios_param);
7792EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04007793EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09007794EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09007795EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09007796EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09007797EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09007798EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09007799EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heo9a1004d2006-05-31 18:27:52 +09007801EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09007802EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09007803EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805EXPORT_SYMBOL_GPL(ata_tf_load);
7806EXPORT_SYMBOL_GPL(ata_tf_read);
7807EXPORT_SYMBOL_GPL(ata_noop_dev_select);
7808EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05007809EXPORT_SYMBOL_GPL(sata_print_link_status);
Tejun Heo436d34b2008-04-02 17:28:46 +09007810EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811EXPORT_SYMBOL_GPL(ata_tf_to_fis);
7812EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09007813EXPORT_SYMBOL_GPL(ata_pack_xfermask);
7814EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
7815EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
7816EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
7817EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
7818EXPORT_SYMBOL_GPL(ata_mode_string);
7819EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820EXPORT_SYMBOL_GPL(ata_check_status);
7821EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822EXPORT_SYMBOL_GPL(ata_exec_command);
7823EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01007824EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007825EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08007826EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09007827EXPORT_SYMBOL_GPL(ata_data_xfer);
7828EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Tejun Heo31cc23b2007-09-23 13:14:12 +09007829EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04007831EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06007832EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833EXPORT_SYMBOL_GPL(ata_bmdma_setup);
7834EXPORT_SYMBOL_GPL(ata_bmdma_start);
7835EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
7836EXPORT_SYMBOL_GPL(ata_bmdma_status);
7837EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007838EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7839EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
7840EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
7841EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7842EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007844EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007845EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007846EXPORT_SYMBOL_GPL(sata_link_debounce);
7847EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007849EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007850EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007851EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007852EXPORT_SYMBOL_GPL(sata_std_hardreset);
7853EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007854EXPORT_SYMBOL_GPL(ata_dev_classify);
7855EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007857EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007858EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007859EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo88ff6ea2007-10-16 14:21:24 -07007860EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007861EXPORT_SYMBOL_GPL(ata_wait_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7863EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007865EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007866EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007868EXPORT_SYMBOL_GPL(sata_scr_valid);
7869EXPORT_SYMBOL_GPL(sata_scr_read);
7870EXPORT_SYMBOL_GPL(sata_scr_write);
7871EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007872EXPORT_SYMBOL_GPL(ata_link_online);
7873EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007874#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007875EXPORT_SYMBOL_GPL(ata_host_suspend);
7876EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007877#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007878EXPORT_SYMBOL_GPL(ata_id_string);
7879EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7881
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007882EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09007883EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04007884EXPORT_SYMBOL_GPL(ata_timing_compute);
7885EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09007886EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04007887
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888#ifdef CONFIG_PCI
7889EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007890EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007891EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007892EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Tejun Heo4e6b79f2008-01-18 18:36:28 +09007893EXPORT_SYMBOL_GPL(ata_pci_activate_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894EXPORT_SYMBOL_GPL(ata_pci_init_one);
7895EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007896#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09007897EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7898EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01007899EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7900EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007901#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00007902EXPORT_SYMBOL_GPL(ata_pci_default_filter);
7903EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007905
Tejun Heo31f88382007-09-23 13:19:54 +09007906EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
Tejun Heo3af9a772007-09-23 13:19:54 +09007907EXPORT_SYMBOL_GPL(sata_pmp_std_prereset);
7908EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset);
7909EXPORT_SYMBOL_GPL(sata_pmp_std_postreset);
7910EXPORT_SYMBOL_GPL(sata_pmp_do_eh);
7911
Tejun Heob64bbc32007-07-16 14:29:39 +09007912EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7913EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7914EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09007915EXPORT_SYMBOL_GPL(ata_port_desc);
7916#ifdef CONFIG_PCI
7917EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
7918#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09007919EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09007920EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007921EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007922EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09007923EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09007924EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7925EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007926EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7927EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007928EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09007929EXPORT_SYMBOL_GPL(ata_irq_on);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007930EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007931
7932EXPORT_SYMBOL_GPL(ata_cable_40wire);
7933EXPORT_SYMBOL_GPL(ata_cable_80wire);
7934EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09007935EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007936EXPORT_SYMBOL_GPL(ata_cable_sata);