blob: 4f8b8d210cf41be45de3b49654ea62b528632342 [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050053#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <scsi/scsi_host.h>
55#include <linux/libata.h>
56#include <asm/io.h>
57#include <asm/semaphore.h>
58#include <asm/byteorder.h>
59
60#include "libata.h"
61
Jeff Garzik8bc3fc42007-05-21 20:26:38 -040062#define DRV_VERSION "2.21" /* must be exactly four chars */
Jeff Garzikfda0efc2007-01-31 07:43:15 -050063
64
Tejun Heod7bb4cc2006-05-31 18:27:46 +090065/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090066const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
67const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
68const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090069
Tejun Heo3373efd2006-05-15 20:57:53 +090070static unsigned int ata_dev_init_params(struct ata_device *dev,
71 u16 heads, u16 sectors);
72static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -040073static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable);
Tejun Heo3373efd2006-05-15 20:57:53 +090074static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090075static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Tejun Heof3187192007-04-17 23:44:07 +090077unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static struct workqueue_struct *ata_wq;
79
Tejun Heo453b07a2006-05-31 18:27:42 +090080struct workqueue_struct *ata_aux_wq;
81
Jeff Garzik418dc1f2006-03-11 20:50:08 -050082int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040083module_param(atapi_enabled, int, 0444);
84MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
85
Albert Lee95de7192006-04-04 10:57:18 +080086int atapi_dmadir = 0;
87module_param(atapi_dmadir, int, 0444);
88MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
89
Mark Lordbaf4fdf2007-08-08 01:08:45 +090090int atapi_passthru16 = 1;
91module_param(atapi_passthru16, int, 0444);
92MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
93
Jeff Garzikc3c013a2006-02-27 22:31:19 -050094int libata_fua = 0;
95module_param_named(fua, libata_fua, int, 0444);
96MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
97
Alan Cox1e999732007-04-11 00:23:13 +010098static int ata_ignore_hpa = 0;
99module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
100MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
101
Andrew Mortona8601e52006-06-25 01:36:52 -0700102static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
103module_param(ata_probe_timeout, int, 0444);
104MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
105
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400106int libata_noacpi = 1;
107module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700108MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110MODULE_AUTHOR("Jeff Garzik");
111MODULE_DESCRIPTION("Library module for ATA devices");
112MODULE_LICENSE("GPL");
113MODULE_VERSION(DRV_VERSION);
114
Edward Falk0baab862005-06-02 18:17:13 -0400115
116/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
118 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900120 * @is_cmd: This FIS is for command
121 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
123 * Converts a standard ATA taskfile to a Serial ATA
124 * FIS structure (Register - Host to Device).
125 *
126 * LOCKING:
127 * Inherited from caller.
128 */
Tejun Heo99771262007-07-16 14:29:38 +0900129void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Tejun Heo99771262007-07-16 14:29:38 +0900131 fis[0] = 0x27; /* Register - Host to Device FIS */
132 fis[1] = pmp & 0xf; /* Port multiplier number*/
133 if (is_cmd)
134 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 fis[2] = tf->command;
137 fis[3] = tf->feature;
138
139 fis[4] = tf->lbal;
140 fis[5] = tf->lbam;
141 fis[6] = tf->lbah;
142 fis[7] = tf->device;
143
144 fis[8] = tf->hob_lbal;
145 fis[9] = tf->hob_lbam;
146 fis[10] = tf->hob_lbah;
147 fis[11] = tf->hob_feature;
148
149 fis[12] = tf->nsect;
150 fis[13] = tf->hob_nsect;
151 fis[14] = 0;
152 fis[15] = tf->ctl;
153
154 fis[16] = 0;
155 fis[17] = 0;
156 fis[18] = 0;
157 fis[19] = 0;
158}
159
160/**
161 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
162 * @fis: Buffer from which data will be input
163 * @tf: Taskfile to output
164 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500165 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
167 * LOCKING:
168 * Inherited from caller.
169 */
170
Jeff Garzik057ace52005-10-22 14:27:05 -0400171void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 tf->command = fis[2]; /* status */
174 tf->feature = fis[3]; /* error */
175
176 tf->lbal = fis[4];
177 tf->lbam = fis[5];
178 tf->lbah = fis[6];
179 tf->device = fis[7];
180
181 tf->hob_lbal = fis[8];
182 tf->hob_lbam = fis[9];
183 tf->hob_lbah = fis[10];
184
185 tf->nsect = fis[12];
186 tf->hob_nsect = fis[13];
187}
188
Albert Lee8cbd6df2005-10-12 15:06:27 +0800189static const u8 ata_rw_cmds[] = {
190 /* pio multi */
191 ATA_CMD_READ_MULTI,
192 ATA_CMD_WRITE_MULTI,
193 ATA_CMD_READ_MULTI_EXT,
194 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100195 0,
196 0,
197 0,
198 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 /* pio */
200 ATA_CMD_PIO_READ,
201 ATA_CMD_PIO_WRITE,
202 ATA_CMD_PIO_READ_EXT,
203 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204 0,
205 0,
206 0,
207 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800208 /* dma */
209 ATA_CMD_READ,
210 ATA_CMD_WRITE,
211 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 ATA_CMD_WRITE_EXT,
213 0,
214 0,
215 0,
216 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900221 * @tf: command to examine and configure
222 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500224 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800225 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *
227 * LOCKING:
228 * caller.
229 */
Tejun Heobd056d72006-11-14 22:47:10 +0900230static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100234 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500235
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100236 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800237 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
238 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Albert Lee8cbd6df2005-10-12 15:06:27 +0800240 if (dev->flags & ATA_DFLAG_PIO) {
241 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100242 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900243 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000244 /* Unable to use DMA due to host limitation */
245 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800246 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800247 } else {
248 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100249 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100252 cmd = ata_rw_cmds[index + fua + lba48 + write];
253 if (cmd) {
254 tf->command = cmd;
255 return 0;
256 }
257 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Tejun Heocb95d562006-03-06 04:31:56 +0900260/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900261 * ata_tf_read_block - Read block address from ATA taskfile
262 * @tf: ATA taskfile of interest
263 * @dev: ATA device @tf belongs to
264 *
265 * LOCKING:
266 * None.
267 *
268 * Read block address from @tf. This function can handle all
269 * three address formats - LBA, LBA48 and CHS. tf->protocol and
270 * flags select the address format to use.
271 *
272 * RETURNS:
273 * Block address read from @tf.
274 */
275u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
276{
277 u64 block = 0;
278
279 if (tf->flags & ATA_TFLAG_LBA) {
280 if (tf->flags & ATA_TFLAG_LBA48) {
281 block |= (u64)tf->hob_lbah << 40;
282 block |= (u64)tf->hob_lbam << 32;
283 block |= tf->hob_lbal << 24;
284 } else
285 block |= (tf->device & 0xf) << 24;
286
287 block |= tf->lbah << 16;
288 block |= tf->lbam << 8;
289 block |= tf->lbal;
290 } else {
291 u32 cyl, head, sect;
292
293 cyl = tf->lbam | (tf->lbah << 8);
294 head = tf->device & 0xf;
295 sect = tf->lbal;
296
297 block = (cyl * dev->heads + head) * dev->sectors + sect;
298 }
299
300 return block;
301}
302
303/**
Tejun Heobd056d72006-11-14 22:47:10 +0900304 * ata_build_rw_tf - Build ATA taskfile for given read/write request
305 * @tf: Target ATA taskfile
306 * @dev: ATA device @tf belongs to
307 * @block: Block address
308 * @n_block: Number of blocks
309 * @tf_flags: RW/FUA etc...
310 * @tag: tag
311 *
312 * LOCKING:
313 * None.
314 *
315 * Build ATA taskfile @tf for read/write request described by
316 * @block, @n_block, @tf_flags and @tag on @dev.
317 *
318 * RETURNS:
319 *
320 * 0 on success, -ERANGE if the request is too large for @dev,
321 * -EINVAL if the request is invalid.
322 */
323int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
324 u64 block, u32 n_block, unsigned int tf_flags,
325 unsigned int tag)
326{
327 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
328 tf->flags |= tf_flags;
329
Tejun Heo6d1245b2007-02-20 23:20:27 +0900330 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900331 /* yay, NCQ */
332 if (!lba_48_ok(block, n_block))
333 return -ERANGE;
334
335 tf->protocol = ATA_PROT_NCQ;
336 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
337
338 if (tf->flags & ATA_TFLAG_WRITE)
339 tf->command = ATA_CMD_FPDMA_WRITE;
340 else
341 tf->command = ATA_CMD_FPDMA_READ;
342
343 tf->nsect = tag << 3;
344 tf->hob_feature = (n_block >> 8) & 0xff;
345 tf->feature = n_block & 0xff;
346
347 tf->hob_lbah = (block >> 40) & 0xff;
348 tf->hob_lbam = (block >> 32) & 0xff;
349 tf->hob_lbal = (block >> 24) & 0xff;
350 tf->lbah = (block >> 16) & 0xff;
351 tf->lbam = (block >> 8) & 0xff;
352 tf->lbal = block & 0xff;
353
354 tf->device = 1 << 6;
355 if (tf->flags & ATA_TFLAG_FUA)
356 tf->device |= 1 << 7;
357 } else if (dev->flags & ATA_DFLAG_LBA) {
358 tf->flags |= ATA_TFLAG_LBA;
359
360 if (lba_28_ok(block, n_block)) {
361 /* use LBA28 */
362 tf->device |= (block >> 24) & 0xf;
363 } else if (lba_48_ok(block, n_block)) {
364 if (!(dev->flags & ATA_DFLAG_LBA48))
365 return -ERANGE;
366
367 /* use LBA48 */
368 tf->flags |= ATA_TFLAG_LBA48;
369
370 tf->hob_nsect = (n_block >> 8) & 0xff;
371
372 tf->hob_lbah = (block >> 40) & 0xff;
373 tf->hob_lbam = (block >> 32) & 0xff;
374 tf->hob_lbal = (block >> 24) & 0xff;
375 } else
376 /* request too large even for LBA48 */
377 return -ERANGE;
378
379 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
380 return -EINVAL;
381
382 tf->nsect = n_block & 0xff;
383
384 tf->lbah = (block >> 16) & 0xff;
385 tf->lbam = (block >> 8) & 0xff;
386 tf->lbal = block & 0xff;
387
388 tf->device |= ATA_LBA;
389 } else {
390 /* CHS */
391 u32 sect, head, cyl, track;
392
393 /* The request -may- be too large for CHS addressing. */
394 if (!lba_28_ok(block, n_block))
395 return -ERANGE;
396
397 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
398 return -EINVAL;
399
400 /* Convert LBA to CHS */
401 track = (u32)block / dev->sectors;
402 cyl = track / dev->heads;
403 head = track % dev->heads;
404 sect = (u32)block % dev->sectors + 1;
405
406 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
407 (u32)block, track, cyl, head, sect);
408
409 /* Check whether the converted CHS can fit.
410 Cylinder: 0-65535
411 Head: 0-15
412 Sector: 1-255*/
413 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
414 return -ERANGE;
415
416 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
417 tf->lbal = sect;
418 tf->lbam = cyl;
419 tf->lbah = cyl >> 8;
420 tf->device |= head;
421 }
422
423 return 0;
424}
425
426/**
Tejun Heocb95d562006-03-06 04:31:56 +0900427 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
428 * @pio_mask: pio_mask
429 * @mwdma_mask: mwdma_mask
430 * @udma_mask: udma_mask
431 *
432 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
433 * unsigned int xfer_mask.
434 *
435 * LOCKING:
436 * None.
437 *
438 * RETURNS:
439 * Packed xfer_mask.
440 */
441static unsigned int ata_pack_xfermask(unsigned int pio_mask,
442 unsigned int mwdma_mask,
443 unsigned int udma_mask)
444{
445 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
446 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
447 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
448}
449
Tejun Heoc0489e42006-03-24 14:07:49 +0900450/**
451 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
452 * @xfer_mask: xfer_mask to unpack
453 * @pio_mask: resulting pio_mask
454 * @mwdma_mask: resulting mwdma_mask
455 * @udma_mask: resulting udma_mask
456 *
457 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
458 * Any NULL distination masks will be ignored.
459 */
460static void ata_unpack_xfermask(unsigned int xfer_mask,
461 unsigned int *pio_mask,
462 unsigned int *mwdma_mask,
463 unsigned int *udma_mask)
464{
465 if (pio_mask)
466 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
467 if (mwdma_mask)
468 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
469 if (udma_mask)
470 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
471}
472
Tejun Heocb95d562006-03-06 04:31:56 +0900473static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900474 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900475 u8 base;
476} ata_xfer_tbl[] = {
477 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
478 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
479 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
480 { -1, },
481};
482
483/**
484 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
485 * @xfer_mask: xfer_mask of interest
486 *
487 * Return matching XFER_* value for @xfer_mask. Only the highest
488 * bit of @xfer_mask is considered.
489 *
490 * LOCKING:
491 * None.
492 *
493 * RETURNS:
494 * Matching XFER_* value, 0 if no match found.
495 */
496static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
497{
498 int highbit = fls(xfer_mask) - 1;
499 const struct ata_xfer_ent *ent;
500
501 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
502 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
503 return ent->base + highbit - ent->shift;
504 return 0;
505}
506
507/**
508 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
509 * @xfer_mode: XFER_* of interest
510 *
511 * Return matching xfer_mask for @xfer_mode.
512 *
513 * LOCKING:
514 * None.
515 *
516 * RETURNS:
517 * Matching xfer_mask, 0 if no match found.
518 */
519static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
520{
521 const struct ata_xfer_ent *ent;
522
523 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
524 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
525 return 1 << (ent->shift + xfer_mode - ent->base);
526 return 0;
527}
528
529/**
530 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
531 * @xfer_mode: XFER_* of interest
532 *
533 * Return matching xfer_shift for @xfer_mode.
534 *
535 * LOCKING:
536 * None.
537 *
538 * RETURNS:
539 * Matching xfer_shift, -1 if no match found.
540 */
541static int ata_xfer_mode2shift(unsigned int xfer_mode)
542{
543 const struct ata_xfer_ent *ent;
544
545 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
546 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
547 return ent->shift;
548 return -1;
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900552 * ata_mode_string - convert xfer_mask to string
553 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 *
555 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900556 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *
558 * LOCKING:
559 * None.
560 *
561 * RETURNS:
562 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900563 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900565static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Tejun Heo75f554b2006-03-06 04:31:57 +0900567 static const char * const xfer_mode_str[] = {
568 "PIO0",
569 "PIO1",
570 "PIO2",
571 "PIO3",
572 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100573 "PIO5",
574 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900575 "MWDMA0",
576 "MWDMA1",
577 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100578 "MWDMA3",
579 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900580 "UDMA/16",
581 "UDMA/25",
582 "UDMA/33",
583 "UDMA/44",
584 "UDMA/66",
585 "UDMA/100",
586 "UDMA/133",
587 "UDMA7",
588 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900589 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900591 highbit = fls(xfer_mask) - 1;
592 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
593 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Tejun Heo4c360c82006-04-01 01:38:17 +0900597static const char *sata_spd_string(unsigned int spd)
598{
599 static const char * const spd_str[] = {
600 "1.5 Gbps",
601 "3.0 Gbps",
602 };
603
604 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
605 return "<unknown>";
606 return spd_str[spd - 1];
607}
608
Tejun Heo3373efd2006-05-15 20:57:53 +0900609void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900610{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900611 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900612 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900613 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900614 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
615 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900616 dev->class++;
617 }
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * ata_devchk - PATA device presence detection
622 * @ap: ATA channel to examine
623 * @device: Device to examine (starting at zero)
624 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900625 * This technique was originally described in
626 * Hale Landis's ATADRVR (www.ata-atapi.com), and
627 * later found its way into the ATA/ATAPI spec.
628 *
629 * Write a pattern to the ATA shadow registers,
630 * and if a device is present, it will respond by
631 * correctly storing and echoing back the
632 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *
634 * LOCKING:
635 * caller.
636 */
637
Tejun Heo0d5ff562007-02-01 15:06:36 +0900638static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900640 struct ata_ioports *ioaddr = &ap->ioaddr;
641 u8 nsect, lbal;
642
643 ap->ops->dev_select(ap, device);
644
645 iowrite8(0x55, ioaddr->nsect_addr);
646 iowrite8(0xaa, ioaddr->lbal_addr);
647
648 iowrite8(0xaa, ioaddr->nsect_addr);
649 iowrite8(0x55, ioaddr->lbal_addr);
650
651 iowrite8(0x55, ioaddr->nsect_addr);
652 iowrite8(0xaa, ioaddr->lbal_addr);
653
654 nsect = ioread8(ioaddr->nsect_addr);
655 lbal = ioread8(ioaddr->lbal_addr);
656
657 if ((nsect == 0x55) && (lbal == 0xaa))
658 return 1; /* we found a device */
659
660 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/**
664 * ata_dev_classify - determine device type based on ATA-spec signature
665 * @tf: ATA taskfile register set for device to be identified
666 *
667 * Determine from taskfile register contents whether a device is
668 * ATA or ATAPI, as per "Signature and persistence" section
669 * of ATA/PI spec (volume 1, sect 5.14).
670 *
671 * LOCKING:
672 * None.
673 *
674 * RETURNS:
675 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
676 * the event of failure.
677 */
678
Jeff Garzik057ace52005-10-22 14:27:05 -0400679unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 /* Apple's open source Darwin code hints that some devices only
682 * put a proper signature into the LBA mid/high registers,
683 * So, we only check those. It's sufficient for uniqueness.
684 */
685
686 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
687 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
688 DPRINTK("found ATA device by sig\n");
689 return ATA_DEV_ATA;
690 }
691
692 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
693 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
694 DPRINTK("found ATAPI device by sig\n");
695 return ATA_DEV_ATAPI;
696 }
697
698 DPRINTK("unknown device\n");
699 return ATA_DEV_UNKNOWN;
700}
701
702/**
703 * ata_dev_try_classify - Parse returned ATA device signature
704 * @ap: ATA channel to examine
705 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900706 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 *
708 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
709 * an ATA/ATAPI-defined set of values is placed in the ATA
710 * shadow registers, indicating the results of device detection
711 * and diagnostics.
712 *
713 * Select the ATA device, and read the values from the ATA shadow
714 * registers. Then parse according to the Error register value,
715 * and the spec-defined values examined by ata_dev_classify().
716 *
717 * LOCKING:
718 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900719 *
720 * RETURNS:
721 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 */
723
Akira Iguchia619f981b2007-01-26 16:28:18 +0900724unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900725ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct ata_taskfile tf;
728 unsigned int class;
729 u8 err;
730
731 ap->ops->dev_select(ap, device);
732
733 memset(&tf, 0, sizeof(tf));
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400736 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900737 if (r_err)
738 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Cox93590852006-09-12 16:55:12 +0100740 /* see if device passed diags: if master then continue and warn later */
741 if (err == 0 && device == 0)
742 /* diagnostic fail : do nothing _YET_ */
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900743 ap->link.device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +0100744 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /* do nothing */ ;
746 else if ((device == 0) && (err == 0x81))
747 /* do nothing */ ;
748 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900749 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Tejun Heob4dc7622006-01-24 17:05:22 +0900751 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900755 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900757 return ATA_DEV_NONE;
758 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900762 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * @id: IDENTIFY DEVICE results we will examine
764 * @s: string into which data is output
765 * @ofs: offset into identify device page
766 * @len: length of string to return. must be an even number.
767 *
768 * The strings in the IDENTIFY DEVICE page are broken up into
769 * 16-bit chunks. Run through the string, and output each
770 * 8-bit chunk linearly, regardless of platform.
771 *
772 * LOCKING:
773 * caller.
774 */
775
Tejun Heo6a62a042006-02-13 10:02:46 +0900776void ata_id_string(const u16 *id, unsigned char *s,
777 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 unsigned int c;
780
781 while (len > 0) {
782 c = id[ofs] >> 8;
783 *s = c;
784 s++;
785
786 c = id[ofs] & 0xff;
787 *s = c;
788 s++;
789
790 ofs++;
791 len -= 2;
792 }
793}
794
Tejun Heo0e949ff2006-02-12 22:47:04 +0900795/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900796 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900797 * @id: IDENTIFY DEVICE results we will examine
798 * @s: string into which data is output
799 * @ofs: offset into identify device page
800 * @len: length of string to return. must be an odd number.
801 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900802 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900803 * trims trailing spaces and terminates the resulting string with
804 * null. @len must be actual maximum length (even number) + 1.
805 *
806 * LOCKING:
807 * caller.
808 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900809void ata_id_c_string(const u16 *id, unsigned char *s,
810 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900811{
812 unsigned char *p;
813
814 WARN_ON(!(len & 1));
815
Tejun Heo6a62a042006-02-13 10:02:46 +0900816 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900817
818 p = s + strnlen(s, len - 1);
819 while (p > s && p[-1] == ' ')
820 p--;
821 *p = '\0';
822}
Edward Falk0baab862005-06-02 18:17:13 -0400823
Alan Cox1e999732007-04-11 00:23:13 +0100824static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
825{
826 u64 sectors = 0;
827
828 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
829 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
830 sectors |= (tf->hob_lbal & 0xff) << 24;
831 sectors |= (tf->lbah & 0xff) << 16;
832 sectors |= (tf->lbam & 0xff) << 8;
833 sectors |= (tf->lbal & 0xff);
834
835 return ++sectors;
836}
837
838static u64 ata_tf_to_lba(struct ata_taskfile *tf)
839{
840 u64 sectors = 0;
841
842 sectors |= (tf->device & 0x0f) << 24;
843 sectors |= (tf->lbah & 0xff) << 16;
844 sectors |= (tf->lbam & 0xff) << 8;
845 sectors |= (tf->lbal & 0xff);
846
847 return ++sectors;
848}
849
850/**
851 * ata_read_native_max_address_ext - LBA48 native max query
852 * @dev: Device to query
853 *
854 * Perform an LBA48 size query upon the device in question. Return the
855 * actual LBA48 size or zero if the command fails.
856 */
857
858static u64 ata_read_native_max_address_ext(struct ata_device *dev)
859{
860 unsigned int err;
861 struct ata_taskfile tf;
862
863 ata_tf_init(dev, &tf);
864
865 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
866 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
867 tf.protocol |= ATA_PROT_NODATA;
868 tf.device |= 0x40;
869
870 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
871 if (err)
872 return 0;
873
874 return ata_tf_to_lba48(&tf);
875}
876
877/**
878 * ata_read_native_max_address - LBA28 native max query
879 * @dev: Device to query
880 *
881 * Performa an LBA28 size query upon the device in question. Return the
882 * actual LBA28 size or zero if the command fails.
883 */
884
885static u64 ata_read_native_max_address(struct ata_device *dev)
886{
887 unsigned int err;
888 struct ata_taskfile tf;
889
890 ata_tf_init(dev, &tf);
891
892 tf.command = ATA_CMD_READ_NATIVE_MAX;
893 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
894 tf.protocol |= ATA_PROT_NODATA;
895 tf.device |= 0x40;
896
897 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
898 if (err)
899 return 0;
900
901 return ata_tf_to_lba(&tf);
902}
903
904/**
905 * ata_set_native_max_address_ext - LBA48 native max set
906 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700907 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100908 *
909 * Perform an LBA48 size set max upon the device in question. Return the
910 * actual LBA48 size or zero if the command fails.
911 */
912
913static u64 ata_set_native_max_address_ext(struct ata_device *dev, u64 new_sectors)
914{
915 unsigned int err;
916 struct ata_taskfile tf;
917
918 new_sectors--;
919
920 ata_tf_init(dev, &tf);
921
922 tf.command = ATA_CMD_SET_MAX_EXT;
923 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
924 tf.protocol |= ATA_PROT_NODATA;
925 tf.device |= 0x40;
926
927 tf.lbal = (new_sectors >> 0) & 0xff;
928 tf.lbam = (new_sectors >> 8) & 0xff;
929 tf.lbah = (new_sectors >> 16) & 0xff;
930
931 tf.hob_lbal = (new_sectors >> 24) & 0xff;
932 tf.hob_lbam = (new_sectors >> 32) & 0xff;
933 tf.hob_lbah = (new_sectors >> 40) & 0xff;
934
935 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
936 if (err)
937 return 0;
938
939 return ata_tf_to_lba48(&tf);
940}
941
942/**
943 * ata_set_native_max_address - LBA28 native max set
944 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700945 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100946 *
947 * Perform an LBA28 size set max upon the device in question. Return the
948 * actual LBA28 size or zero if the command fails.
949 */
950
951static u64 ata_set_native_max_address(struct ata_device *dev, u64 new_sectors)
952{
953 unsigned int err;
954 struct ata_taskfile tf;
955
956 new_sectors--;
957
958 ata_tf_init(dev, &tf);
959
960 tf.command = ATA_CMD_SET_MAX;
961 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
962 tf.protocol |= ATA_PROT_NODATA;
963
964 tf.lbal = (new_sectors >> 0) & 0xff;
965 tf.lbam = (new_sectors >> 8) & 0xff;
966 tf.lbah = (new_sectors >> 16) & 0xff;
967 tf.device |= ((new_sectors >> 24) & 0x0f) | 0x40;
968
969 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
970 if (err)
971 return 0;
972
973 return ata_tf_to_lba(&tf);
974}
975
976/**
977 * ata_hpa_resize - Resize a device with an HPA set
978 * @dev: Device to resize
979 *
980 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
981 * it if required to the full size of the media. The caller must check
982 * the drive has the HPA feature set enabled.
983 */
984
985static u64 ata_hpa_resize(struct ata_device *dev)
986{
987 u64 sectors = dev->n_sectors;
988 u64 hpa_sectors;
Jeff Garzika617c092007-05-21 20:14:23 -0400989
Alan Cox1e999732007-04-11 00:23:13 +0100990 if (ata_id_has_lba48(dev->id))
991 hpa_sectors = ata_read_native_max_address_ext(dev);
992 else
993 hpa_sectors = ata_read_native_max_address(dev);
994
Alan Cox1e999732007-04-11 00:23:13 +0100995 if (hpa_sectors > sectors) {
996 ata_dev_printk(dev, KERN_INFO,
997 "Host Protected Area detected:\n"
998 "\tcurrent size: %lld sectors\n"
999 "\tnative size: %lld sectors\n",
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001000 (long long)sectors, (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001001
1002 if (ata_ignore_hpa) {
1003 if (ata_id_has_lba48(dev->id))
1004 hpa_sectors = ata_set_native_max_address_ext(dev, hpa_sectors);
1005 else
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001006 hpa_sectors = ata_set_native_max_address(dev,
1007 hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001008
1009 if (hpa_sectors) {
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001010 ata_dev_printk(dev, KERN_INFO, "native size "
1011 "increased to %lld sectors\n",
1012 (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001013 return hpa_sectors;
1014 }
1015 }
Tejun Heo37301a52007-06-25 20:45:54 +09001016 } else if (hpa_sectors < sectors)
1017 ata_dev_printk(dev, KERN_WARNING, "%s 1: hpa sectors (%lld) "
1018 "is smaller than sectors (%lld)\n", __FUNCTION__,
1019 (long long)hpa_sectors, (long long)sectors);
1020
Alan Cox1e999732007-04-11 00:23:13 +01001021 return sectors;
1022}
1023
Tejun Heo29407402006-02-12 22:47:04 +09001024static u64 ata_id_n_sectors(const u16 *id)
1025{
1026 if (ata_id_has_lba(id)) {
1027 if (ata_id_has_lba48(id))
1028 return ata_id_u64(id, 100);
1029 else
1030 return ata_id_u32(id, 60);
1031 } else {
1032 if (ata_id_current_chs_valid(id))
1033 return ata_id_u32(id, 57);
1034 else
1035 return id[1] * id[3] * id[6];
1036 }
1037}
1038
Edward Falk0baab862005-06-02 18:17:13 -04001039/**
Alan10305f02007-02-20 18:01:59 +00001040 * ata_id_to_dma_mode - Identify DMA mode from id block
1041 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001042 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001043 *
1044 * Set up the timing values for the device based upon the identify
1045 * reported values for the DMA mode. This function is used by drivers
1046 * which rely upon firmware configured modes, but wish to report the
1047 * mode correctly when possible.
1048 *
1049 * In addition we emit similarly formatted messages to the default
1050 * ata_dev_set_mode handler, in order to provide consistency of
1051 * presentation.
1052 */
1053
1054void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1055{
1056 unsigned int mask;
1057 u8 mode;
1058
1059 /* Pack the DMA modes */
1060 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1061 if (dev->id[53] & 0x04)
1062 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1063
1064 /* Select the mode in use */
1065 mode = ata_xfer_mask2mode(mask);
1066
1067 if (mode != 0) {
1068 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1069 ata_mode_string(mask));
1070 } else {
1071 /* SWDMA perhaps ? */
1072 mode = unknown;
1073 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1074 }
1075
1076 /* Configure the device reporting */
1077 dev->xfer_mode = mode;
1078 dev->xfer_shift = ata_xfer_mode2shift(mode);
1079}
1080
1081/**
Edward Falk0baab862005-06-02 18:17:13 -04001082 * ata_noop_dev_select - Select device 0/1 on ATA bus
1083 * @ap: ATA channel to manipulate
1084 * @device: ATA device (numbered from zero) to select
1085 *
1086 * This function performs no actual function.
1087 *
1088 * May be used as the dev_select() entry in ata_port_operations.
1089 *
1090 * LOCKING:
1091 * caller.
1092 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1094{
1095}
1096
Edward Falk0baab862005-06-02 18:17:13 -04001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098/**
1099 * ata_std_dev_select - Select device 0/1 on ATA bus
1100 * @ap: ATA channel to manipulate
1101 * @device: ATA device (numbered from zero) to select
1102 *
1103 * Use the method defined in the ATA specification to
1104 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001105 * ATA channel. Works with both PIO and MMIO.
1106 *
1107 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 *
1109 * LOCKING:
1110 * caller.
1111 */
1112
1113void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1114{
1115 u8 tmp;
1116
1117 if (device == 0)
1118 tmp = ATA_DEVICE_OBS;
1119 else
1120 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1121
Tejun Heo0d5ff562007-02-01 15:06:36 +09001122 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 ata_pause(ap); /* needed; also flushes, for mmio */
1124}
1125
1126/**
1127 * ata_dev_select - Select device 0/1 on ATA bus
1128 * @ap: ATA channel to manipulate
1129 * @device: ATA device (numbered from zero) to select
1130 * @wait: non-zero to wait for Status register BSY bit to clear
1131 * @can_sleep: non-zero if context allows sleeping
1132 *
1133 * Use the method defined in the ATA specification to
1134 * make either device 0, or device 1, active on the
1135 * ATA channel.
1136 *
1137 * This is a high-level version of ata_std_dev_select(),
1138 * which additionally provides the services of inserting
1139 * the proper pauses and status polling, where needed.
1140 *
1141 * LOCKING:
1142 * caller.
1143 */
1144
1145void ata_dev_select(struct ata_port *ap, unsigned int device,
1146 unsigned int wait, unsigned int can_sleep)
1147{
Tejun Heo88574552006-06-25 20:00:35 +09001148 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001149 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1150 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (wait)
1153 ata_wait_idle(ap);
1154
1155 ap->ops->dev_select(ap, device);
1156
1157 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001158 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 msleep(150);
1160 ata_wait_idle(ap);
1161 }
1162}
1163
1164/**
1165 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001166 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001168 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1169 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 *
1171 * LOCKING:
1172 * caller.
1173 */
1174
Tejun Heo0bd33002006-02-12 22:47:05 +09001175static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 DPRINTK("49==0x%04x "
1178 "53==0x%04x "
1179 "63==0x%04x "
1180 "64==0x%04x "
1181 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001182 id[49],
1183 id[53],
1184 id[63],
1185 id[64],
1186 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 DPRINTK("80==0x%04x "
1188 "81==0x%04x "
1189 "82==0x%04x "
1190 "83==0x%04x "
1191 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001192 id[80],
1193 id[81],
1194 id[82],
1195 id[83],
1196 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 DPRINTK("88==0x%04x "
1198 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001199 id[88],
1200 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Tejun Heocb95d562006-03-06 04:31:56 +09001203/**
1204 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1205 * @id: IDENTIFY data to compute xfer mask from
1206 *
1207 * Compute the xfermask for this device. This is not as trivial
1208 * as it seems if we must consider early devices correctly.
1209 *
1210 * FIXME: pre IDE drive timing (do we care ?).
1211 *
1212 * LOCKING:
1213 * None.
1214 *
1215 * RETURNS:
1216 * Computed xfermask
1217 */
1218static unsigned int ata_id_xfermask(const u16 *id)
1219{
1220 unsigned int pio_mask, mwdma_mask, udma_mask;
1221
1222 /* Usual case. Word 53 indicates word 64 is valid */
1223 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1224 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1225 pio_mask <<= 3;
1226 pio_mask |= 0x7;
1227 } else {
1228 /* If word 64 isn't valid then Word 51 high byte holds
1229 * the PIO timing number for the maximum. Turn it into
1230 * a mask.
1231 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001232 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001233 if (mode < 5) /* Valid PIO range */
1234 pio_mask = (2 << mode) - 1;
1235 else
1236 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001237
1238 /* But wait.. there's more. Design your standards by
1239 * committee and you too can get a free iordy field to
1240 * process. However its the speeds not the modes that
1241 * are supported... Note drivers using the timing API
1242 * will get this right anyway
1243 */
1244 }
1245
1246 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001247
Alan Coxb352e572006-08-10 18:52:12 +01001248 if (ata_id_is_cfa(id)) {
1249 /*
1250 * Process compact flash extended modes
1251 */
1252 int pio = id[163] & 0x7;
1253 int dma = (id[163] >> 3) & 7;
1254
1255 if (pio)
1256 pio_mask |= (1 << 5);
1257 if (pio > 1)
1258 pio_mask |= (1 << 6);
1259 if (dma)
1260 mwdma_mask |= (1 << 3);
1261 if (dma > 1)
1262 mwdma_mask |= (1 << 4);
1263 }
1264
Tejun Heofb21f0d2006-03-12 12:34:35 +09001265 udma_mask = 0;
1266 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1267 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001268
1269 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1270}
1271
Tejun Heo86e45b62006-03-05 15:29:09 +09001272/**
1273 * ata_port_queue_task - Queue port_task
1274 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001275 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001276 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001277 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001278 *
1279 * Schedule @fn(@data) for execution after @delay jiffies using
1280 * port_task. There is one port_task per port and it's the
1281 * user(low level driver)'s responsibility to make sure that only
1282 * one task is active at any given time.
1283 *
1284 * libata core layer takes care of synchronization between
1285 * port_task and EH. ata_port_queue_task() may be ignored for EH
1286 * synchronization.
1287 *
1288 * LOCKING:
1289 * Inherited from caller.
1290 */
David Howells65f27f32006-11-22 14:55:48 +00001291void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001292 unsigned long delay)
1293{
David Howells65f27f32006-11-22 14:55:48 +00001294 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1295 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001296
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001297 /* may fail if ata_port_flush_task() in progress */
1298 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001299}
1300
1301/**
1302 * ata_port_flush_task - Flush port_task
1303 * @ap: The ata_port to flush port_task for
1304 *
1305 * After this function completes, port_task is guranteed not to
1306 * be running or scheduled.
1307 *
1308 * LOCKING:
1309 * Kernel thread context (may sleep)
1310 */
1311void ata_port_flush_task(struct ata_port *ap)
1312{
Tejun Heo86e45b62006-03-05 15:29:09 +09001313 DPRINTK("ENTER\n");
1314
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001315 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001316
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001317 if (ata_msg_ctl(ap))
1318 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001319}
1320
Adrian Bunk7102d232007-01-04 00:09:36 +01001321static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001322{
Tejun Heo77853bf2006-01-23 13:09:36 +09001323 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001324
Tejun Heoa2a7a662005-12-13 14:48:31 +09001325 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001326}
1327
1328/**
Tejun Heo24326972006-11-14 22:47:09 +09001329 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001330 * @dev: Device to which the command is sent
1331 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001332 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001333 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001334 * @sg: sg list for the data buffer of the command
1335 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001336 *
1337 * Executes libata internal command with timeout. @tf contains
1338 * command on entry and result on return. Timeout and error
1339 * conditions are reported via return value. No recovery action
1340 * is taken after a command times out. It's caller's duty to
1341 * clean up after timeout.
1342 *
1343 * LOCKING:
1344 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001345 *
1346 * RETURNS:
1347 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001348 */
Tejun Heo24326972006-11-14 22:47:09 +09001349unsigned ata_exec_internal_sg(struct ata_device *dev,
1350 struct ata_taskfile *tf, const u8 *cdb,
1351 int dma_dir, struct scatterlist *sg,
1352 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001353{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001354 struct ata_link *link = dev->link;
1355 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001356 u8 command = tf->command;
1357 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001358 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001359 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001360 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001361 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001362 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001363 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001364
Jeff Garzikba6a1302006-06-22 23:46:10 -04001365 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001366
Tejun Heoe3180492006-05-15 20:58:09 +09001367 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001368 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001369 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001370 return AC_ERR_SYSTEM;
1371 }
1372
Tejun Heo2ab7db12006-05-15 20:58:02 +09001373 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001374
Tejun Heo2ab7db12006-05-15 20:58:02 +09001375 /* XXX: Tag 0 is used for drivers with legacy EH as some
1376 * drivers choke if any other tag is given. This breaks
1377 * ata_tag_internal() test for those drivers. Don't use new
1378 * EH stuff without converting to it.
1379 */
1380 if (ap->ops->error_handler)
1381 tag = ATA_TAG_INTERNAL;
1382 else
1383 tag = 0;
1384
Tejun Heo6cec4a32006-05-15 21:03:41 +09001385 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001386 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001387 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001388
1389 qc->tag = tag;
1390 qc->scsicmd = NULL;
1391 qc->ap = ap;
1392 qc->dev = dev;
1393 ata_qc_reinit(qc);
1394
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001395 preempted_tag = link->active_tag;
1396 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001397 preempted_qc_active = ap->qc_active;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001398 link->active_tag = ATA_TAG_POISON;
1399 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001400 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001401
1402 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001403 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001404 if (cdb)
1405 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001406 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001407 qc->dma_dir = dma_dir;
1408 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001409 unsigned int i, buflen = 0;
1410
1411 for (i = 0; i < n_elem; i++)
1412 buflen += sg[i].length;
1413
1414 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001415 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001416 }
1417
Tejun Heo77853bf2006-01-23 13:09:36 +09001418 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001419 qc->complete_fn = ata_qc_complete_internal;
1420
Tejun Heo8e0e6942006-03-31 20:41:11 +09001421 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001422
Jeff Garzikba6a1302006-06-22 23:46:10 -04001423 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001424
Andrew Mortona8601e52006-06-25 01:36:52 -07001425 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001426
Tejun Heod95a7172006-05-15 20:58:14 +09001427 ata_port_flush_task(ap);
1428
1429 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001430 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001431
1432 /* We're racing with irq here. If we lose, the
1433 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001434 * twice. If we win, the port is frozen and will be
1435 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001436 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001437 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001438 qc->err_mask |= AC_ERR_TIMEOUT;
1439
1440 if (ap->ops->error_handler)
1441 ata_port_freeze(ap);
1442 else
1443 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001444
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001445 if (ata_msg_warn(ap))
1446 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001447 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001448 }
1449
Jeff Garzikba6a1302006-06-22 23:46:10 -04001450 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001451 }
1452
Tejun Heod95a7172006-05-15 20:58:14 +09001453 /* do post_internal_cmd */
1454 if (ap->ops->post_internal_cmd)
1455 ap->ops->post_internal_cmd(qc);
1456
Tejun Heoa51d6442007-03-20 15:24:11 +09001457 /* perform minimal error analysis */
1458 if (qc->flags & ATA_QCFLAG_FAILED) {
1459 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1460 qc->err_mask |= AC_ERR_DEV;
1461
1462 if (!qc->err_mask)
1463 qc->err_mask |= AC_ERR_OTHER;
1464
1465 if (qc->err_mask & ~AC_ERR_OTHER)
1466 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001467 }
1468
Tejun Heo15869302006-05-15 20:57:33 +09001469 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001470 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001471
Tejun Heoe61e0672006-05-15 20:57:40 +09001472 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001473 err_mask = qc->err_mask;
1474
1475 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001476 link->active_tag = preempted_tag;
1477 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001478 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001479
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001480 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1481 * Until those drivers are fixed, we detect the condition
1482 * here, fail the command with AC_ERR_SYSTEM and reenable the
1483 * port.
1484 *
1485 * Note that this doesn't change any behavior as internal
1486 * command failure results in disabling the device in the
1487 * higher layer for LLDDs without new reset/EH callbacks.
1488 *
1489 * Kill the following code as soon as those drivers are fixed.
1490 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001491 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001492 err_mask |= AC_ERR_SYSTEM;
1493 ata_port_probe(ap);
1494 }
1495
Jeff Garzikba6a1302006-06-22 23:46:10 -04001496 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001497
Tejun Heo77853bf2006-01-23 13:09:36 +09001498 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/**
Tejun Heo33480a02006-12-12 02:15:31 +09001502 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001503 * @dev: Device to which the command is sent
1504 * @tf: Taskfile registers for the command and the result
1505 * @cdb: CDB for packet command
1506 * @dma_dir: Data tranfer direction of the command
1507 * @buf: Data buffer of the command
1508 * @buflen: Length of data buffer
1509 *
1510 * Wrapper around ata_exec_internal_sg() which takes simple
1511 * buffer instead of sg list.
1512 *
1513 * LOCKING:
1514 * None. Should be called with kernel context, might sleep.
1515 *
1516 * RETURNS:
1517 * Zero on success, AC_ERR_* mask on failure
1518 */
1519unsigned ata_exec_internal(struct ata_device *dev,
1520 struct ata_taskfile *tf, const u8 *cdb,
1521 int dma_dir, void *buf, unsigned int buflen)
1522{
Tejun Heo33480a02006-12-12 02:15:31 +09001523 struct scatterlist *psg = NULL, sg;
1524 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001525
Tejun Heo33480a02006-12-12 02:15:31 +09001526 if (dma_dir != DMA_NONE) {
1527 WARN_ON(!buf);
1528 sg_init_one(&sg, buf, buflen);
1529 psg = &sg;
1530 n_elem++;
1531 }
Tejun Heo24326972006-11-14 22:47:09 +09001532
Tejun Heo33480a02006-12-12 02:15:31 +09001533 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001534}
1535
1536/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001537 * ata_do_simple_cmd - execute simple internal command
1538 * @dev: Device to which the command is sent
1539 * @cmd: Opcode to execute
1540 *
1541 * Execute a 'simple' command, that only consists of the opcode
1542 * 'cmd' itself, without filling any other registers
1543 *
1544 * LOCKING:
1545 * Kernel thread context (may sleep).
1546 *
1547 * RETURNS:
1548 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001549 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001550unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001551{
1552 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001553
1554 ata_tf_init(dev, &tf);
1555
1556 tf.command = cmd;
1557 tf.flags |= ATA_TFLAG_DEVICE;
1558 tf.protocol = ATA_PROT_NODATA;
1559
Tejun Heo977e6b92006-06-24 20:30:19 +09001560 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001564 * ata_pio_need_iordy - check if iordy needed
1565 * @adev: ATA device
1566 *
1567 * Check if the current speed of the device requires IORDY. Used
1568 * by various controllers for chip configuration.
1569 */
Jeff Garzika617c092007-05-21 20:14:23 -04001570
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001571unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1572{
Alan Cox432729f2007-03-08 23:22:59 +00001573 /* Controller doesn't support IORDY. Probably a pointless check
1574 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001575 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001576 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001577 /* PIO3 and higher it is mandatory */
1578 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001579 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001580 /* We turn it on when possible */
1581 if (ata_id_has_iordy(adev->id))
1582 return 1;
1583 return 0;
1584}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001585
Alan Cox432729f2007-03-08 23:22:59 +00001586/**
1587 * ata_pio_mask_no_iordy - Return the non IORDY mask
1588 * @adev: ATA device
1589 *
1590 * Compute the highest mode possible if we are not using iordy. Return
1591 * -1 if no iordy mode is available.
1592 */
Jeff Garzika617c092007-05-21 20:14:23 -04001593
Alan Cox432729f2007-03-08 23:22:59 +00001594static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1595{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001596 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001597 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001598 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001599 /* Is the speed faster than the drive allows non IORDY ? */
1600 if (pio) {
1601 /* This is cycle times not frequency - watch the logic! */
1602 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001603 return 3 << ATA_SHIFT_PIO;
1604 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001605 }
1606 }
Alan Cox432729f2007-03-08 23:22:59 +00001607 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001608}
1609
1610/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001611 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001612 * @dev: target device
1613 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001614 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001615 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001616 *
1617 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1618 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001619 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1620 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001621 *
Alan Cox50a99012007-08-08 14:27:00 +01001622 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
1623 * now we abort if we hit that case.
1624 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001625 * LOCKING:
1626 * Kernel thread context (may sleep)
1627 *
1628 * RETURNS:
1629 * 0 on success, -errno otherwise.
1630 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001631int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001632 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001633{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001634 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001635 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001636 struct ata_taskfile tf;
1637 unsigned int err_mask = 0;
1638 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001639 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001640 int rc;
1641
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001642 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001643 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001644
Tejun Heo49016ac2006-02-21 02:12:11 +09001645 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001646 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001647 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001648
1649 switch (class) {
1650 case ATA_DEV_ATA:
1651 tf.command = ATA_CMD_ID_ATA;
1652 break;
1653 case ATA_DEV_ATAPI:
1654 tf.command = ATA_CMD_ID_ATAPI;
1655 break;
1656 default:
1657 rc = -ENODEV;
1658 reason = "unsupported class";
1659 goto err_out;
1660 }
1661
1662 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001663
1664 /* Some devices choke if TF registers contain garbage. Make
1665 * sure those are properly initialized.
1666 */
1667 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1668
1669 /* Device presence detection is unreliable on some
1670 * controllers. Always poll IDENTIFY if available.
1671 */
1672 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001673
Tejun Heo3373efd2006-05-15 20:57:53 +09001674 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001675 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001676 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001677 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001678 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001679 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001680 return -ENOENT;
1681 }
1682
Tejun Heo54936f82007-05-11 14:35:29 +02001683 /* Device or controller might have reported the wrong
1684 * device class. Give a shot at the other IDENTIFY if
1685 * the current one is aborted by the device.
1686 */
1687 if (may_fallback &&
1688 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1689 may_fallback = 0;
1690
1691 if (class == ATA_DEV_ATA)
1692 class = ATA_DEV_ATAPI;
1693 else
1694 class = ATA_DEV_ATA;
1695 goto retry;
1696 }
1697
Tejun Heo49016ac2006-02-21 02:12:11 +09001698 rc = -EIO;
1699 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001700 goto err_out;
1701 }
1702
Tejun Heo54936f82007-05-11 14:35:29 +02001703 /* Falling back doesn't make sense if ID data was read
1704 * successfully at least once.
1705 */
1706 may_fallback = 0;
1707
Tejun Heo49016ac2006-02-21 02:12:11 +09001708 swap_buf_le16(id, ATA_ID_WORDS);
1709
Tejun Heo49016ac2006-02-21 02:12:11 +09001710 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001711 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001712 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001713
1714 if (class == ATA_DEV_ATA) {
1715 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1716 goto err_out;
1717 } else {
1718 if (ata_id_is_ata(id))
1719 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001720 }
1721
Mark Lord169439c2007-04-17 18:26:07 -04001722 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1723 tried_spinup = 1;
1724 /*
1725 * Drive powered-up in standby mode, and requires a specific
1726 * SET_FEATURES spin-up subcommand before it will accept
1727 * anything other than the original IDENTIFY command.
1728 */
1729 ata_tf_init(dev, &tf);
1730 tf.command = ATA_CMD_SET_FEATURES;
1731 tf.feature = SETFEATURES_SPINUP;
1732 tf.protocol = ATA_PROT_NODATA;
1733 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1734 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07001735 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04001736 rc = -EIO;
1737 reason = "SPINUP failed";
1738 goto err_out;
1739 }
1740 /*
1741 * If the drive initially returned incomplete IDENTIFY info,
1742 * we now must reissue the IDENTIFY command.
1743 */
1744 if (id[2] == 0x37c8)
1745 goto retry;
1746 }
1747
Tejun Heobff04642006-11-10 18:08:10 +09001748 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001749 /*
1750 * The exact sequence expected by certain pre-ATA4 drives is:
1751 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01001752 * IDENTIFY (optional in early ATA)
1753 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09001754 * anything else..
1755 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01001756 *
1757 * Note that ATA4 says lba is mandatory so the second check
1758 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09001759 */
1760 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001761 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001762 if (err_mask) {
1763 rc = -EIO;
1764 reason = "INIT_DEV_PARAMS failed";
1765 goto err_out;
1766 }
1767
1768 /* current CHS translation info (id[53-58]) might be
1769 * changed. reread the identify device info.
1770 */
Tejun Heobff04642006-11-10 18:08:10 +09001771 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001772 goto retry;
1773 }
1774 }
1775
1776 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001777
Tejun Heo49016ac2006-02-21 02:12:11 +09001778 return 0;
1779
1780 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001781 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001782 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001783 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001784 return rc;
1785}
1786
Tejun Heo3373efd2006-05-15 20:57:53 +09001787static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001788{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001789 struct ata_port *ap = dev->link->ap;
1790 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001791}
1792
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001793static void ata_dev_config_ncq(struct ata_device *dev,
1794 char *desc, size_t desc_sz)
1795{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001796 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001797 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1798
1799 if (!ata_id_has_ncq(dev->id)) {
1800 desc[0] = '\0';
1801 return;
1802 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001803 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001804 snprintf(desc, desc_sz, "NCQ (not used)");
1805 return;
1806 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001807 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001808 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001809 dev->flags |= ATA_DFLAG_NCQ;
1810 }
1811
1812 if (hdepth >= ddepth)
1813 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1814 else
1815 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1816}
1817
Tejun Heo49016ac2006-02-21 02:12:11 +09001818/**
Tejun Heoffeae412006-03-01 16:09:35 +09001819 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001820 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 *
Tejun Heoffeae412006-03-01 16:09:35 +09001822 * Configure @dev according to @dev->id. Generic and low-level
1823 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 *
1825 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001826 * Kernel thread context (may sleep)
1827 *
1828 * RETURNS:
1829 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001831int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001833 struct ata_port *ap = dev->link->ap;
1834 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09001835 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001836 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001837 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001838 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001839 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1840 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001841 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001843 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001844 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1845 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001849 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001850 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Tejun Heo75683fe2007-07-05 13:31:27 +09001852 /* set horkage */
1853 dev->horkage |= ata_dev_blacklisted(dev);
1854
Tejun Heo67465442007-05-15 03:28:16 +09001855 /* let ACPI work its magic */
1856 rc = ata_acpi_on_devcfg(dev);
1857 if (rc)
1858 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001859
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001860 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001861 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001862 ata_dev_printk(dev, KERN_DEBUG,
1863 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1864 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001865 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001866 id[49], id[82], id[83], id[84],
1867 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001868
Tejun Heo208a9932006-03-05 17:55:58 +09001869 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001870 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001871 dev->max_sectors = 0;
1872 dev->cdb_len = 0;
1873 dev->n_sectors = 0;
1874 dev->cylinders = 0;
1875 dev->heads = 0;
1876 dev->sectors = 0;
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 /*
1879 * common ATA, ATAPI feature tests
1880 */
1881
Tejun Heoff8854b2006-03-06 04:31:56 +09001882 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001883 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001885 if (ata_msg_probe(ap))
1886 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Albert Leeef143d52007-06-05 13:01:33 +08001888 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1889 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1890 sizeof(fwrevbuf));
1891
1892 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1893 sizeof(modelbuf));
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 /* ATA-specific feature tests */
1896 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001897 if (ata_id_is_cfa(id)) {
1898 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001899 ata_dev_printk(dev, KERN_WARNING,
1900 "supports DRM functions and may "
1901 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001902 snprintf(revbuf, 7, "CFA");
1903 }
1904 else
1905 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1906
Tejun Heo1148c3a2006-03-13 19:48:04 +09001907 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001908
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001909 if (dev->id[59] & 0x100)
1910 dev->multi_count = dev->id[59] & 0xff;
1911
Tejun Heo1148c3a2006-03-13 19:48:04 +09001912 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001913 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001914 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001915
Tejun Heo4c2d7212006-03-05 17:55:58 +09001916 lba_desc = "LBA";
1917 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001918 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001919 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001920 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001921
1922 if (dev->n_sectors >= (1UL << 28) &&
1923 ata_id_has_flush_ext(id))
1924 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001925 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001926
Tejun Heo16c55b02007-08-29 11:58:33 +09001927 if (!(dev->horkage & ATA_HORKAGE_BROKEN_HPA) &&
1928 ata_id_hpa_enabled(dev->id))
1929 dev->n_sectors = ata_hpa_resize(dev);
Alan Cox1e999732007-04-11 00:23:13 +01001930
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001931 /* config NCQ */
1932 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1933
Albert Lee8bf62ec2005-05-12 15:29:42 -04001934 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001935 if (ata_msg_drv(ap) && print_info) {
1936 ata_dev_printk(dev, KERN_INFO,
1937 "%s: %s, %s, max %s\n",
1938 revbuf, modelbuf, fwrevbuf,
1939 ata_mode_string(xfer_mask));
1940 ata_dev_printk(dev, KERN_INFO,
1941 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001942 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001943 dev->multi_count, lba_desc, ncq_desc);
1944 }
Tejun Heoffeae412006-03-01 16:09:35 +09001945 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001946 /* CHS */
1947
1948 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001949 dev->cylinders = id[1];
1950 dev->heads = id[3];
1951 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001952
Tejun Heo1148c3a2006-03-13 19:48:04 +09001953 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001954 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001955 dev->cylinders = id[54];
1956 dev->heads = id[55];
1957 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001958 }
1959
1960 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001961 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001962 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001963 "%s: %s, %s, max %s\n",
1964 revbuf, modelbuf, fwrevbuf,
1965 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001966 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001967 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1968 (unsigned long long)dev->n_sectors,
1969 dev->multi_count, dev->cylinders,
1970 dev->heads, dev->sectors);
1971 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001972 }
1973
Tejun Heo6e7846e2006-02-12 23:32:58 +09001974 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976
1977 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001978 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001979 char *cdb_intr_string = "";
1980
Tejun Heo1148c3a2006-03-13 19:48:04 +09001981 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001983 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001984 ata_dev_printk(dev, KERN_WARNING,
1985 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001986 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 goto err_out_nosup;
1988 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001989 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04001991 /*
1992 * check to see if this ATAPI device supports
1993 * Asynchronous Notification
1994 */
1995 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_AN(id)) {
1996 int err;
1997 /* issue SET feature command to turn this on */
1998 err = ata_dev_set_AN(dev, SETFEATURES_SATA_ENABLE);
1999 if (err)
2000 ata_dev_printk(dev, KERN_ERR,
2001 "unable to set AN, err %x\n",
2002 err);
2003 else
2004 dev->flags |= ATA_DFLAG_AN;
2005 }
2006
Albert Lee08a556d2006-03-31 13:29:04 +08002007 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002008 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002009 cdb_intr_string = ", CDB intr";
2010 }
Albert Lee312f7da2005-09-27 17:38:03 +08002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002013 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002014 ata_dev_printk(dev, KERN_INFO,
2015 "ATAPI: %s, %s, max %s%s\n",
2016 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002017 ata_mode_string(xfer_mask),
2018 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
Tejun Heo914ed352006-11-01 18:39:55 +09002021 /* determine max_sectors */
2022 dev->max_sectors = ATA_MAX_SECTORS;
2023 if (dev->flags & ATA_DFLAG_LBA48)
2024 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2025
Alan Cox93590852006-09-12 16:55:12 +01002026 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2027 /* Let the user know. We don't want to disallow opens for
2028 rescue purposes, or in case the vendor is just a blithering
2029 idiot */
2030 if (print_info) {
2031 ata_dev_printk(dev, KERN_WARNING,
2032"Drive reports diagnostics failure. This may indicate a drive\n");
2033 ata_dev_printk(dev, KERN_WARNING,
2034"fault or invalid emulation. Contact drive vendor for information.\n");
2035 }
2036 }
2037
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002038 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002039 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002040 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002041 ata_dev_printk(dev, KERN_INFO,
2042 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002043 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002044 dev->max_sectors = ATA_MAX_SECTORS;
2045 }
2046
Tejun Heo75683fe2007-07-05 13:31:27 +09002047 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002048 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2049 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002050
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002051 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002052 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002053
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002054 if (ata_msg_probe(ap))
2055 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2056 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002060 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002061 ata_dev_printk(dev, KERN_DEBUG,
2062 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002063 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
2066/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002067 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002068 * @ap: port
2069 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002070 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002071 * detection.
2072 */
2073
2074int ata_cable_40wire(struct ata_port *ap)
2075{
2076 return ATA_CBL_PATA40;
2077}
2078
2079/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002080 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002081 * @ap: port
2082 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002083 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002084 * detection.
2085 */
2086
2087int ata_cable_80wire(struct ata_port *ap)
2088{
2089 return ATA_CBL_PATA80;
2090}
2091
2092/**
2093 * ata_cable_unknown - return unknown PATA cable.
2094 * @ap: port
2095 *
2096 * Helper method for drivers which have no PATA cable detection.
2097 */
2098
2099int ata_cable_unknown(struct ata_port *ap)
2100{
2101 return ATA_CBL_PATA_UNK;
2102}
2103
2104/**
2105 * ata_cable_sata - return SATA cable type
2106 * @ap: port
2107 *
2108 * Helper method for drivers which have SATA cables
2109 */
2110
2111int ata_cable_sata(struct ata_port *ap)
2112{
2113 return ATA_CBL_SATA;
2114}
2115
2116/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 * ata_bus_probe - Reset and probe ATA bus
2118 * @ap: Bus to probe
2119 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002120 * Master ATA bus probing function. Initiates a hardware-dependent
2121 * bus reset, then attempts to identify any devices found on
2122 * the bus.
2123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002125 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 *
2127 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002128 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 */
2130
Brian King80289162006-08-07 14:27:31 -05002131int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002133 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002134 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002135 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002136 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Tejun Heo28ca5c52006-03-01 16:09:36 +09002138 ata_port_probe(ap);
2139
Tejun Heof58229f2007-08-06 18:36:23 +09002140 ata_link_for_each_dev(dev, &ap->link)
2141 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002142
2143 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002144 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002145 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002146
Tejun Heof58229f2007-08-06 18:36:23 +09002147 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002148 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2149 dev->class != ATA_DEV_UNKNOWN)
2150 classes[dev->devno] = dev->class;
2151 else
2152 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002153
Tejun Heo52783c52006-05-31 18:28:22 +09002154 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Tejun Heo52783c52006-05-31 18:28:22 +09002157 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002158
Alan Coxb6079ca2006-05-22 16:52:06 +01002159 /* after the reset the device state is PIO 0 and the controller
2160 state is undefined. Record the mode */
2161
Tejun Heof58229f2007-08-06 18:36:23 +09002162 ata_link_for_each_dev(dev, &ap->link)
2163 dev->pio_mode = XFER_PIO_0;
Alan Coxb6079ca2006-05-22 16:52:06 +01002164
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002165 /* read IDENTIFY page and configure devices. We have to do the identify
2166 specific sequence bass-ackwards so that PDIAG- is released by
2167 the slave device */
2168
Tejun Heof58229f2007-08-06 18:36:23 +09002169 ata_link_for_each_dev(dev, &ap->link) {
2170 if (tries[dev->devno])
2171 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002172
Tejun Heoe1211e32006-04-01 01:38:18 +09002173 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002174 continue;
2175
Tejun Heobff04642006-11-10 18:08:10 +09002176 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2177 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002178 if (rc)
2179 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002180 }
2181
Alan Coxbe0d18d2007-03-06 02:37:56 -08002182 /* Now ask for the cable type as PDIAG- should have been released */
2183 if (ap->ops->cable_detect)
2184 ap->cbl = ap->ops->cable_detect(ap);
2185
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002186 /* After the identify sequence we can now set up the devices. We do
2187 this in the normal order so that the user doesn't get confused */
2188
Tejun Heof58229f2007-08-06 18:36:23 +09002189 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002190 if (!ata_dev_enabled(dev))
2191 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002192
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002193 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002194 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002195 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002196 if (rc)
2197 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002200 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002201 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002202 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002203 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Tejun Heof58229f2007-08-06 18:36:23 +09002205 ata_link_for_each_dev(dev, &ap->link)
2206 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002207 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002208
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002209 /* no device present, disable port */
2210 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002212 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002213
2214 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002215 tries[dev->devno]--;
2216
Tejun Heo14d2bac2006-04-02 17:54:46 +09002217 switch (rc) {
2218 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002219 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002220 tries[dev->devno] = 0;
2221 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002222
2223 case -ENODEV:
2224 /* give it just one more chance */
2225 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002226 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002227 if (tries[dev->devno] == 1) {
2228 /* This is the last chance, better to slow
2229 * down than lose it.
2230 */
Tejun Heo936fd732007-08-06 18:36:23 +09002231 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002232 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2233 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002234 }
2235
Tejun Heo4ae72a12007-02-02 16:22:30 +09002236 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002237 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002238
Tejun Heo14d2bac2006-04-02 17:54:46 +09002239 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
2242/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002243 * ata_port_probe - Mark port as enabled
2244 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002246 * Modify @ap data structure such that the system
2247 * thinks that the entire port is enabled.
2248 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002249 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002250 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 */
2252
2253void ata_port_probe(struct ata_port *ap)
2254{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002255 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
2258/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002259 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002260 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002261 *
2262 * This function prints link speed and status of a SATA link.
2263 *
2264 * LOCKING:
2265 * None.
2266 */
Tejun Heo936fd732007-08-06 18:36:23 +09002267void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002268{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002269 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002270
Tejun Heo936fd732007-08-06 18:36:23 +09002271 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002272 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002273 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002274
Tejun Heo936fd732007-08-06 18:36:23 +09002275 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002276 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002277 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002278 "SATA link up %s (SStatus %X SControl %X)\n",
2279 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002280 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002281 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002282 "SATA link down (SStatus %X SControl %X)\n",
2283 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002284 }
2285}
2286
2287/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002288 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2289 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002291 * This function issues commands to standard SATA Sxxx
2292 * PHY registers, to wake up the phy (and device), and
2293 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 *
2295 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002296 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 *
2298 */
2299void __sata_phy_reset(struct ata_port *ap)
2300{
Tejun Heo936fd732007-08-06 18:36:23 +09002301 struct ata_link *link = &ap->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo936fd732007-08-06 18:36:23 +09002303 u32 sstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05002306 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002307 sata_scr_write_flush(link, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002308 /* Couldn't find anything in SATA I/II specs, but
2309 * AHCI-1.1 10.4.2 says at least 1 ms. */
2310 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
Tejun Heo81952c52006-05-15 20:57:47 +09002312 /* phy wake/clear reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002313 sata_scr_write_flush(link, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 /* wait for phy to become ready, if necessary */
2316 do {
2317 msleep(200);
Tejun Heo936fd732007-08-06 18:36:23 +09002318 sata_scr_read(link, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if ((sstatus & 0xf) != 1)
2320 break;
2321 } while (time_before(jiffies, timeout));
2322
Tejun Heo3be680b2005-12-19 22:35:02 +09002323 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09002324 sata_print_link_status(link);
Jeff Garzik656563e2005-11-20 03:36:45 -05002325
Tejun Heo3be680b2005-12-19 22:35:02 +09002326 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09002327 if (!ata_link_offline(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002329 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Tejun Heo198e0fe2006-04-02 18:51:52 +09002332 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return;
2334
2335 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2336 ata_port_disable(ap);
2337 return;
2338 }
2339
2340 ap->cbl = ATA_CBL_SATA;
2341}
2342
2343/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002344 * sata_phy_reset - Reset SATA bus.
2345 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002347 * This function resets the SATA bus, and then probes
2348 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 *
2350 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002351 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 *
2353 */
2354void sata_phy_reset(struct ata_port *ap)
2355{
2356 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002357 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 return;
2359 ata_bus_reset(ap);
2360}
2361
2362/**
Alan Coxebdfca62006-03-23 15:38:34 +00002363 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002364 * @adev: device
2365 *
2366 * Obtain the other device on the same cable, or if none is
2367 * present NULL is returned
2368 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002369
Tejun Heo3373efd2006-05-15 20:57:53 +09002370struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002371{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002372 struct ata_link *link = adev->link;
2373 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002374 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002375 return NULL;
2376 return pair;
2377}
2378
2379/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002380 * ata_port_disable - Disable port.
2381 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002383 * Modify @ap data structure such that the system
2384 * thinks that the entire port is disabled, and should
2385 * never attempt to probe or communicate with devices
2386 * on this port.
2387 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002388 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002389 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 */
2391
2392void ata_port_disable(struct ata_port *ap)
2393{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002394 ap->link.device[0].class = ATA_DEV_NONE;
2395 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002396 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397}
2398
Tejun Heo1c3fae42006-04-02 20:53:28 +09002399/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002400 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002401 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002402 *
Tejun Heo936fd732007-08-06 18:36:23 +09002403 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002404 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002405 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002406 *
2407 * LOCKING:
2408 * Inherited from caller.
2409 *
2410 * RETURNS:
2411 * 0 on success, negative errno on failure
2412 */
Tejun Heo936fd732007-08-06 18:36:23 +09002413int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002414{
Tejun Heo81952c52006-05-15 20:57:47 +09002415 u32 sstatus, spd, mask;
2416 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002417
Tejun Heo936fd732007-08-06 18:36:23 +09002418 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002419 return -EOPNOTSUPP;
2420
2421 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002422 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002423 */
Tejun Heo936fd732007-08-06 18:36:23 +09002424 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002425 if (rc == 0)
2426 spd = (sstatus >> 4) & 0xf;
2427 else
Tejun Heo936fd732007-08-06 18:36:23 +09002428 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002429
Tejun Heo936fd732007-08-06 18:36:23 +09002430 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002431 if (mask <= 1)
2432 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002433
2434 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002435 highbit = fls(mask) - 1;
2436 mask &= ~(1 << highbit);
2437
Tejun Heo008a7892007-07-16 14:29:40 +09002438 /* Mask off all speeds higher than or equal to the current
2439 * one. Force 1.5Gbps if current SPD is not available.
2440 */
2441 if (spd > 1)
2442 mask &= (1 << (spd - 1)) - 1;
2443 else
2444 mask &= 1;
2445
2446 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002447 if (!mask)
2448 return -EINVAL;
2449
Tejun Heo936fd732007-08-06 18:36:23 +09002450 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002451
Tejun Heo936fd732007-08-06 18:36:23 +09002452 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002453 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002454
2455 return 0;
2456}
2457
Tejun Heo936fd732007-08-06 18:36:23 +09002458static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002459{
2460 u32 spd, limit;
2461
Tejun Heo936fd732007-08-06 18:36:23 +09002462 if (link->sata_spd_limit == UINT_MAX)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002463 limit = 0;
2464 else
Tejun Heo936fd732007-08-06 18:36:23 +09002465 limit = fls(link->sata_spd_limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002466
2467 spd = (*scontrol >> 4) & 0xf;
2468 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2469
2470 return spd != limit;
2471}
2472
2473/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002474 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002475 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002476 *
2477 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002478 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002479 * whether hardreset is necessary to apply SATA spd
2480 * configuration.
2481 *
2482 * LOCKING:
2483 * Inherited from caller.
2484 *
2485 * RETURNS:
2486 * 1 if SATA spd configuration is needed, 0 otherwise.
2487 */
Tejun Heo936fd732007-08-06 18:36:23 +09002488int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002489{
2490 u32 scontrol;
2491
Tejun Heo936fd732007-08-06 18:36:23 +09002492 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002493 return 0;
2494
Tejun Heo936fd732007-08-06 18:36:23 +09002495 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002496}
2497
2498/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002499 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002500 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002501 *
Tejun Heo936fd732007-08-06 18:36:23 +09002502 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002503 *
2504 * LOCKING:
2505 * Inherited from caller.
2506 *
2507 * RETURNS:
2508 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002509 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002510 */
Tejun Heo936fd732007-08-06 18:36:23 +09002511int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002512{
2513 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002514 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002515
Tejun Heo936fd732007-08-06 18:36:23 +09002516 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002517 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002518
Tejun Heo936fd732007-08-06 18:36:23 +09002519 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002520 return 0;
2521
Tejun Heo936fd732007-08-06 18:36:23 +09002522 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002523 return rc;
2524
Tejun Heo1c3fae42006-04-02 20:53:28 +09002525 return 1;
2526}
2527
Alan Cox452503f2005-10-21 19:01:32 -04002528/*
2529 * This mode timing computation functionality is ported over from
2530 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2531 */
2532/*
Alan Coxb352e572006-08-10 18:52:12 +01002533 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002534 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002535 * for UDMA6, which is currently supported only by Maxtor drives.
2536 *
2537 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002538 */
2539
2540static const struct ata_timing ata_timing[] = {
2541
2542 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2543 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2544 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2545 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2546
Alan Coxb352e572006-08-10 18:52:12 +01002547 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2548 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002549 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2550 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2551 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2552
2553/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002554
Alan Cox452503f2005-10-21 19:01:32 -04002555 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2556 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2557 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002558
Alan Cox452503f2005-10-21 19:01:32 -04002559 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2560 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2561 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2562
Alan Coxb352e572006-08-10 18:52:12 +01002563 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2564 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002565 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2566 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2567
2568 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2569 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2570 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2571
2572/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2573
2574 { 0xFF }
2575};
2576
2577#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2578#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2579
2580static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2581{
2582 q->setup = EZ(t->setup * 1000, T);
2583 q->act8b = EZ(t->act8b * 1000, T);
2584 q->rec8b = EZ(t->rec8b * 1000, T);
2585 q->cyc8b = EZ(t->cyc8b * 1000, T);
2586 q->active = EZ(t->active * 1000, T);
2587 q->recover = EZ(t->recover * 1000, T);
2588 q->cycle = EZ(t->cycle * 1000, T);
2589 q->udma = EZ(t->udma * 1000, UT);
2590}
2591
2592void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2593 struct ata_timing *m, unsigned int what)
2594{
2595 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2596 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2597 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2598 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2599 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2600 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2601 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2602 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2603}
2604
2605static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2606{
2607 const struct ata_timing *t;
2608
2609 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002610 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002611 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002612 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002613}
2614
2615int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2616 struct ata_timing *t, int T, int UT)
2617{
2618 const struct ata_timing *s;
2619 struct ata_timing p;
2620
2621 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002622 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002623 */
Alan Cox452503f2005-10-21 19:01:32 -04002624
2625 if (!(s = ata_timing_find_mode(speed)))
2626 return -EINVAL;
2627
Albert Lee75b1f2f2005-11-16 17:06:18 +08002628 memcpy(t, s, sizeof(*s));
2629
Alan Cox452503f2005-10-21 19:01:32 -04002630 /*
2631 * If the drive is an EIDE drive, it can tell us it needs extended
2632 * PIO/MW_DMA cycle timing.
2633 */
2634
2635 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2636 memset(&p, 0, sizeof(p));
2637 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2638 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2639 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2640 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2641 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2642 }
2643 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2644 }
2645
2646 /*
2647 * Convert the timing to bus clock counts.
2648 */
2649
Albert Lee75b1f2f2005-11-16 17:06:18 +08002650 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002651
2652 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002653 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2654 * S.M.A.R.T * and some other commands. We have to ensure that the
2655 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002656 */
2657
Alanfd3367a2006-12-07 12:41:18 +00002658 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002659 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2660 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2661 }
2662
2663 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002664 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002665 */
2666
2667 if (t->act8b + t->rec8b < t->cyc8b) {
2668 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2669 t->rec8b = t->cyc8b - t->act8b;
2670 }
2671
2672 if (t->active + t->recover < t->cycle) {
2673 t->active += (t->cycle - (t->active + t->recover)) / 2;
2674 t->recover = t->cycle - t->active;
2675 }
Jeff Garzika617c092007-05-21 20:14:23 -04002676
Alan Cox4f701d12007-04-23 11:55:36 +01002677 /* In a few cases quantisation may produce enough errors to
2678 leave t->cycle too low for the sum of active and recovery
2679 if so we must correct this */
2680 if (t->active + t->recover > t->cycle)
2681 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002682
2683 return 0;
2684}
2685
Tejun Heocf176e12006-04-02 17:54:46 +09002686/**
2687 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002688 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002689 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002690 *
2691 * Adjust xfer masks of @dev downward. Note that this function
2692 * does not apply the change. Invoking ata_set_mode() afterwards
2693 * will apply the limit.
2694 *
2695 * LOCKING:
2696 * Inherited from caller.
2697 *
2698 * RETURNS:
2699 * 0 on success, negative errno on failure
2700 */
Tejun Heo458337d2007-02-02 16:22:30 +09002701int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002702{
Tejun Heo458337d2007-02-02 16:22:30 +09002703 char buf[32];
2704 unsigned int orig_mask, xfer_mask;
2705 unsigned int pio_mask, mwdma_mask, udma_mask;
2706 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002707
Tejun Heo458337d2007-02-02 16:22:30 +09002708 quiet = !!(sel & ATA_DNXFER_QUIET);
2709 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002710
Tejun Heo458337d2007-02-02 16:22:30 +09002711 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2712 dev->mwdma_mask,
2713 dev->udma_mask);
2714 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002715
Tejun Heo458337d2007-02-02 16:22:30 +09002716 switch (sel) {
2717 case ATA_DNXFER_PIO:
2718 highbit = fls(pio_mask) - 1;
2719 pio_mask &= ~(1 << highbit);
2720 break;
2721
2722 case ATA_DNXFER_DMA:
2723 if (udma_mask) {
2724 highbit = fls(udma_mask) - 1;
2725 udma_mask &= ~(1 << highbit);
2726 if (!udma_mask)
2727 return -ENOENT;
2728 } else if (mwdma_mask) {
2729 highbit = fls(mwdma_mask) - 1;
2730 mwdma_mask &= ~(1 << highbit);
2731 if (!mwdma_mask)
2732 return -ENOENT;
2733 }
2734 break;
2735
2736 case ATA_DNXFER_40C:
2737 udma_mask &= ATA_UDMA_MASK_40C;
2738 break;
2739
2740 case ATA_DNXFER_FORCE_PIO0:
2741 pio_mask &= 1;
2742 case ATA_DNXFER_FORCE_PIO:
2743 mwdma_mask = 0;
2744 udma_mask = 0;
2745 break;
2746
Tejun Heo458337d2007-02-02 16:22:30 +09002747 default:
2748 BUG();
2749 }
2750
2751 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2752
2753 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2754 return -ENOENT;
2755
2756 if (!quiet) {
2757 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2758 snprintf(buf, sizeof(buf), "%s:%s",
2759 ata_mode_string(xfer_mask),
2760 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2761 else
2762 snprintf(buf, sizeof(buf), "%s",
2763 ata_mode_string(xfer_mask));
2764
2765 ata_dev_printk(dev, KERN_WARNING,
2766 "limiting speed to %s\n", buf);
2767 }
Tejun Heocf176e12006-04-02 17:54:46 +09002768
2769 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2770 &dev->udma_mask);
2771
Tejun Heocf176e12006-04-02 17:54:46 +09002772 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002773}
2774
Tejun Heo3373efd2006-05-15 20:57:53 +09002775static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002777 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002778 unsigned int err_mask;
2779 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Tejun Heoe8384602006-04-02 18:51:53 +09002781 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (dev->xfer_shift == ATA_SHIFT_PIO)
2783 dev->flags |= ATA_DFLAG_PIO;
2784
Tejun Heo3373efd2006-05-15 20:57:53 +09002785 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002786 /* Old CFA may refuse this command, which is just fine */
2787 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2788 err_mask &= ~AC_ERR_DEV;
Alan Cox0bc2a792007-07-31 14:01:48 +01002789 /* Some very old devices and some bad newer ones fail any kind of
2790 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
2791 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
2792 dev->pio_mode <= XFER_PIO_2)
2793 err_mask &= ~AC_ERR_DEV;
Tejun Heo83206a22006-03-24 15:25:31 +09002794 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002795 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2796 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002797 return -EIO;
2798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Tejun Heobaa1e782006-11-01 18:39:27 +09002800 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002801 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002802 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002803 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002804 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002805
Tejun Heo23e71c32006-03-06 04:31:57 +09002806 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2807 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Tejun Heof15a1da2006-05-15 20:57:56 +09002809 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2810 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814/**
Alan04351822007-03-06 02:37:52 -08002815 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002816 * @link: link on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002817 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 *
Alan04351822007-03-06 02:37:52 -08002819 * Standard implementation of the function used to tune and set
2820 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2821 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002822 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002823 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002825 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002826 *
2827 * RETURNS:
2828 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 */
Alan04351822007-03-06 02:37:52 -08002830
Tejun Heo02607312007-08-06 18:36:23 +09002831int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Tejun Heo02607312007-08-06 18:36:23 +09002833 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09002834 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09002835 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09002836
Tejun Heoa6d5a512006-03-06 04:31:57 +09002837 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09002838 ata_link_for_each_dev(dev, link) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002839 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002840
Tejun Heoe1211e32006-04-01 01:38:18 +09002841 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002842 continue;
2843
Tejun Heo3373efd2006-05-15 20:57:53 +09002844 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002845
Tejun Heoacf356b2006-03-24 14:07:50 +09002846 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2847 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2848 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2849 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002850
Tejun Heo4f659772006-04-01 01:38:18 +09002851 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002852 if (dev->dma_mode)
2853 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002854 }
Tejun Heo4f659772006-04-01 01:38:18 +09002855 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002856 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002857
2858 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002859 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002860 if (!ata_dev_enabled(dev))
2861 continue;
2862
2863 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002864 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002865 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002866 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002867 }
2868
2869 dev->xfer_mode = dev->pio_mode;
2870 dev->xfer_shift = ATA_SHIFT_PIO;
2871 if (ap->ops->set_piomode)
2872 ap->ops->set_piomode(ap, dev);
2873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Tejun Heoa6d5a512006-03-06 04:31:57 +09002875 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002876 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002877 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2878 continue;
2879
2880 dev->xfer_mode = dev->dma_mode;
2881 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2882 if (ap->ops->set_dmamode)
2883 ap->ops->set_dmamode(ap, dev);
2884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09002887 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00002888 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002889 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002890 continue;
2891
Tejun Heo3373efd2006-05-15 20:57:53 +09002892 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002893 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002894 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Tejun Heoe8e06192006-04-01 01:38:18 +09002897 /* Record simplex status. If we selected DMA then the other
2898 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002899 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002900 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002901 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002902
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002903 out:
2904 if (rc)
2905 *r_failed_dev = dev;
2906 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908
2909/**
Alan04351822007-03-06 02:37:52 -08002910 * ata_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002911 * @link: link on which timings will be programmed
Alan04351822007-03-06 02:37:52 -08002912 * @r_failed_dev: out paramter for failed device
2913 *
2914 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2915 * ata_set_mode() fails, pointer to the failing device is
2916 * returned in @r_failed_dev.
2917 *
2918 * LOCKING:
2919 * PCI/etc. bus probe sem.
2920 *
2921 * RETURNS:
2922 * 0 on success, negative errno otherwise
2923 */
Tejun Heo02607312007-08-06 18:36:23 +09002924int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Alan04351822007-03-06 02:37:52 -08002925{
Tejun Heo02607312007-08-06 18:36:23 +09002926 struct ata_port *ap = link->ap;
2927
Alan04351822007-03-06 02:37:52 -08002928 /* has private set_mode? */
2929 if (ap->ops->set_mode)
Tejun Heo02607312007-08-06 18:36:23 +09002930 return ap->ops->set_mode(link, r_failed_dev);
2931 return ata_do_set_mode(link, r_failed_dev);
Alan04351822007-03-06 02:37:52 -08002932}
2933
2934/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002935 * ata_tf_to_host - issue ATA taskfile to host controller
2936 * @ap: port to which command is being issued
2937 * @tf: ATA taskfile register set
2938 *
2939 * Issues ATA taskfile register set to ATA host controller,
2940 * with proper synchronization with interrupt handler and
2941 * other threads.
2942 *
2943 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002944 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002945 */
2946
2947static inline void ata_tf_to_host(struct ata_port *ap,
2948 const struct ata_taskfile *tf)
2949{
2950 ap->ops->tf_load(ap, tf);
2951 ap->ops->exec_command(ap, tf);
2952}
2953
2954/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 * ata_busy_sleep - sleep until BSY clears, or timeout
2956 * @ap: port containing status register to be polled
2957 * @tmout_pat: impatience timeout
2958 * @tmout: overall timeout
2959 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002960 * Sleep until ATA Status register bit BSY clears,
2961 * or a timeout occurs.
2962 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002963 * LOCKING:
2964 * Kernel thread context (may sleep).
2965 *
2966 * RETURNS:
2967 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002969int ata_busy_sleep(struct ata_port *ap,
2970 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
2972 unsigned long timer_start, timeout;
2973 u8 status;
2974
2975 status = ata_busy_wait(ap, ATA_BUSY, 300);
2976 timer_start = jiffies;
2977 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002978 while (status != 0xff && (status & ATA_BUSY) &&
2979 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 msleep(50);
2981 status = ata_busy_wait(ap, ATA_BUSY, 3);
2982 }
2983
Tejun Heod1adc1b2006-10-09 18:32:15 +09002984 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002985 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002986 "port is slow to respond, please be patient "
2987 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002990 while (status != 0xff && (status & ATA_BUSY) &&
2991 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 msleep(50);
2993 status = ata_chk_status(ap);
2994 }
2995
Tejun Heod1adc1b2006-10-09 18:32:15 +09002996 if (status == 0xff)
2997 return -ENODEV;
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003000 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003001 "(%lu secs, Status 0x%x)\n",
3002 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09003003 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 }
3005
3006 return 0;
3007}
3008
Tejun Heod4b2bab2007-02-02 16:50:52 +09003009/**
3010 * ata_wait_ready - sleep until BSY clears, or timeout
3011 * @ap: port containing status register to be polled
3012 * @deadline: deadline jiffies for the operation
3013 *
3014 * Sleep until ATA Status register bit BSY clears, or timeout
3015 * occurs.
3016 *
3017 * LOCKING:
3018 * Kernel thread context (may sleep).
3019 *
3020 * RETURNS:
3021 * 0 on success, -errno otherwise.
3022 */
3023int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3024{
3025 unsigned long start = jiffies;
3026 int warned = 0;
3027
3028 while (1) {
3029 u8 status = ata_chk_status(ap);
3030 unsigned long now = jiffies;
3031
3032 if (!(status & ATA_BUSY))
3033 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003034 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003035 return -ENODEV;
3036 if (time_after(now, deadline))
3037 return -EBUSY;
3038
3039 if (!warned && time_after(now, start + 5 * HZ) &&
3040 (deadline - now > 3 * HZ)) {
3041 ata_port_printk(ap, KERN_WARNING,
3042 "port is slow to respond, please be patient "
3043 "(Status 0x%x)\n", status);
3044 warned = 1;
3045 }
3046
3047 msleep(50);
3048 }
3049}
3050
3051static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3052 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
3054 struct ata_ioports *ioaddr = &ap->ioaddr;
3055 unsigned int dev0 = devmask & (1 << 0);
3056 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003057 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 /* if device 0 was found in ata_devchk, wait for its
3060 * BSY bit to clear
3061 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003062 if (dev0) {
3063 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003064 if (rc) {
3065 if (rc != -ENODEV)
3066 return rc;
3067 ret = rc;
3068 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Tejun Heoe141d992007-06-10 14:26:20 +09003071 /* if device 1 was found in ata_devchk, wait for register
3072 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 */
Tejun Heoe141d992007-06-10 14:26:20 +09003074 if (dev1) {
3075 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003078
3079 /* Wait for register access. Some ATAPI devices fail
3080 * to set nsect/lbal after reset, so don't waste too
3081 * much time on it. We're gonna wait for !BSY anyway.
3082 */
3083 for (i = 0; i < 2; i++) {
3084 u8 nsect, lbal;
3085
3086 nsect = ioread8(ioaddr->nsect_addr);
3087 lbal = ioread8(ioaddr->lbal_addr);
3088 if ((nsect == 1) && (lbal == 1))
3089 break;
3090 msleep(50); /* give drive a breather */
3091 }
3092
Tejun Heod4b2bab2007-02-02 16:50:52 +09003093 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003094 if (rc) {
3095 if (rc != -ENODEV)
3096 return rc;
3097 ret = rc;
3098 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 /* is all this really necessary? */
3102 ap->ops->dev_select(ap, 0);
3103 if (dev1)
3104 ap->ops->dev_select(ap, 1);
3105 if (dev0)
3106 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003107
Tejun Heo9b893912007-02-02 16:50:52 +09003108 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
3110
Tejun Heod4b2bab2007-02-02 16:50:52 +09003111static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3112 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
3114 struct ata_ioports *ioaddr = &ap->ioaddr;
3115
Tejun Heo44877b42007-02-21 01:06:51 +09003116 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003119 iowrite8(ap->ctl, ioaddr->ctl_addr);
3120 udelay(20); /* FIXME: flush */
3121 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3122 udelay(20); /* FIXME: flush */
3123 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125 /* spec mandates ">= 2ms" before checking status.
3126 * We wait 150ms, because that was the magic delay used for
3127 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3128 * between when the ATA command register is written, and then
3129 * status is checked. Because waiting for "a while" before
3130 * checking status is fine, post SRST, we perform this magic
3131 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003132 *
3133 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 */
3135 msleep(150);
3136
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003137 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003138 * the bus shows 0xFF because the odd clown forgets the D7
3139 * pulldown resistor.
3140 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003141 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003142 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003143
Tejun Heod4b2bab2007-02-02 16:50:52 +09003144 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145}
3146
3147/**
3148 * ata_bus_reset - reset host port and associated ATA channel
3149 * @ap: port to reset
3150 *
3151 * This is typically the first time we actually start issuing
3152 * commands to the ATA channel. We wait for BSY to clear, then
3153 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3154 * result. Determine what devices, if any, are on the channel
3155 * by looking at the device 0/1 error register. Look at the signature
3156 * stored in each device's taskfile registers, to determine if
3157 * the device is ATA or ATAPI.
3158 *
3159 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003160 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003161 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 *
3163 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003164 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 */
3166
3167void ata_bus_reset(struct ata_port *ap)
3168{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003169 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 struct ata_ioports *ioaddr = &ap->ioaddr;
3171 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3172 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003173 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003174 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Tejun Heo44877b42007-02-21 01:06:51 +09003176 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
3178 /* determine if device 0/1 are present */
3179 if (ap->flags & ATA_FLAG_SATA_RESET)
3180 dev0 = 1;
3181 else {
3182 dev0 = ata_devchk(ap, 0);
3183 if (slave_possible)
3184 dev1 = ata_devchk(ap, 1);
3185 }
3186
3187 if (dev0)
3188 devmask |= (1 << 0);
3189 if (dev1)
3190 devmask |= (1 << 1);
3191
3192 /* select device 0 again */
3193 ap->ops->dev_select(ap, 0);
3194
3195 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003196 if (ap->flags & ATA_FLAG_SRST) {
3197 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3198 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003199 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202 /*
3203 * determine by signature whether we have ATA or ATAPI devices
3204 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003205 device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if ((slave_possible) && (err != 0x81))
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003207 device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003210 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003212 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 ap->ops->dev_select(ap, 0);
3214
3215 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003216 if ((device[0].class == ATA_DEV_NONE) &&
3217 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 goto err_out;
3219
3220 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3221 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003222 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 }
3224
3225 DPRINTK("EXIT\n");
3226 return;
3227
3228err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003229 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 ap->ops->port_disable(ap);
3231
3232 DPRINTK("EXIT\n");
3233}
3234
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003235/**
Tejun Heo936fd732007-08-06 18:36:23 +09003236 * sata_link_debounce - debounce SATA phy status
3237 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003238 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003239 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003240 *
Tejun Heo936fd732007-08-06 18:36:23 +09003241* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003242 * holding the same value where DET is not 1 for @duration polled
3243 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003244 * beginning of the stable state. Because DET gets stuck at 1 on
3245 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003246 * until timeout then returns 0 if DET is stable at 1.
3247 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003248 * @timeout is further limited by @deadline. The sooner of the
3249 * two is used.
3250 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003251 * LOCKING:
3252 * Kernel thread context (may sleep)
3253 *
3254 * RETURNS:
3255 * 0 on success, -errno on failure.
3256 */
Tejun Heo936fd732007-08-06 18:36:23 +09003257int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3258 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003259{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003260 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003261 unsigned long duration = msecs_to_jiffies(params[1]);
3262 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003263 u32 last, cur;
3264 int rc;
3265
Tejun Heod4b2bab2007-02-02 16:50:52 +09003266 t = jiffies + msecs_to_jiffies(params[2]);
3267 if (time_before(t, deadline))
3268 deadline = t;
3269
Tejun Heo936fd732007-08-06 18:36:23 +09003270 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003271 return rc;
3272 cur &= 0xf;
3273
3274 last = cur;
3275 last_jiffies = jiffies;
3276
3277 while (1) {
3278 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003279 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003280 return rc;
3281 cur &= 0xf;
3282
3283 /* DET stable? */
3284 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003285 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003286 continue;
3287 if (time_after(jiffies, last_jiffies + duration))
3288 return 0;
3289 continue;
3290 }
3291
3292 /* unstable, start over */
3293 last = cur;
3294 last_jiffies = jiffies;
3295
Tejun Heof1545152007-07-16 14:29:40 +09003296 /* Check deadline. If debouncing failed, return
3297 * -EPIPE to tell upper layer to lower link speed.
3298 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003299 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003300 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003301 }
3302}
3303
3304/**
Tejun Heo936fd732007-08-06 18:36:23 +09003305 * sata_link_resume - resume SATA link
3306 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003307 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003308 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003309 *
Tejun Heo936fd732007-08-06 18:36:23 +09003310 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003311 *
3312 * LOCKING:
3313 * Kernel thread context (may sleep)
3314 *
3315 * RETURNS:
3316 * 0 on success, -errno on failure.
3317 */
Tejun Heo936fd732007-08-06 18:36:23 +09003318int sata_link_resume(struct ata_link *link, const unsigned long *params,
3319 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003320{
3321 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003322 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003323
Tejun Heo936fd732007-08-06 18:36:23 +09003324 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003325 return rc;
3326
Tejun Heo852ee162006-04-01 01:38:18 +09003327 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003328
Tejun Heo936fd732007-08-06 18:36:23 +09003329 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003330 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003331
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003332 /* Some PHYs react badly if SStatus is pounded immediately
3333 * after resuming. Delay 200ms before debouncing.
3334 */
3335 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003336
Tejun Heo936fd732007-08-06 18:36:23 +09003337 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003338}
3339
Tejun Heof5914a42006-05-31 18:27:48 +09003340/**
3341 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003342 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003343 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003344 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003345 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003346 * prereset makes libata abort whole reset sequence and give up
3347 * that port, so prereset should be best-effort. It does its
3348 * best to prepare for reset sequence but if things go wrong, it
3349 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003350 *
3351 * LOCKING:
3352 * Kernel thread context (may sleep)
3353 *
3354 * RETURNS:
3355 * 0 on success, -errno otherwise.
3356 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003357int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003358{
Tejun Heocc0680a2007-08-06 18:36:23 +09003359 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003360 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003361 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003362 int rc;
3363
Tejun Heo31daabd2007-02-02 16:50:52 +09003364 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003365 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
Tejun Heo0c887582007-08-06 18:36:23 +09003366 (link->flags & ATA_LFLAG_HRST_TO_RESUME))
Tejun Heo28324302006-07-03 16:07:26 +09003367 ehc->i.action |= ATA_EH_HARDRESET;
3368
Tejun Heof5914a42006-05-31 18:27:48 +09003369 /* if we're about to do hardreset, nothing more to do */
3370 if (ehc->i.action & ATA_EH_HARDRESET)
3371 return 0;
3372
Tejun Heo936fd732007-08-06 18:36:23 +09003373 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003374 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003375 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003376 /* whine about phy resume failure but proceed */
3377 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003378 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003379 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003380 }
3381
3382 /* Wait for !BSY if the controller can wait for the first D2H
3383 * Reg FIS and we don't know that no device is attached.
3384 */
Tejun Heo0c887582007-08-06 18:36:23 +09003385 if (!(link->flags & ATA_LFLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003386 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003387 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003388 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003389 "(errno=%d), forcing hardreset\n", rc);
3390 ehc->i.action |= ATA_EH_HARDRESET;
3391 }
3392 }
Tejun Heof5914a42006-05-31 18:27:48 +09003393
3394 return 0;
3395}
3396
Tejun Heoc2bd5802006-01-24 17:05:22 +09003397/**
3398 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003399 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003400 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003401 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003402 *
Tejun Heo52783c52006-05-31 18:28:22 +09003403 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003404 *
3405 * LOCKING:
3406 * Kernel thread context (may sleep)
3407 *
3408 * RETURNS:
3409 * 0 on success, -errno otherwise.
3410 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003411int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003412 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003413{
Tejun Heocc0680a2007-08-06 18:36:23 +09003414 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003415 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003416 unsigned int devmask = 0;
3417 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003418 u8 err;
3419
3420 DPRINTK("ENTER\n");
3421
Tejun Heo936fd732007-08-06 18:36:23 +09003422 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003423 classes[0] = ATA_DEV_NONE;
3424 goto out;
3425 }
3426
Tejun Heoc2bd5802006-01-24 17:05:22 +09003427 /* determine if device 0/1 are present */
3428 if (ata_devchk(ap, 0))
3429 devmask |= (1 << 0);
3430 if (slave_possible && ata_devchk(ap, 1))
3431 devmask |= (1 << 1);
3432
Tejun Heoc2bd5802006-01-24 17:05:22 +09003433 /* select device 0 again */
3434 ap->ops->dev_select(ap, 0);
3435
3436 /* issue bus reset */
3437 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003438 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003439 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09003440 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003441 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003442 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003443 }
3444
3445 /* determine by signature whether we have ATA or ATAPI devices */
3446 classes[0] = ata_dev_try_classify(ap, 0, &err);
3447 if (slave_possible && err != 0x81)
3448 classes[1] = ata_dev_try_classify(ap, 1, &err);
3449
Tejun Heo3a397462006-02-10 23:58:48 +09003450 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003451 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3452 return 0;
3453}
3454
3455/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003456 * sata_link_hardreset - reset link via SATA phy reset
3457 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003458 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003459 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003460 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003461 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003462 *
3463 * LOCKING:
3464 * Kernel thread context (may sleep)
3465 *
3466 * RETURNS:
3467 * 0 on success, -errno otherwise.
3468 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003469int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003470 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003471{
Tejun Heo852ee162006-04-01 01:38:18 +09003472 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003473 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003474
Tejun Heoc2bd5802006-01-24 17:05:22 +09003475 DPRINTK("ENTER\n");
3476
Tejun Heo936fd732007-08-06 18:36:23 +09003477 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003478 /* SATA spec says nothing about how to reconfigure
3479 * spd. To be on the safe side, turn off phy during
3480 * reconfiguration. This works for at least ICH7 AHCI
3481 * and Sil3124.
3482 */
Tejun Heo936fd732007-08-06 18:36:23 +09003483 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003484 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003485
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003486 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003487
Tejun Heo936fd732007-08-06 18:36:23 +09003488 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003489 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003490
Tejun Heo936fd732007-08-06 18:36:23 +09003491 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003492 }
3493
3494 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003495 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003496 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003497
Tejun Heo852ee162006-04-01 01:38:18 +09003498 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003499
Tejun Heo936fd732007-08-06 18:36:23 +09003500 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003501 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003502
Tejun Heo1c3fae42006-04-02 20:53:28 +09003503 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003504 * 10.4.2 says at least 1 ms.
3505 */
3506 msleep(1);
3507
Tejun Heo936fd732007-08-06 18:36:23 +09003508 /* bring link back */
3509 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003510 out:
3511 DPRINTK("EXIT, rc=%d\n", rc);
3512 return rc;
3513}
3514
3515/**
3516 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003517 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003518 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003519 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003520 *
3521 * SATA phy-reset host port using DET bits of SControl register,
3522 * wait for !BSY and classify the attached device.
3523 *
3524 * LOCKING:
3525 * Kernel thread context (may sleep)
3526 *
3527 * RETURNS:
3528 * 0 on success, -errno otherwise.
3529 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003530int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003531 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003532{
Tejun Heocc0680a2007-08-06 18:36:23 +09003533 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003534 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09003535 int rc;
3536
3537 DPRINTK("ENTER\n");
3538
3539 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09003540 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003541 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003542 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09003543 "COMRESET failed (errno=%d)\n", rc);
3544 return rc;
3545 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003546
Tejun Heoc2bd5802006-01-24 17:05:22 +09003547 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09003548 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003549 *class = ATA_DEV_NONE;
3550 DPRINTK("EXIT, link offline\n");
3551 return 0;
3552 }
3553
Tejun Heo34fee222007-02-02 15:29:27 +09003554 /* wait a while before checking status, see SRST for more info */
3555 msleep(150);
3556
Tejun Heod4b2bab2007-02-02 16:50:52 +09003557 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003558 /* link occupied, -ENODEV too is an error */
3559 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003560 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003561 "COMRESET failed (errno=%d)\n", rc);
3562 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003563 }
3564
Tejun Heo3a397462006-02-10 23:58:48 +09003565 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3566
Tejun Heoc2bd5802006-01-24 17:05:22 +09003567 *class = ata_dev_try_classify(ap, 0, NULL);
3568
3569 DPRINTK("EXIT, class=%u\n", *class);
3570 return 0;
3571}
3572
3573/**
3574 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003575 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003576 * @classes: classes of attached devices
3577 *
3578 * This function is invoked after a successful reset. Note that
3579 * the device might have been reset more than once using
3580 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003581 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003582 * LOCKING:
3583 * Kernel thread context (may sleep)
3584 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003585void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003586{
Tejun Heocc0680a2007-08-06 18:36:23 +09003587 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003588 u32 serror;
3589
Tejun Heoc2bd5802006-01-24 17:05:22 +09003590 DPRINTK("ENTER\n");
3591
Tejun Heoc2bd5802006-01-24 17:05:22 +09003592 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003593 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003594
Tejun Heodc2b3512006-05-15 20:58:00 +09003595 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003596 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3597 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heodc2b3512006-05-15 20:58:00 +09003598
Tejun Heoc2bd5802006-01-24 17:05:22 +09003599 /* is double-select really necessary? */
3600 if (classes[0] != ATA_DEV_NONE)
3601 ap->ops->dev_select(ap, 1);
3602 if (classes[1] != ATA_DEV_NONE)
3603 ap->ops->dev_select(ap, 0);
3604
Tejun Heo3a397462006-02-10 23:58:48 +09003605 /* bail out if no device is present */
3606 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3607 DPRINTK("EXIT, no device\n");
3608 return;
3609 }
3610
3611 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003612 if (ap->ioaddr.ctl_addr)
3613 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003614
3615 DPRINTK("EXIT\n");
3616}
3617
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003618/**
Tejun Heo623a3122006-03-05 17:55:58 +09003619 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003620 * @dev: device to compare against
3621 * @new_class: class of the new device
3622 * @new_id: IDENTIFY page of the new device
3623 *
3624 * Compare @new_class and @new_id against @dev and determine
3625 * whether @dev is the device indicated by @new_class and
3626 * @new_id.
3627 *
3628 * LOCKING:
3629 * None.
3630 *
3631 * RETURNS:
3632 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3633 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003634static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3635 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003636{
3637 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003638 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3639 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003640
3641 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003642 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3643 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003644 return 0;
3645 }
3646
Tejun Heoa0cf7332007-01-02 20:18:49 +09003647 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3648 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3649 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3650 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003651
3652 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003653 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3654 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003655 return 0;
3656 }
3657
3658 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003659 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3660 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003661 return 0;
3662 }
3663
Tejun Heo623a3122006-03-05 17:55:58 +09003664 return 1;
3665}
3666
3667/**
Tejun Heofe309112007-05-15 03:28:15 +09003668 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003669 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003670 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003671 *
3672 * Re-read IDENTIFY page and make sure @dev is still attached to
3673 * the port.
3674 *
3675 * LOCKING:
3676 * Kernel thread context (may sleep)
3677 *
3678 * RETURNS:
3679 * 0 on success, negative errno otherwise
3680 */
Tejun Heofe309112007-05-15 03:28:15 +09003681int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003682{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003683 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003684 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003685 int rc;
3686
Tejun Heofe635c72006-05-15 20:57:35 +09003687 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003688 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003689 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003690 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003691
3692 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003693 if (!ata_dev_same_device(dev, class, id))
3694 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003695
Tejun Heofe635c72006-05-15 20:57:35 +09003696 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003697 return 0;
3698}
3699
3700/**
3701 * ata_dev_revalidate - Revalidate ATA device
3702 * @dev: device to revalidate
3703 * @readid_flags: read ID flags
3704 *
3705 * Re-read IDENTIFY page, make sure @dev is still attached to the
3706 * port and reconfigure it according to the new IDENTIFY page.
3707 *
3708 * LOCKING:
3709 * Kernel thread context (may sleep)
3710 *
3711 * RETURNS:
3712 * 0 on success, negative errno otherwise
3713 */
3714int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
3715{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003716 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003717 int rc;
3718
3719 if (!ata_dev_enabled(dev))
3720 return -ENODEV;
3721
3722 /* re-read ID */
3723 rc = ata_dev_reread_id(dev, readid_flags);
3724 if (rc)
3725 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003726
3727 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003728 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003729 if (rc)
3730 goto fail;
3731
3732 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003733 if (dev->class == ATA_DEV_ATA && n_sectors &&
3734 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003735 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3736 "%llu != %llu\n",
3737 (unsigned long long)n_sectors,
3738 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003739
3740 /* restore original n_sectors */
3741 dev->n_sectors = n_sectors;
3742
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003743 rc = -ENODEV;
3744 goto fail;
3745 }
3746
3747 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003748
3749 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003750 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003751 return rc;
3752}
3753
Alan Cox6919a0a2006-10-27 19:08:46 -07003754struct ata_blacklist_entry {
3755 const char *model_num;
3756 const char *model_rev;
3757 unsigned long horkage;
3758};
3759
3760static const struct ata_blacklist_entry ata_device_blacklist [] = {
3761 /* Devices with DMA related problems under Linux */
3762 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3763 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3764 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3765 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3766 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3767 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3768 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3769 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3770 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3771 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3772 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3773 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3774 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3775 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3776 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3777 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3778 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3779 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3780 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3781 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3782 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3783 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3784 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3785 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3786 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3787 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003788 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3789 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3790 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003791 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003792 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003793 { "IOMEGA ZIP 250 ATAPI Floppy",
3794 NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003795
Albert Lee18d6e9d2007-04-02 11:34:15 +08003796 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003797 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003798
Alan Cox6919a0a2006-10-27 19:08:46 -07003799 /* Devices we expect to fail diagnostics */
3800
3801 /* Devices where NCQ should be avoided */
3802 /* NCQ is slow */
3803 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003804 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3805 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003806 /* NCQ is broken */
3807 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
Chuck Ebberte8361fc2007-07-12 14:37:19 -04003808 { "Maxtor 6B200M0", "BANC1BM0", ATA_HORKAGE_NONCQ },
Jeff Garzik471e44b2007-05-28 09:00:05 -04003809 { "Maxtor 6B200M0", "BANC1B10", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003810 { "Maxtor 7B250S0", "BANC1B70", ATA_HORKAGE_NONCQ, },
3811 { "Maxtor 7B300S0", "BANC1B70", ATA_HORKAGE_NONCQ },
3812 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Prarit Bhargava2f8d90a2007-07-10 18:13:28 -04003813 { "HITACHI HDS7250SASUN500G 0621KTAWSD", "K2AOAJ0AHITACHI",
3814 ATA_HORKAGE_NONCQ },
Jens Axboe96442922007-03-30 09:27:58 +02003815 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3816 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
Robert Hancock36e337d2007-04-02 22:05:29 -06003817 /* Blacklist entries taken from Silicon Image 3124/3132
3818 Windows driver .inf file - also several Linux problem reports */
3819 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3820 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3821 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003822 /* Drives which do spurious command completion */
3823 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003824 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003825 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003826 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003827 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003828 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003829 { "ST3160812AS", "3.AD", ATA_HORKAGE_NONCQ, },
Tejun Heo5d6aca82007-07-28 16:25:25 +09003830 { "SAMSUNG HD401LJ", "ZZ100-15", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003831
Tejun Heo16c55b02007-08-29 11:58:33 +09003832 /* devices which puke on READ_NATIVE_MAX */
3833 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3834 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3835 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3836 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003837
3838 /* End Marker */
3839 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003841
Tejun Heo75683fe2007-07-05 13:31:27 +09003842static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003844 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3845 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003846 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003847
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003848 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3849 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Alan Cox6919a0a2006-10-27 19:08:46 -07003851 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003852 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003853 if (ad->model_rev == NULL)
3854 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003855 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003856 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003857 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003858 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 return 0;
3861}
3862
Alan Cox6919a0a2006-10-27 19:08:46 -07003863static int ata_dma_blacklisted(const struct ata_device *dev)
3864{
3865 /* We don't support polling DMA.
3866 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3867 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3868 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003869 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003870 (dev->flags & ATA_DFLAG_CDB_INTR))
3871 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003872 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003873}
3874
Tejun Heoa6d5a512006-03-06 04:31:57 +09003875/**
3876 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003877 * @dev: Device to compute xfermask for
3878 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003879 * Compute supported xfermask of @dev and store it in
3880 * dev->*_mask. This function is responsible for applying all
3881 * known limits including host controller limits, device
3882 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003883 *
3884 * LOCKING:
3885 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003886 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003887static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003889 struct ata_link *link = dev->link;
3890 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003891 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003892 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Tejun Heo37deecb2006-08-10 16:59:07 +09003894 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003895 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3896 ap->mwdma_mask, ap->udma_mask);
3897
Robert Hancock8343f882007-03-06 02:37:51 -08003898 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003899 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3900 dev->mwdma_mask, dev->udma_mask);
3901 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003902
Alan Coxb352e572006-08-10 18:52:12 +01003903 /*
3904 * CFA Advanced TrueIDE timings are not allowed on a shared
3905 * cable
3906 */
3907 if (ata_dev_pair(dev)) {
3908 /* No PIO5 or PIO6 */
3909 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3910 /* No MWDMA3 or MWDMA 4 */
3911 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3912 }
3913
Tejun Heo37deecb2006-08-10 16:59:07 +09003914 if (ata_dma_blacklisted(dev)) {
3915 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003916 ata_dev_printk(dev, KERN_WARNING,
3917 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003918 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003919
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003920 if ((host->flags & ATA_HOST_SIMPLEX) &&
3921 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003922 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3923 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3924 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003925 }
Tejun Heo565083e2006-04-02 17:54:47 +09003926
Jeff Garzike4246752007-03-09 09:56:46 -05003927 if (ap->flags & ATA_FLAG_NO_IORDY)
3928 xfer_mask &= ata_pio_mask_no_iordy(dev);
3929
Alan Cox5444a6f2006-03-27 18:58:20 +01003930 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05003931 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003932
Robert Hancock8343f882007-03-06 02:37:51 -08003933 /* Apply cable rule here. Don't apply it early because when
3934 * we handle hot plug the cable type can itself change.
3935 * Check this last so that we know if the transfer rate was
3936 * solely limited by the cable.
3937 * Unknown or 80 wire cables reported host side are checked
3938 * drive side as well. Cases where we know a 40wire cable
3939 * is used safely for 80 are not checked here.
3940 */
3941 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3942 /* UDMA/44 or higher would be available */
3943 if((ap->cbl == ATA_CBL_PATA40) ||
3944 (ata_drive_40wire(dev->id) &&
3945 (ap->cbl == ATA_CBL_PATA_UNK ||
3946 ap->cbl == ATA_CBL_PATA80))) {
3947 ata_dev_printk(dev, KERN_WARNING,
3948 "limited to UDMA/33 due to 40-wire cable\n");
3949 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3950 }
3951
Tejun Heo565083e2006-04-02 17:54:47 +09003952 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3953 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 * @dev: Device to which command will be sent
3959 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003960 * Issue SET FEATURES - XFER MODE command to device @dev
3961 * on port @ap.
3962 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003964 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003965 *
3966 * RETURNS:
3967 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 */
3969
Tejun Heo3373efd2006-05-15 20:57:53 +09003970static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971{
Tejun Heoa0123702005-12-13 14:49:31 +09003972 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003973 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
3975 /* set up set-features taskfile */
3976 DPRINTK("set features - xfer mode\n");
3977
Tejun Heo464cf172007-05-27 15:10:40 +02003978 /* Some controllers and ATAPI devices show flaky interrupt
3979 * behavior after setting xfer mode. Use polling instead.
3980 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003981 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003982 tf.command = ATA_CMD_SET_FEATURES;
3983 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02003984 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09003985 tf.protocol = ATA_PROT_NODATA;
3986 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
Tejun Heo3373efd2006-05-15 20:57:53 +09003988 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
Tejun Heo83206a22006-03-24 15:25:31 +09003990 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3991 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992}
3993
3994/**
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04003995 * ata_dev_set_AN - Issue SET FEATURES - SATA FEATURES
3996 * @dev: Device to which command will be sent
3997 * @enable: Whether to enable or disable the feature
3998 *
3999 * Issue SET FEATURES - SATA FEATURES command to device @dev
4000 * on port @ap with sector count set to indicate Asynchronous
4001 * Notification feature
4002 *
4003 * LOCKING:
4004 * PCI/etc. bus probe sem.
4005 *
4006 * RETURNS:
4007 * 0 on success, AC_ERR_* mask otherwise.
4008 */
4009static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable)
4010{
4011 struct ata_taskfile tf;
4012 unsigned int err_mask;
4013
4014 /* set up set-features taskfile */
4015 DPRINTK("set features - SATA features\n");
4016
4017 ata_tf_init(dev, &tf);
4018 tf.command = ATA_CMD_SET_FEATURES;
4019 tf.feature = enable;
4020 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4021 tf.protocol = ATA_PROT_NODATA;
4022 tf.nsect = SATA_AN;
4023
4024 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
4025
4026 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4027 return err_mask;
4028}
4029
4030/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04004031 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04004032 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004033 * @heads: Number of heads (taskfile parameter)
4034 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04004035 *
4036 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004037 * Kernel thread context (may sleep)
4038 *
4039 * RETURNS:
4040 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04004041 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004042static unsigned int ata_dev_init_params(struct ata_device *dev,
4043 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04004044{
Tejun Heoa0123702005-12-13 14:49:31 +09004045 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004046 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04004047
4048 /* Number of sectors per track 1-255. Number of heads 1-16 */
4049 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004050 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04004051
4052 /* set up init dev params taskfile */
4053 DPRINTK("init dev params \n");
4054
Tejun Heo3373efd2006-05-15 20:57:53 +09004055 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004056 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4057 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4058 tf.protocol = ATA_PROT_NODATA;
4059 tf.nsect = sectors;
4060 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04004061
Tejun Heo3373efd2006-05-15 20:57:53 +09004062 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004063 /* A clean abort indicates an original or just out of spec drive
4064 and we should continue as we issue the setup based on the
4065 drive reported working geometry */
4066 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4067 err_mask = 0;
Albert Lee8bf62ec2005-05-12 15:29:42 -04004068
Tejun Heo6aff8f12006-02-15 18:24:09 +09004069 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4070 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04004071}
4072
4073/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004074 * ata_sg_clean - Unmap DMA memory associated with command
4075 * @qc: Command containing DMA memory to be released
4076 *
4077 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 *
4079 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004080 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004082void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083{
4084 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004085 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004087 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Tejun Heoa4631472006-02-11 19:11:13 +09004089 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
4090 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
4092 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05004093 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004095 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004097 /* if we padded the buffer out to 32-bit bound, and data
4098 * xfer direction is from-device, we must copy from the
4099 * pad buffer back into the supplied buffer
4100 */
4101 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
4102 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4103
4104 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004105 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004106 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004107 /* restore last sg */
4108 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4109 if (pad_buf) {
4110 struct scatterlist *psg = &qc->pad_sgent;
4111 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4112 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004113 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004114 }
4115 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004116 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004117 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004118 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4119 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004120 /* restore sg */
4121 sg->length += qc->pad_len;
4122 if (pad_buf)
4123 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4124 pad_buf, qc->pad_len);
4125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
4127 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004128 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129}
4130
4131/**
4132 * ata_fill_sg - Fill PCI IDE PRD table
4133 * @qc: Metadata associated with taskfile to be transferred
4134 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004135 * Fill PCI IDE PRD (scatter-gather) table with segments
4136 * associated with the current disk command.
4137 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004139 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 *
4141 */
4142static void ata_fill_sg(struct ata_queued_cmd *qc)
4143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004145 struct scatterlist *sg;
4146 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Tejun Heoa4631472006-02-11 19:11:13 +09004148 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004149 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
4151 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004152 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 u32 addr, offset;
4154 u32 sg_len, len;
4155
4156 /* determine if physical DMA addr spans 64K boundary.
4157 * Note h/w doesn't support 64-bit, so we unconditionally
4158 * truncate dma_addr_t to u32.
4159 */
4160 addr = (u32) sg_dma_address(sg);
4161 sg_len = sg_dma_len(sg);
4162
4163 while (sg_len) {
4164 offset = addr & 0xffff;
4165 len = sg_len;
4166 if ((offset + sg_len) > 0x10000)
4167 len = 0x10000 - offset;
4168
4169 ap->prd[idx].addr = cpu_to_le32(addr);
4170 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4171 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4172
4173 idx++;
4174 sg_len -= len;
4175 addr += len;
4176 }
4177 }
4178
4179 if (idx)
4180 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4181}
Tejun Heob9a41972007-06-27 02:48:43 +09004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183/**
Alan Coxd26fc952007-07-06 19:13:52 -04004184 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4185 * @qc: Metadata associated with taskfile to be transferred
4186 *
4187 * Fill PCI IDE PRD (scatter-gather) table with segments
4188 * associated with the current disk command. Perform the fill
4189 * so that we avoid writing any length 64K records for
4190 * controllers that don't follow the spec.
4191 *
4192 * LOCKING:
4193 * spin_lock_irqsave(host lock)
4194 *
4195 */
4196static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4197{
4198 struct ata_port *ap = qc->ap;
4199 struct scatterlist *sg;
4200 unsigned int idx;
4201
4202 WARN_ON(qc->__sg == NULL);
4203 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4204
4205 idx = 0;
4206 ata_for_each_sg(sg, qc) {
4207 u32 addr, offset;
4208 u32 sg_len, len, blen;
4209
4210 /* determine if physical DMA addr spans 64K boundary.
4211 * Note h/w doesn't support 64-bit, so we unconditionally
4212 * truncate dma_addr_t to u32.
4213 */
4214 addr = (u32) sg_dma_address(sg);
4215 sg_len = sg_dma_len(sg);
4216
4217 while (sg_len) {
4218 offset = addr & 0xffff;
4219 len = sg_len;
4220 if ((offset + sg_len) > 0x10000)
4221 len = 0x10000 - offset;
4222
4223 blen = len & 0xffff;
4224 ap->prd[idx].addr = cpu_to_le32(addr);
4225 if (blen == 0) {
4226 /* Some PATA chipsets like the CS5530 can't
4227 cope with 0x0000 meaning 64K as the spec says */
4228 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4229 blen = 0x8000;
4230 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4231 }
4232 ap->prd[idx].flags_len = cpu_to_le32(blen);
4233 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4234
4235 idx++;
4236 sg_len -= len;
4237 addr += len;
4238 }
4239 }
4240
4241 if (idx)
4242 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4243}
4244
4245/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4247 * @qc: Metadata associated with taskfile to check
4248 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004249 * Allow low-level driver to filter ATA PACKET commands, returning
4250 * a status indicating whether or not it is OK to use DMA for the
4251 * supplied PACKET command.
4252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004254 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004255 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 * RETURNS: 0 when ATAPI DMA can be used
4257 * nonzero otherwise
4258 */
4259int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4260{
4261 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Tejun Heob9a41972007-06-27 02:48:43 +09004263 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4264 * few ATAPI devices choke on such DMA requests.
4265 */
4266 if (unlikely(qc->nbytes & 15))
4267 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004268
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004270 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Tejun Heob9a41972007-06-27 02:48:43 +09004272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273}
Tejun Heob9a41972007-06-27 02:48:43 +09004274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275/**
4276 * ata_qc_prep - Prepare taskfile for submission
4277 * @qc: Metadata associated with taskfile to be prepared
4278 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004279 * Prepare ATA taskfile for submission.
4280 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004282 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 */
4284void ata_qc_prep(struct ata_queued_cmd *qc)
4285{
4286 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4287 return;
4288
4289 ata_fill_sg(qc);
4290}
4291
Alan Coxd26fc952007-07-06 19:13:52 -04004292/**
4293 * ata_dumb_qc_prep - Prepare taskfile for submission
4294 * @qc: Metadata associated with taskfile to be prepared
4295 *
4296 * Prepare ATA taskfile for submission.
4297 *
4298 * LOCKING:
4299 * spin_lock_irqsave(host lock)
4300 */
4301void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4302{
4303 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4304 return;
4305
4306 ata_fill_sg_dumb(qc);
4307}
4308
Brian Kinge46834c2006-03-17 17:04:03 -06004309void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4310
Jeff Garzik0cba6322005-05-30 19:49:12 -04004311/**
4312 * ata_sg_init_one - Associate command with memory buffer
4313 * @qc: Command to be associated
4314 * @buf: Memory buffer
4315 * @buflen: Length of memory buffer, in bytes.
4316 *
4317 * Initialize the data-related elements of queued_cmd @qc
4318 * to point to a single memory buffer, @buf of byte length @buflen.
4319 *
4320 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004321 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004322 */
4323
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4325{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 qc->flags |= ATA_QCFLAG_SINGLE;
4327
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004328 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004330 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004332 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Tejun Heo61c05962006-11-14 22:35:43 +09004334 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335}
4336
Jeff Garzik0cba6322005-05-30 19:49:12 -04004337/**
4338 * ata_sg_init - Associate command with scatter-gather table.
4339 * @qc: Command to be associated
4340 * @sg: Scatter-gather table.
4341 * @n_elem: Number of elements in s/g table.
4342 *
4343 * Initialize the data-related elements of queued_cmd @qc
4344 * to point to a scatter-gather table @sg, containing @n_elem
4345 * elements.
4346 *
4347 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004348 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004349 */
4350
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4352 unsigned int n_elem)
4353{
4354 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004355 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004357 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358}
4359
4360/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004361 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4362 * @qc: Command with memory buffer to be mapped.
4363 *
4364 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 *
4366 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004367 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 *
4369 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004370 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 */
4372
4373static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4374{
4375 struct ata_port *ap = qc->ap;
4376 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004377 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004379 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004381 /* we must lengthen transfers to end on a 32-bit boundary */
4382 qc->pad_len = sg->length & 3;
4383 if (qc->pad_len) {
4384 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4385 struct scatterlist *psg = &qc->pad_sgent;
4386
Tejun Heoa4631472006-02-11 19:11:13 +09004387 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004388
4389 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4390
4391 if (qc->tf.flags & ATA_TFLAG_WRITE)
4392 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4393 qc->pad_len);
4394
4395 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4396 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4397 /* trim sg */
4398 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004399 if (sg->length == 0)
4400 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004401
4402 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4403 sg->length, qc->pad_len);
4404 }
4405
Tejun Heo2e242fa2006-02-20 23:48:38 +09004406 if (trim_sg) {
4407 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004408 goto skip_map;
4409 }
4410
Brian King2f1f6102006-03-23 17:30:15 -06004411 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004412 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004413 if (dma_mapping_error(dma_address)) {
4414 /* restore sg */
4415 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
4419 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004420 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
Tejun Heo2e242fa2006-02-20 23:48:38 +09004422skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4424 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4425
4426 return 0;
4427}
4428
4429/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004430 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4431 * @qc: Command with scatter-gather table to be mapped.
4432 *
4433 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 *
4435 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004436 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 *
4438 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004439 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 *
4441 */
4442
4443static int ata_sg_setup(struct ata_queued_cmd *qc)
4444{
4445 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004446 struct scatterlist *sg = qc->__sg;
4447 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004448 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Tejun Heo44877b42007-02-21 01:06:51 +09004450 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa4631472006-02-11 19:11:13 +09004451 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004453 /* we must lengthen transfers to end on a 32-bit boundary */
4454 qc->pad_len = lsg->length & 3;
4455 if (qc->pad_len) {
4456 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4457 struct scatterlist *psg = &qc->pad_sgent;
4458 unsigned int offset;
4459
Tejun Heoa4631472006-02-11 19:11:13 +09004460 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004461
4462 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4463
4464 /*
4465 * psg->page/offset are used to copy to-be-written
4466 * data in this function or read data in ata_sg_clean.
4467 */
4468 offset = lsg->offset + lsg->length - qc->pad_len;
4469 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4470 psg->offset = offset_in_page(offset);
4471
4472 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4473 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4474 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004475 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004476 }
4477
4478 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4479 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4480 /* trim last sg */
4481 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004482 if (lsg->length == 0)
4483 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004484
4485 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4486 qc->n_elem - 1, lsg->length, qc->pad_len);
4487 }
4488
Jeff Garzike1410f22005-11-14 14:06:26 -05004489 pre_n_elem = qc->n_elem;
4490 if (trim_sg && pre_n_elem)
4491 pre_n_elem--;
4492
4493 if (!pre_n_elem) {
4494 n_elem = 0;
4495 goto skip_map;
4496 }
4497
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004499 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004500 if (n_elem < 1) {
4501 /* restore last sg */
4502 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 DPRINTK("%d sg elements mapped\n", n_elem);
4507
Jeff Garzike1410f22005-11-14 14:06:26 -05004508skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 qc->n_elem = n_elem;
4510
4511 return 0;
4512}
4513
4514/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004515 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004516 * @buf: Buffer to swap
4517 * @buf_words: Number of 16-bit words in buffer.
4518 *
4519 * Swap halves of 16-bit words if needed to convert from
4520 * little-endian byte order to native cpu byte order, or
4521 * vice-versa.
4522 *
4523 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004524 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526void swap_buf_le16(u16 *buf, unsigned int buf_words)
4527{
4528#ifdef __BIG_ENDIAN
4529 unsigned int i;
4530
4531 for (i = 0; i < buf_words; i++)
4532 buf[i] = le16_to_cpu(buf[i]);
4533#endif /* __BIG_ENDIAN */
4534}
4535
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004536/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004537 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004538 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004539 * @buf: data buffer
4540 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004541 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004542 *
4543 * Transfer data from/to the device data register by PIO.
4544 *
4545 * LOCKING:
4546 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004547 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004548void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4549 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004551 struct ata_port *ap = adev->link->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004552 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004554 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004556 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004558 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004559
4560 /* Transfer trailing 1 byte, if any. */
4561 if (unlikely(buflen & 0x01)) {
4562 u16 align_buf[1] = { 0 };
4563 unsigned char *trailing_buf = buf + buflen - 1;
4564
4565 if (write_data) {
4566 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004567 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004568 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004569 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004570 memcpy(trailing_buf, align_buf, 1);
4571 }
4572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573}
4574
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004575/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004576 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004577 * @adev: device to target
4578 * @buf: data buffer
4579 * @buflen: buffer length
4580 * @write_data: read/write
4581 *
Tejun Heo88574552006-06-25 20:00:35 +09004582 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004583 * transfer with interrupts disabled.
4584 *
4585 * LOCKING:
4586 * Inherited from caller.
4587 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004588void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4589 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004590{
4591 unsigned long flags;
4592 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004593 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004594 local_irq_restore(flags);
4595}
4596
4597
4598/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004599 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004600 * @qc: Command on going
4601 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004602 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004603 *
4604 * LOCKING:
4605 * Inherited from caller.
4606 */
4607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608static void ata_pio_sector(struct ata_queued_cmd *qc)
4609{
4610 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004611 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 struct ata_port *ap = qc->ap;
4613 struct page *page;
4614 unsigned int offset;
4615 unsigned char *buf;
4616
Mark Lord5a5dbd12007-03-16 10:22:26 -04004617 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004618 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
4620 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004621 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
4623 /* get the current page and offset */
4624 page = nth_page(page, (offset >> PAGE_SHIFT));
4625 offset %= PAGE_SIZE;
4626
Albert Lee7282aa42005-10-09 09:46:07 -04004627 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4628
Albert Lee91b8b312005-10-09 09:48:44 -04004629 if (PageHighMem(page)) {
4630 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004631
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004632 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004633 local_irq_save(flags);
4634 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004635
Albert Lee91b8b312005-10-09 09:48:44 -04004636 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004637 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004638
4639 kunmap_atomic(buf, KM_IRQ0);
4640 local_irq_restore(flags);
4641 } else {
4642 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004643 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
Mark Lord5a5dbd12007-03-16 10:22:26 -04004646 qc->curbytes += qc->sect_size;
4647 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Tejun Heo726f0782007-01-03 17:30:39 +09004649 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 qc->cursg++;
4651 qc->cursg_ofs = 0;
4652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004655/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004656 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004657 * @qc: Command on going
4658 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004659 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004660 * ATA device for the DRQ request.
4661 *
4662 * LOCKING:
4663 * Inherited from caller.
4664 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Albert Lee07f6f7d2005-11-01 19:33:20 +08004666static void ata_pio_sectors(struct ata_queued_cmd *qc)
4667{
4668 if (is_multi_taskfile(&qc->tf)) {
4669 /* READ/WRITE MULTIPLE */
4670 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
Jeff Garzik587005d2006-02-11 18:17:32 -05004672 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004673
Mark Lord5a5dbd12007-03-16 10:22:26 -04004674 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004675 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004676 while (nsect--)
4677 ata_pio_sector(qc);
4678 } else
4679 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04004680
4681 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08004682}
4683
4684/**
Albert Leec71c1852005-10-04 06:03:45 -04004685 * atapi_send_cdb - Write CDB bytes to hardware
4686 * @ap: Port to which ATAPI device is attached.
4687 * @qc: Taskfile currently active
4688 *
4689 * When device has indicated its readiness to accept
4690 * a CDB, this function is called. Send the CDB.
4691 *
4692 * LOCKING:
4693 * caller.
4694 */
4695
4696static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4697{
4698 /* send SCSI cdb */
4699 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004700 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004701
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004702 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004703 ata_altstatus(ap); /* flush */
4704
4705 switch (qc->tf.protocol) {
4706 case ATA_PROT_ATAPI:
4707 ap->hsm_task_state = HSM_ST;
4708 break;
4709 case ATA_PROT_ATAPI_NODATA:
4710 ap->hsm_task_state = HSM_ST_LAST;
4711 break;
4712 case ATA_PROT_ATAPI_DMA:
4713 ap->hsm_task_state = HSM_ST_LAST;
4714 /* initiate bmdma */
4715 ap->ops->bmdma_start(qc);
4716 break;
4717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718}
4719
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004720/**
4721 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4722 * @qc: Command on going
4723 * @bytes: number of bytes
4724 *
4725 * Transfer Transfer data from/to the ATAPI device.
4726 *
4727 * LOCKING:
4728 * Inherited from caller.
4729 *
4730 */
4731
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4733{
4734 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004735 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 struct ata_port *ap = qc->ap;
4737 struct page *page;
4738 unsigned char *buf;
4739 unsigned int offset, count;
4740
Albert Lee563a6e12005-08-12 14:17:50 +08004741 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004742 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004745 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004746 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004747 * The end of qc->sg is reached and the device expects
4748 * more data to transfer. In order not to overrun qc->sg
4749 * and fulfill length specified in the byte count register,
4750 * - for read case, discard trailing data from the device
4751 * - for write case, padding zero data to the device
4752 */
4753 u16 pad_buf[1] = { 0 };
4754 unsigned int words = bytes >> 1;
4755 unsigned int i;
4756
4757 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004758 ata_dev_printk(qc->dev, KERN_WARNING,
4759 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004760
4761 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004762 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004763
Albert Lee14be71f2005-09-27 17:36:35 +08004764 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004765 return;
4766 }
4767
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004768 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 page = sg->page;
4771 offset = sg->offset + qc->cursg_ofs;
4772
4773 /* get the current page and offset */
4774 page = nth_page(page, (offset >> PAGE_SHIFT));
4775 offset %= PAGE_SIZE;
4776
Albert Lee6952df02005-06-06 15:56:03 +08004777 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004778 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
4780 /* don't cross page boundaries */
4781 count = min(count, (unsigned int)PAGE_SIZE - offset);
4782
Albert Lee7282aa42005-10-09 09:46:07 -04004783 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4784
Albert Lee91b8b312005-10-09 09:48:44 -04004785 if (PageHighMem(page)) {
4786 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004787
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004788 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004789 local_irq_save(flags);
4790 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004791
Albert Lee91b8b312005-10-09 09:48:44 -04004792 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004793 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004794
4795 kunmap_atomic(buf, KM_IRQ0);
4796 local_irq_restore(flags);
4797 } else {
4798 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004799 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802 bytes -= count;
4803 qc->curbytes += count;
4804 qc->cursg_ofs += count;
4805
Albert Lee32529e02005-05-26 03:49:42 -04004806 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 qc->cursg++;
4808 qc->cursg_ofs = 0;
4809 }
4810
Albert Lee563a6e12005-08-12 14:17:50 +08004811 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813}
4814
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004815/**
4816 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4817 * @qc: Command on going
4818 *
4819 * Transfer Transfer data from/to the ATAPI device.
4820 *
4821 * LOCKING:
4822 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004823 */
4824
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4826{
4827 struct ata_port *ap = qc->ap;
4828 struct ata_device *dev = qc->dev;
4829 unsigned int ireason, bc_lo, bc_hi, bytes;
4830 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4831
Albert Leeeec4c3f2006-05-18 17:51:10 +08004832 /* Abuse qc->result_tf for temp storage of intermediate TF
4833 * here to save some kernel stack usage.
4834 * For normal completion, qc->result_tf is not relevant. For
4835 * error, qc->result_tf is later overwritten by ata_qc_complete().
4836 * So, the correctness of qc->result_tf is not affected.
4837 */
4838 ap->ops->tf_read(ap, &qc->result_tf);
4839 ireason = qc->result_tf.nsect;
4840 bc_lo = qc->result_tf.lbam;
4841 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 bytes = (bc_hi << 8) | bc_lo;
4843
4844 /* shall be cleared to zero, indicating xfer of data */
4845 if (ireason & (1 << 0))
4846 goto err_out;
4847
4848 /* make sure transfer direction matches expected */
4849 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4850 if (do_write != i_write)
4851 goto err_out;
4852
Tejun Heo44877b42007-02-21 01:06:51 +09004853 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 __atapi_pio_bytes(qc, bytes);
Albert Lee4cc980b2007-08-15 03:19:45 -04004856 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
4858 return;
4859
4860err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004861 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004862 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004863 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864}
4865
4866/**
Albert Leec234fb02006-03-25 17:58:38 +08004867 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4868 * @ap: the target ata_port
4869 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 *
Albert Leec234fb02006-03-25 17:58:38 +08004871 * RETURNS:
4872 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 */
Albert Leec234fb02006-03-25 17:58:38 +08004874
4875static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876{
Albert Leec234fb02006-03-25 17:58:38 +08004877 if (qc->tf.flags & ATA_TFLAG_POLLING)
4878 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Albert Leec234fb02006-03-25 17:58:38 +08004880 if (ap->hsm_task_state == HSM_ST_FIRST) {
4881 if (qc->tf.protocol == ATA_PROT_PIO &&
4882 (qc->tf.flags & ATA_TFLAG_WRITE))
4883 return 1;
4884
4885 if (is_atapi_taskfile(&qc->tf) &&
4886 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4887 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 }
4889
Albert Leec234fb02006-03-25 17:58:38 +08004890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891}
4892
Albert Leec234fb02006-03-25 17:58:38 +08004893/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004894 * ata_hsm_qc_complete - finish a qc running on standard HSM
4895 * @qc: Command to complete
4896 * @in_wq: 1 if called from workqueue, 0 otherwise
4897 *
4898 * Finish @qc which is running on standard HSM.
4899 *
4900 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004901 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004902 * Otherwise, none on entry and grabs host lock.
4903 */
4904static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4905{
4906 struct ata_port *ap = qc->ap;
4907 unsigned long flags;
4908
4909 if (ap->ops->error_handler) {
4910 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004911 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004912
Jeff Garzikcca39742006-08-24 03:19:22 -04004913 /* EH might have kicked in while host lock is
4914 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004915 */
4916 qc = ata_qc_from_tag(ap, qc->tag);
4917 if (qc) {
4918 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09004919 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004920 ata_qc_complete(qc);
4921 } else
4922 ata_port_freeze(ap);
4923 }
4924
Jeff Garzikba6a1302006-06-22 23:46:10 -04004925 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004926 } else {
4927 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4928 ata_qc_complete(qc);
4929 else
4930 ata_port_freeze(ap);
4931 }
4932 } else {
4933 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004934 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09004935 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004936 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004937 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004938 } else
4939 ata_qc_complete(qc);
4940 }
4941}
4942
4943/**
Albert Leebb5cb292006-03-25 17:48:02 +08004944 * ata_hsm_move - move the HSM to the next state.
4945 * @ap: the target ata_port
4946 * @qc: qc on going
4947 * @status: current device status
4948 * @in_wq: 1 if called from workqueue, 0 otherwise
4949 *
4950 * RETURNS:
4951 * 1 when poll next status needed, 0 otherwise.
4952 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004953int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4954 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955{
Albert Leebb5cb292006-03-25 17:48:02 +08004956 unsigned long flags = 0;
4957 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958
Albert Lee6912ccd2006-03-25 17:45:49 +08004959 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004960
Albert Leebb5cb292006-03-25 17:48:02 +08004961 /* Make sure ata_qc_issue_prot() does not throw things
4962 * like DMA polling into the workqueue. Notice that
4963 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004964 */
Albert Leec234fb02006-03-25 17:58:38 +08004965 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004966
Albert Leee2cec772006-03-25 17:43:49 +08004967fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004968 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004969 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
Albert Leee2cec772006-03-25 17:43:49 +08004971 switch (ap->hsm_task_state) {
4972 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004973 /* Send first data block or PACKET CDB */
4974
4975 /* If polling, we will stay in the work queue after
4976 * sending the data. Otherwise, interrupt handler
4977 * takes over after sending the data.
4978 */
4979 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4980
Albert Leee2cec772006-03-25 17:43:49 +08004981 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004982 if (unlikely((status & ATA_DRQ) == 0)) {
4983 /* handle BSY=0, DRQ=0 as error */
4984 if (likely(status & (ATA_ERR | ATA_DF)))
4985 /* device stops HSM for abort/error */
4986 qc->err_mask |= AC_ERR_DEV;
4987 else
4988 /* HSM violation. Let EH handle this */
4989 qc->err_mask |= AC_ERR_HSM;
4990
Albert Leee2cec772006-03-25 17:43:49 +08004991 ap->hsm_task_state = HSM_ST_ERR;
4992 goto fsm_start;
4993 }
4994
Albert Lee71601952006-03-25 18:11:12 +08004995 /* Device should not ask for data transfer (DRQ=1)
4996 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004997 * We ignore DRQ here and stop the HSM by
4998 * changing hsm_task_state to HSM_ST_ERR and
4999 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005000 */
5001 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005002 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
5003 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005004 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005005 ap->hsm_task_state = HSM_ST_ERR;
5006 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005007 }
5008
Albert Leebb5cb292006-03-25 17:48:02 +08005009 /* Send the CDB (atapi) or the first data block (ata pio out).
5010 * During the state transition, interrupt handler shouldn't
5011 * be invoked before the data transfer is complete and
5012 * hsm_task_state is changed. Hence, the following locking.
5013 */
5014 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005015 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08005016
Albert Leebb5cb292006-03-25 17:48:02 +08005017 if (qc->tf.protocol == ATA_PROT_PIO) {
5018 /* PIO data out protocol.
5019 * send first data block.
5020 */
5021
5022 /* ata_pio_sectors() might change the state
5023 * to HSM_ST_LAST. so, the state is changed here
5024 * before ata_pio_sectors().
5025 */
5026 ap->hsm_task_state = HSM_ST;
5027 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08005028 } else
5029 /* send CDB */
5030 atapi_send_cdb(ap, qc);
5031
5032 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005033 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08005034
5035 /* if polling, ata_pio_task() handles the rest.
5036 * otherwise, interrupt handler takes over from here.
5037 */
Albert Leee2cec772006-03-25 17:43:49 +08005038 break;
5039
5040 case HSM_ST:
5041 /* complete command or read/write the data register */
5042 if (qc->tf.protocol == ATA_PROT_ATAPI) {
5043 /* ATAPI PIO protocol */
5044 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08005045 /* No more data to transfer or device error.
5046 * Device error will be tagged in HSM_ST_LAST.
5047 */
Albert Leee2cec772006-03-25 17:43:49 +08005048 ap->hsm_task_state = HSM_ST_LAST;
5049 goto fsm_start;
5050 }
5051
Albert Lee71601952006-03-25 18:11:12 +08005052 /* Device should not ask for data transfer (DRQ=1)
5053 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005054 * We ignore DRQ here and stop the HSM by
5055 * changing hsm_task_state to HSM_ST_ERR and
5056 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005057 */
5058 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005059 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5060 "device error, dev_stat 0x%X\n",
5061 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005062 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005063 ap->hsm_task_state = HSM_ST_ERR;
5064 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005065 }
5066
Albert Leee2cec772006-03-25 17:43:49 +08005067 atapi_pio_bytes(qc);
5068
5069 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5070 /* bad ireason reported by device */
5071 goto fsm_start;
5072
5073 } else {
5074 /* ATA PIO protocol */
5075 if (unlikely((status & ATA_DRQ) == 0)) {
5076 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005077 if (likely(status & (ATA_ERR | ATA_DF)))
5078 /* device stops HSM for abort/error */
5079 qc->err_mask |= AC_ERR_DEV;
5080 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005081 /* HSM violation. Let EH handle this.
5082 * Phantom devices also trigger this
5083 * condition. Mark hint.
5084 */
5085 qc->err_mask |= AC_ERR_HSM |
5086 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005087
Albert Leee2cec772006-03-25 17:43:49 +08005088 ap->hsm_task_state = HSM_ST_ERR;
5089 goto fsm_start;
5090 }
5091
Albert Leeeee6c322006-04-01 17:38:43 +08005092 /* For PIO reads, some devices may ask for
5093 * data transfer (DRQ=1) alone with ERR=1.
5094 * We respect DRQ here and transfer one
5095 * block of junk data before changing the
5096 * hsm_task_state to HSM_ST_ERR.
5097 *
5098 * For PIO writes, ERR=1 DRQ=1 doesn't make
5099 * sense since the data block has been
5100 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005101 */
5102 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005103 /* data might be corrputed */
5104 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005105
5106 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5107 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005108 status = ata_wait_idle(ap);
5109 }
5110
Albert Lee3655d1d2006-05-19 11:43:04 +08005111 if (status & (ATA_BUSY | ATA_DRQ))
5112 qc->err_mask |= AC_ERR_HSM;
5113
Albert Leeeee6c322006-04-01 17:38:43 +08005114 /* ata_pio_sectors() might change the
5115 * state to HSM_ST_LAST. so, the state
5116 * is changed after ata_pio_sectors().
5117 */
5118 ap->hsm_task_state = HSM_ST_ERR;
5119 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005120 }
5121
Albert Leee2cec772006-03-25 17:43:49 +08005122 ata_pio_sectors(qc);
5123
5124 if (ap->hsm_task_state == HSM_ST_LAST &&
5125 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5126 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005127 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005128 goto fsm_start;
5129 }
5130 }
5131
Albert Leebb5cb292006-03-25 17:48:02 +08005132 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005133 break;
5134
5135 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005136 if (unlikely(!ata_ok(status))) {
5137 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005138 ap->hsm_task_state = HSM_ST_ERR;
5139 goto fsm_start;
5140 }
5141
5142 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005143 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005144 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005145
Albert Lee6912ccd2006-03-25 17:45:49 +08005146 WARN_ON(qc->err_mask);
5147
Albert Leee2cec772006-03-25 17:43:49 +08005148 ap->hsm_task_state = HSM_ST_IDLE;
5149
5150 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005151 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005152
5153 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005154 break;
5155
5156 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005157 /* make sure qc->err_mask is available to
5158 * know what's wrong and recover
5159 */
5160 WARN_ON(qc->err_mask == 0);
5161
5162 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005163
Albert Lee999bb6f2006-03-25 18:07:48 +08005164 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005165 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005166
5167 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005168 break;
5169 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005170 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005171 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005172 }
5173
Albert Leebb5cb292006-03-25 17:48:02 +08005174 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175}
5176
David Howells65f27f32006-11-22 14:55:48 +00005177static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178{
David Howells65f27f32006-11-22 14:55:48 +00005179 struct ata_port *ap =
5180 container_of(work, struct ata_port, port_task.work);
5181 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005182 u8 status;
5183 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005184
5185fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005186 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Albert Leea1af3732006-03-25 17:50:15 +08005188 /*
5189 * This is purely heuristic. This is a fast path.
5190 * Sometimes when we enter, BSY will be cleared in
5191 * a chk-status or two. If not, the drive is probably seeking
5192 * or something. Snooze for a couple msecs, then
5193 * chk-status again. If still busy, queue delayed work.
5194 */
5195 status = ata_busy_wait(ap, ATA_BUSY, 5);
5196 if (status & ATA_BUSY) {
5197 msleep(2);
5198 status = ata_busy_wait(ap, ATA_BUSY, 10);
5199 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005200 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005201 return;
5202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 }
5204
Albert Leea1af3732006-03-25 17:50:15 +08005205 /* move the HSM */
5206 poll_next = ata_hsm_move(ap, qc, status, 1);
5207
5208 /* another command or interrupt handler
5209 * may be running at this point.
5210 */
5211 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005212 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213}
5214
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 * ata_qc_new - Request an available ATA command, for queueing
5217 * @ap: Port associated with device @dev
5218 * @dev: Device from whom we request an available command structure
5219 *
5220 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005221 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 */
5223
5224static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5225{
5226 struct ata_queued_cmd *qc = NULL;
5227 unsigned int i;
5228
Tejun Heoe3180492006-05-15 20:58:09 +09005229 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005230 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005231 return NULL;
5232
Tejun Heo2ab7db12006-05-15 20:58:02 +09005233 /* the last tag is reserved for internal command. */
5234 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005235 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005236 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 break;
5238 }
5239
5240 if (qc)
5241 qc->tag = i;
5242
5243 return qc;
5244}
5245
5246/**
5247 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 * @dev: Device from whom we request an available command structure
5249 *
5250 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005251 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 */
5253
Tejun Heo3373efd2006-05-15 20:57:53 +09005254struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005256 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 struct ata_queued_cmd *qc;
5258
5259 qc = ata_qc_new(ap);
5260 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 qc->scsicmd = NULL;
5262 qc->ap = ap;
5263 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005265 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 }
5267
5268 return qc;
5269}
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271/**
5272 * ata_qc_free - free unused ata_queued_cmd
5273 * @qc: Command to complete
5274 *
5275 * Designed to free unused ata_queued_cmd object
5276 * in case something prevents using it.
5277 *
5278 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005279 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 */
5281void ata_qc_free(struct ata_queued_cmd *qc)
5282{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005283 struct ata_port *ap = qc->ap;
5284 unsigned int tag;
5285
Tejun Heoa4631472006-02-11 19:11:13 +09005286 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
Tejun Heo4ba946e2006-01-23 13:09:36 +09005288 qc->flags = 0;
5289 tag = qc->tag;
5290 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005291 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005292 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294}
5295
Tejun Heo76014422006-02-11 15:13:49 +09005296void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005298 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005299 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005300
Tejun Heoa4631472006-02-11 19:11:13 +09005301 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5302 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5305 ata_sg_clean(qc);
5306
Tejun Heo7401abf2006-05-15 20:57:32 +09005307 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005308 if (qc->tf.protocol == ATA_PROT_NCQ)
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005309 link->sactive &= ~(1 << qc->tag);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005310 else
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005311 link->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005312
Albert Lee3f3791d2005-08-16 14:25:38 +08005313 /* atapi: mark qc as inactive to prevent the interrupt handler
5314 * from completing the command twice later, before the error handler
5315 * is called. (when rc != 0 and atapi request sense is needed)
5316 */
5317 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005318 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005321 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322}
5323
Tejun Heo39599a52006-11-14 22:37:35 +09005324static void fill_result_tf(struct ata_queued_cmd *qc)
5325{
5326 struct ata_port *ap = qc->ap;
5327
Tejun Heo39599a52006-11-14 22:37:35 +09005328 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005329 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005330}
5331
Tejun Heof686bcb2006-05-15 20:58:05 +09005332/**
5333 * ata_qc_complete - Complete an active ATA command
5334 * @qc: Command to complete
5335 * @err_mask: ATA Status register contents
5336 *
5337 * Indicate to the mid and upper layers that an ATA
5338 * command has completed, with either an ok or not-ok status.
5339 *
5340 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005341 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005342 */
5343void ata_qc_complete(struct ata_queued_cmd *qc)
5344{
5345 struct ata_port *ap = qc->ap;
5346
5347 /* XXX: New EH and old EH use different mechanisms to
5348 * synchronize EH with regular execution path.
5349 *
5350 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5351 * Normal execution path is responsible for not accessing a
5352 * failed qc. libata core enforces the rule by returning NULL
5353 * from ata_qc_from_tag() for failed qcs.
5354 *
5355 * Old EH depends on ata_qc_complete() nullifying completion
5356 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5357 * not synchronize with interrupt handler. Only PIO task is
5358 * taken care of.
5359 */
5360 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005361 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005362
5363 if (unlikely(qc->err_mask))
5364 qc->flags |= ATA_QCFLAG_FAILED;
5365
5366 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5367 if (!ata_tag_internal(qc->tag)) {
5368 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005369 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005370 ata_qc_schedule_eh(qc);
5371 return;
5372 }
5373 }
5374
5375 /* read result TF if requested */
5376 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005377 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005378
5379 __ata_qc_complete(qc);
5380 } else {
5381 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5382 return;
5383
5384 /* read result TF if failed or requested */
5385 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005386 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005387
5388 __ata_qc_complete(qc);
5389 }
5390}
5391
Tejun Heodedaf2b2006-05-15 21:03:43 +09005392/**
5393 * ata_qc_complete_multiple - Complete multiple qcs successfully
5394 * @ap: port in question
5395 * @qc_active: new qc_active mask
5396 * @finish_qc: LLDD callback invoked before completing a qc
5397 *
5398 * Complete in-flight commands. This functions is meant to be
5399 * called from low-level driver's interrupt routine to complete
5400 * requests normally. ap->qc_active and @qc_active is compared
5401 * and commands are completed accordingly.
5402 *
5403 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005404 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005405 *
5406 * RETURNS:
5407 * Number of completed commands on success, -errno otherwise.
5408 */
5409int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5410 void (*finish_qc)(struct ata_queued_cmd *))
5411{
5412 int nr_done = 0;
5413 u32 done_mask;
5414 int i;
5415
5416 done_mask = ap->qc_active ^ qc_active;
5417
5418 if (unlikely(done_mask & qc_active)) {
5419 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5420 "(%08x->%08x)\n", ap->qc_active, qc_active);
5421 return -EINVAL;
5422 }
5423
5424 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5425 struct ata_queued_cmd *qc;
5426
5427 if (!(done_mask & (1 << i)))
5428 continue;
5429
5430 if ((qc = ata_qc_from_tag(ap, i))) {
5431 if (finish_qc)
5432 finish_qc(qc);
5433 ata_qc_complete(qc);
5434 nr_done++;
5435 }
5436 }
5437
5438 return nr_done;
5439}
5440
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5442{
5443 struct ata_port *ap = qc->ap;
5444
5445 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005446 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 case ATA_PROT_DMA:
5448 case ATA_PROT_ATAPI_DMA:
5449 return 1;
5450
5451 case ATA_PROT_ATAPI:
5452 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 if (ap->flags & ATA_FLAG_PIO_DMA)
5454 return 1;
5455
5456 /* fall through */
5457
5458 default:
5459 return 0;
5460 }
5461
5462 /* never reached */
5463}
5464
5465/**
5466 * ata_qc_issue - issue taskfile to device
5467 * @qc: command to issue to device
5468 *
5469 * Prepare an ATA command to submission to device.
5470 * This includes mapping the data into a DMA-able
5471 * area, filling in the S/G table, and finally
5472 * writing the taskfile to hardware, starting the command.
5473 *
5474 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005475 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005477void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478{
5479 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005480 struct ata_link *link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
Tejun Heodedaf2b2006-05-15 21:03:43 +09005482 /* Make sure only one non-NCQ command is outstanding. The
5483 * check is skipped for old EH because it reuses active qc to
5484 * request ATAPI sense.
5485 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005486 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005487
5488 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005489 WARN_ON(link->sactive & (1 << qc->tag));
5490 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005491 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005492 WARN_ON(link->sactive);
5493 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005494 }
5495
Tejun Heoe4a70e72006-03-31 20:36:47 +09005496 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005497 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005498
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 if (ata_should_dma_map(qc)) {
5500 if (qc->flags & ATA_QCFLAG_SG) {
5501 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005502 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5504 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005505 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506 }
5507 } else {
5508 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5509 }
5510
5511 ap->ops->qc_prep(qc);
5512
Tejun Heo8e0e6942006-03-31 20:41:11 +09005513 qc->err_mask |= ap->ops->qc_issue(qc);
5514 if (unlikely(qc->err_mask))
5515 goto err;
5516 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Tejun Heo8e436af2006-01-23 13:09:36 +09005518sg_err:
5519 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005520 qc->err_mask |= AC_ERR_SYSTEM;
5521err:
5522 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523}
5524
5525/**
5526 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5527 * @qc: command to issue to device
5528 *
5529 * Using various libata functions and hooks, this function
5530 * starts an ATA command. ATA commands are grouped into
5531 * classes called "protocols", and issuing each type of protocol
5532 * is slightly different.
5533 *
Edward Falk0baab862005-06-02 18:17:13 -04005534 * May be used as the qc_issue() entry in ata_port_operations.
5535 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005537 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 *
5539 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005540 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 */
5542
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005543unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544{
5545 struct ata_port *ap = qc->ap;
5546
Albert Leee50362e2005-09-27 17:39:50 +08005547 /* Use polling pio if the LLD doesn't handle
5548 * interrupt driven pio and atapi CDB interrupt.
5549 */
5550 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5551 switch (qc->tf.protocol) {
5552 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005553 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005554 case ATA_PROT_ATAPI:
5555 case ATA_PROT_ATAPI_NODATA:
5556 qc->tf.flags |= ATA_TFLAG_POLLING;
5557 break;
5558 case ATA_PROT_ATAPI_DMA:
5559 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005560 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005561 BUG();
5562 break;
5563 default:
5564 break;
5565 }
5566 }
5567
Albert Lee312f7da2005-09-27 17:38:03 +08005568 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 ata_dev_select(ap, qc->dev->devno, 1, 0);
5570
Albert Lee312f7da2005-09-27 17:38:03 +08005571 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 switch (qc->tf.protocol) {
5573 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005574 if (qc->tf.flags & ATA_TFLAG_POLLING)
5575 ata_qc_set_polling(qc);
5576
Jeff Garzike5338252005-10-30 21:37:17 -05005577 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005578 ap->hsm_task_state = HSM_ST_LAST;
5579
5580 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005581 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005582
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 break;
5584
5585 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005586 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005587
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5589 ap->ops->bmdma_setup(qc); /* set up bmdma */
5590 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005591 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 break;
5593
Albert Lee312f7da2005-09-27 17:38:03 +08005594 case ATA_PROT_PIO:
5595 if (qc->tf.flags & ATA_TFLAG_POLLING)
5596 ata_qc_set_polling(qc);
5597
Jeff Garzike5338252005-10-30 21:37:17 -05005598 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005599
Albert Lee54f00382005-09-30 19:14:19 +08005600 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5601 /* PIO data out protocol */
5602 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005603 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005604
5605 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005606 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005607 */
Albert Lee312f7da2005-09-27 17:38:03 +08005608 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005609 /* PIO data in protocol */
5610 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005611
Albert Lee54f00382005-09-30 19:14:19 +08005612 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005613 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005614
Albert Lee54f00382005-09-30 19:14:19 +08005615 /* if polling, ata_pio_task() handles the rest.
5616 * otherwise, interrupt handler takes over from here.
5617 */
Albert Lee312f7da2005-09-27 17:38:03 +08005618 }
5619
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 break;
5621
5622 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005624 if (qc->tf.flags & ATA_TFLAG_POLLING)
5625 ata_qc_set_polling(qc);
5626
Jeff Garzike5338252005-10-30 21:37:17 -05005627 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005628
Albert Lee312f7da2005-09-27 17:38:03 +08005629 ap->hsm_task_state = HSM_ST_FIRST;
5630
5631 /* send cdb by polling if no cdb interrupt */
5632 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5633 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005634 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 break;
5636
5637 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005638 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5641 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005642 ap->hsm_task_state = HSM_ST_FIRST;
5643
5644 /* send cdb by polling if no cdb interrupt */
5645 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005646 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 break;
5648
5649 default:
5650 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005651 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 }
5653
5654 return 0;
5655}
5656
5657/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658 * ata_host_intr - Handle host interrupt for given (port, task)
5659 * @ap: Port on which interrupt arrived (possibly...)
5660 * @qc: Taskfile currently active in engine
5661 *
5662 * Handle host interrupt for given queued command. Currently,
5663 * only DMA interrupts are handled. All other commands are
5664 * handled via polling with interrupts disabled (nIEN bit).
5665 *
5666 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005667 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 *
5669 * RETURNS:
5670 * One if interrupt was handled, zero if not (shared irq).
5671 */
5672
5673inline unsigned int ata_host_intr (struct ata_port *ap,
5674 struct ata_queued_cmd *qc)
5675{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005676 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005677 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Albert Lee312f7da2005-09-27 17:38:03 +08005679 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005680 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Albert Lee312f7da2005-09-27 17:38:03 +08005682 /* Check whether we are expecting interrupt in this state */
5683 switch (ap->hsm_task_state) {
5684 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005685 /* Some pre-ATAPI-4 devices assert INTRQ
5686 * at this state when ready to receive CDB.
5687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Albert Lee312f7da2005-09-27 17:38:03 +08005689 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5690 * The flag was turned on only for atapi devices.
5691 * No need to check is_atapi_taskfile(&qc->tf) again.
5692 */
5693 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005696 case HSM_ST_LAST:
5697 if (qc->tf.protocol == ATA_PROT_DMA ||
5698 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5699 /* check status of DMA engine */
5700 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005701 VPRINTK("ata%u: host_stat 0x%X\n",
5702 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
Albert Lee312f7da2005-09-27 17:38:03 +08005704 /* if it's not our irq... */
5705 if (!(host_stat & ATA_DMA_INTR))
5706 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Albert Lee312f7da2005-09-27 17:38:03 +08005708 /* before we do anything else, clear DMA-Start bit */
5709 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005710
5711 if (unlikely(host_stat & ATA_DMA_ERR)) {
5712 /* error when transfering data to/from memory */
5713 qc->err_mask |= AC_ERR_HOST_BUS;
5714 ap->hsm_task_state = HSM_ST_ERR;
5715 }
Albert Lee312f7da2005-09-27 17:38:03 +08005716 }
5717 break;
5718 case HSM_ST:
5719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720 default:
5721 goto idle_irq;
5722 }
5723
Albert Lee312f7da2005-09-27 17:38:03 +08005724 /* check altstatus */
5725 status = ata_altstatus(ap);
5726 if (status & ATA_BUSY)
5727 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Albert Lee312f7da2005-09-27 17:38:03 +08005729 /* check main status, clearing INTRQ */
5730 status = ata_chk_status(ap);
5731 if (unlikely(status & ATA_BUSY))
5732 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
Albert Lee312f7da2005-09-27 17:38:03 +08005734 /* ack bmdma irq events */
5735 ap->ops->irq_clear(ap);
5736
Albert Leebb5cb292006-03-25 17:48:02 +08005737 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005738
5739 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5740 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5741 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5742
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743 return 1; /* irq handled */
5744
5745idle_irq:
5746 ap->stats.idle_irq++;
5747
5748#ifdef ATA_IRQ_TRAP
5749 if ((ap->stats.idle_irq % 1000) == 0) {
Jeff Garzik6d32d302007-08-15 05:38:46 -04005750 ata_chk_status(ap);
5751 ap->ops->irq_clear(ap);
Tejun Heof15a1da2006-05-15 20:57:56 +09005752 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005753 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 }
5755#endif
5756 return 0; /* irq not handled */
5757}
5758
5759/**
5760 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005761 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005762 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005764 * Default interrupt handler for PCI IDE devices. Calls
5765 * ata_host_intr() for each port that is not disabled.
5766 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005768 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 *
5770 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005771 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 */
5773
David Howells7d12e782006-10-05 14:55:46 +01005774irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775{
Jeff Garzikcca39742006-08-24 03:19:22 -04005776 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 unsigned int i;
5778 unsigned int handled = 0;
5779 unsigned long flags;
5780
5781 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005782 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
Jeff Garzikcca39742006-08-24 03:19:22 -04005784 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 struct ata_port *ap;
5786
Jeff Garzikcca39742006-08-24 03:19:22 -04005787 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005788 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005789 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 struct ata_queued_cmd *qc;
5791
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005792 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005793 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005794 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 handled |= ata_host_intr(ap, qc);
5796 }
5797 }
5798
Jeff Garzikcca39742006-08-24 03:19:22 -04005799 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
5801 return IRQ_RETVAL(handled);
5802}
5803
Tejun Heo34bf2172006-05-15 20:57:46 +09005804/**
5805 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005806 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005807 *
Tejun Heo936fd732007-08-06 18:36:23 +09005808 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005809 *
5810 * LOCKING:
5811 * None.
5812 *
5813 * RETURNS:
5814 * 1 if SCRs are accessible, 0 otherwise.
5815 */
Tejun Heo936fd732007-08-06 18:36:23 +09005816int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005817{
Tejun Heo936fd732007-08-06 18:36:23 +09005818 struct ata_port *ap = link->ap;
5819
Tejun Heoa16abc02007-05-21 18:33:47 +02005820 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005821}
5822
5823/**
5824 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005825 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005826 * @reg: SCR to read
5827 * @val: Place to store read value
5828 *
Tejun Heo936fd732007-08-06 18:36:23 +09005829 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005830 * guaranteed to succeed if the cable type of the port is SATA
5831 * and the port implements ->scr_read.
5832 *
5833 * LOCKING:
5834 * None.
5835 *
5836 * RETURNS:
5837 * 0 on success, negative errno on failure.
5838 */
Tejun Heo936fd732007-08-06 18:36:23 +09005839int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005840{
Tejun Heo936fd732007-08-06 18:36:23 +09005841 struct ata_port *ap = link->ap;
5842
5843 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005844 return ap->ops->scr_read(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005845 return -EOPNOTSUPP;
5846}
5847
5848/**
5849 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005850 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005851 * @reg: SCR to write
5852 * @val: value to write
5853 *
Tejun Heo936fd732007-08-06 18:36:23 +09005854 * Write @val to SCR register @reg of @link. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005855 * guaranteed to succeed if the cable type of the port is SATA
5856 * and the port implements ->scr_read.
5857 *
5858 * LOCKING:
5859 * None.
5860 *
5861 * RETURNS:
5862 * 0 on success, negative errno on failure.
5863 */
Tejun Heo936fd732007-08-06 18:36:23 +09005864int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005865{
Tejun Heo936fd732007-08-06 18:36:23 +09005866 struct ata_port *ap = link->ap;
5867
5868 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005869 return ap->ops->scr_write(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005870 return -EOPNOTSUPP;
5871}
5872
5873/**
5874 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005875 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005876 * @reg: SCR to write
5877 * @val: value to write
5878 *
5879 * This function is identical to sata_scr_write() except that this
5880 * function performs flush after writing to the register.
5881 *
5882 * LOCKING:
5883 * None.
5884 *
5885 * RETURNS:
5886 * 0 on success, negative errno on failure.
5887 */
Tejun Heo936fd732007-08-06 18:36:23 +09005888int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005889{
Tejun Heo936fd732007-08-06 18:36:23 +09005890 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005891 int rc;
5892
Tejun Heo936fd732007-08-06 18:36:23 +09005893 if (sata_scr_valid(link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +09005894 rc = ap->ops->scr_write(ap, reg, val);
5895 if (rc == 0)
5896 rc = ap->ops->scr_read(ap, reg, &val);
5897 return rc;
Tejun Heo34bf2172006-05-15 20:57:46 +09005898 }
5899 return -EOPNOTSUPP;
5900}
5901
5902/**
Tejun Heo936fd732007-08-06 18:36:23 +09005903 * ata_link_online - test whether the given link is online
5904 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005905 *
Tejun Heo936fd732007-08-06 18:36:23 +09005906 * Test whether @link is online. Note that this function returns
5907 * 0 if online status of @link cannot be obtained, so
5908 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005909 *
5910 * LOCKING:
5911 * None.
5912 *
5913 * RETURNS:
5914 * 1 if the port online status is available and online.
5915 */
Tejun Heo936fd732007-08-06 18:36:23 +09005916int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005917{
5918 u32 sstatus;
5919
Tejun Heo936fd732007-08-06 18:36:23 +09005920 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5921 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005922 return 1;
5923 return 0;
5924}
5925
5926/**
Tejun Heo936fd732007-08-06 18:36:23 +09005927 * ata_link_offline - test whether the given link is offline
5928 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005929 *
Tejun Heo936fd732007-08-06 18:36:23 +09005930 * Test whether @link is offline. Note that this function
5931 * returns 0 if offline status of @link cannot be obtained, so
5932 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005933 *
5934 * LOCKING:
5935 * None.
5936 *
5937 * RETURNS:
5938 * 1 if the port offline status is available and offline.
5939 */
Tejun Heo936fd732007-08-06 18:36:23 +09005940int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005941{
5942 u32 sstatus;
5943
Tejun Heo936fd732007-08-06 18:36:23 +09005944 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5945 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005946 return 1;
5947 return 0;
5948}
Edward Falk0baab862005-06-02 18:17:13 -04005949
Tejun Heo77b08fb2006-06-24 20:30:19 +09005950int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005951{
Tejun Heo977e6b92006-06-24 20:30:19 +09005952 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005953 u8 cmd;
5954
5955 if (!ata_try_flush_cache(dev))
5956 return 0;
5957
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005958 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005959 cmd = ATA_CMD_FLUSH_EXT;
5960 else
5961 cmd = ATA_CMD_FLUSH;
5962
Alan Cox4f343372007-08-08 14:30:31 +01005963 /* This is wrong. On a failed flush we get back the LBA of the lost
5964 sector and we should (assuming it wasn't aborted as unknown) issue
5965 a further flush command to continue the writeback until it
5966 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09005967 err_mask = ata_do_simple_cmd(dev, cmd);
5968 if (err_mask) {
5969 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5970 return -EIO;
5971 }
5972
5973 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005974}
5975
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005976#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005977static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5978 unsigned int action, unsigned int ehi_flags,
5979 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005980{
5981 unsigned long flags;
5982 int i, rc;
5983
Jeff Garzikcca39742006-08-24 03:19:22 -04005984 for (i = 0; i < host->n_ports; i++) {
5985 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09005986 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09005987
5988 /* Previous resume operation might still be in
5989 * progress. Wait for PM_PENDING to clear.
5990 */
5991 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5992 ata_port_wait_eh(ap);
5993 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5994 }
5995
5996 /* request PM ops to EH */
5997 spin_lock_irqsave(ap->lock, flags);
5998
5999 ap->pm_mesg = mesg;
6000 if (wait) {
6001 rc = 0;
6002 ap->pm_result = &rc;
6003 }
6004
6005 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09006006 __ata_port_for_each_link(link, ap) {
6007 link->eh_info.action |= action;
6008 link->eh_info.flags |= ehi_flags;
6009 }
Tejun Heo500530f2006-07-03 16:07:27 +09006010
6011 ata_port_schedule_eh(ap);
6012
6013 spin_unlock_irqrestore(ap->lock, flags);
6014
6015 /* wait and check result */
6016 if (wait) {
6017 ata_port_wait_eh(ap);
6018 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6019 if (rc)
6020 return rc;
6021 }
6022 }
6023
6024 return 0;
6025}
6026
6027/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006028 * ata_host_suspend - suspend host
6029 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09006030 * @mesg: PM message
6031 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006032 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006033 * function requests EH to perform PM operations and waits for EH
6034 * to finish.
6035 *
6036 * LOCKING:
6037 * Kernel thread context (may sleep).
6038 *
6039 * RETURNS:
6040 * 0 on success, -errno on failure.
6041 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006042int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006043{
Tejun Heo9666f402007-05-04 21:27:47 +02006044 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006045
Jeff Garzikcca39742006-08-24 03:19:22 -04006046 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02006047 if (rc == 0)
6048 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09006049 return rc;
6050}
6051
6052/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006053 * ata_host_resume - resume host
6054 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09006055 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006056 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006057 * function requests EH to perform PM operations and returns.
6058 * Note that all resume operations are performed parallely.
6059 *
6060 * LOCKING:
6061 * Kernel thread context (may sleep).
6062 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006063void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006064{
Jeff Garzikcca39742006-08-24 03:19:22 -04006065 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
6066 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
6067 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09006068}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006069#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006070
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006071/**
6072 * ata_port_start - Set port up for dma.
6073 * @ap: Port to initialize
6074 *
6075 * Called just after data structures for each port are
6076 * initialized. Allocates space for PRD table.
6077 *
6078 * May be used as the port_start() entry in ata_port_operations.
6079 *
6080 * LOCKING:
6081 * Inherited from caller.
6082 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006083int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084{
Brian King2f1f6102006-03-23 17:30:15 -06006085 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006086 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087
Tejun Heof0d36ef2007-01-20 16:00:28 +09006088 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6089 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 if (!ap->prd)
6091 return -ENOMEM;
6092
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006093 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006094 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006095 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04006096
Tejun Heof0d36ef2007-01-20 16:00:28 +09006097 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
6098 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 return 0;
6100}
6101
Edward Falk0baab862005-06-02 18:17:13 -04006102/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006103 * ata_dev_init - Initialize an ata_device structure
6104 * @dev: Device structure to initialize
6105 *
6106 * Initialize @dev in preparation for probing.
6107 *
6108 * LOCKING:
6109 * Inherited from caller.
6110 */
6111void ata_dev_init(struct ata_device *dev)
6112{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006113 struct ata_link *link = dev->link;
6114 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006115 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006116
Tejun Heo5a04bf42006-05-31 18:27:38 +09006117 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006118 link->sata_spd_limit = link->hw_sata_spd_limit;
6119 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006120
Tejun Heo72fa4b72006-05-31 18:27:32 +09006121 /* High bits of dev->flags are used to record warm plug
6122 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006123 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006124 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006125 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006126 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006127 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006128 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006129
6130 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6131 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006132 dev->pio_mask = UINT_MAX;
6133 dev->mwdma_mask = UINT_MAX;
6134 dev->udma_mask = UINT_MAX;
6135}
6136
6137/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006138 * ata_link_init - Initialize an ata_link structure
6139 * @ap: ATA port link is attached to
6140 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006141 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006142 *
6143 * Initialize @link.
6144 *
6145 * LOCKING:
6146 * Kernel thread context (may sleep)
6147 */
Tejun Heo89898052007-08-06 18:36:23 +09006148static void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006149{
6150 int i;
6151
6152 /* clear everything except for devices */
6153 memset(link, 0, offsetof(struct ata_link, device[0]));
6154
6155 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006156 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006157 link->active_tag = ATA_TAG_POISON;
6158 link->hw_sata_spd_limit = UINT_MAX;
6159
6160 /* can't use iterator, ap isn't initialized yet */
6161 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6162 struct ata_device *dev = &link->device[i];
6163
6164 dev->link = link;
6165 dev->devno = dev - link->device;
6166 ata_dev_init(dev);
6167 }
6168}
6169
6170/**
6171 * sata_link_init_spd - Initialize link->sata_spd_limit
6172 * @link: Link to configure sata_spd_limit for
6173 *
6174 * Initialize @link->[hw_]sata_spd_limit to the currently
6175 * configured value.
6176 *
6177 * LOCKING:
6178 * Kernel thread context (may sleep).
6179 *
6180 * RETURNS:
6181 * 0 on success, -errno on failure.
6182 */
6183static int sata_link_init_spd(struct ata_link *link)
6184{
6185 u32 scontrol, spd;
6186 int rc;
6187
6188 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6189 if (rc)
6190 return rc;
6191
6192 spd = (scontrol >> 4) & 0xf;
6193 if (spd)
6194 link->hw_sata_spd_limit &= (1 << spd) - 1;
6195
6196 link->sata_spd_limit = link->hw_sata_spd_limit;
6197
6198 return 0;
6199}
6200
6201/**
Tejun Heof3187192007-04-17 23:44:07 +09006202 * ata_port_alloc - allocate and initialize basic ATA port resources
6203 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 *
Tejun Heof3187192007-04-17 23:44:07 +09006205 * Allocate and initialize basic ATA port resources.
6206 *
6207 * RETURNS:
6208 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006209 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006211 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212 */
Tejun Heof3187192007-04-17 23:44:07 +09006213struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214{
Tejun Heof3187192007-04-17 23:44:07 +09006215 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Tejun Heof3187192007-04-17 23:44:07 +09006217 DPRINTK("ENTER\n");
6218
6219 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6220 if (!ap)
6221 return NULL;
6222
Tejun Heof4d6d002007-05-01 11:50:15 +02006223 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006224 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006225 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006226 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006228 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006229 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006231
6232#if defined(ATA_VERBOSE_DEBUG)
6233 /* turn on all debugging levels */
6234 ap->msg_enable = 0x00FF;
6235#elif defined(ATA_DEBUG)
6236 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 +09006237#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006238 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006239#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
David Howells65f27f32006-11-22 14:55:48 +00006241 INIT_DELAYED_WORK(&ap->port_task, NULL);
6242 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6243 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006244 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006245 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006246 init_timer_deferrable(&ap->fastdrain_timer);
6247 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6248 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
Tejun Heo838df622006-05-15 20:57:44 +09006250 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006251
Tejun Heo89898052007-08-06 18:36:23 +09006252 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
6254#ifdef ATA_IRQ_TRAP
6255 ap->stats.unhandled_irq = 1;
6256 ap->stats.idle_irq = 1;
6257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259}
6260
Tejun Heof0d36ef2007-01-20 16:00:28 +09006261static void ata_host_release(struct device *gendev, void *res)
6262{
6263 struct ata_host *host = dev_get_drvdata(gendev);
6264 int i;
6265
6266 for (i = 0; i < host->n_ports; i++) {
6267 struct ata_port *ap = host->ports[i];
6268
Tejun Heoecef7252007-04-17 23:44:06 +09006269 if (!ap)
6270 continue;
6271
6272 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006273 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006274 }
6275
Tejun Heoecef7252007-04-17 23:44:06 +09006276 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006277 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006278
Tejun Heo1aa506e2007-03-09 19:36:12 +09006279 for (i = 0; i < host->n_ports; i++) {
6280 struct ata_port *ap = host->ports[i];
6281
Tejun Heo49114872007-04-17 23:44:06 +09006282 if (!ap)
6283 continue;
6284
6285 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006286 scsi_host_put(ap->scsi_host);
6287
Tejun Heo49114872007-04-17 23:44:06 +09006288 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006289 host->ports[i] = NULL;
6290 }
6291
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006292 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006293}
6294
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295/**
Tejun Heof3187192007-04-17 23:44:07 +09006296 * ata_host_alloc - allocate and init basic ATA host resources
6297 * @dev: generic device this host is associated with
6298 * @max_ports: maximum number of ATA ports associated with this host
6299 *
6300 * Allocate and initialize basic ATA host resources. LLD calls
6301 * this function to allocate a host, initializes it fully and
6302 * attaches it using ata_host_register().
6303 *
6304 * @max_ports ports are allocated and host->n_ports is
6305 * initialized to @max_ports. The caller is allowed to decrease
6306 * host->n_ports before calling ata_host_register(). The unused
6307 * ports will be automatically freed on registration.
6308 *
6309 * RETURNS:
6310 * Allocate ATA host on success, NULL on failure.
6311 *
6312 * LOCKING:
6313 * Inherited from calling layer (may sleep).
6314 */
6315struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6316{
6317 struct ata_host *host;
6318 size_t sz;
6319 int i;
6320
6321 DPRINTK("ENTER\n");
6322
6323 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6324 return NULL;
6325
6326 /* alloc a container for our list of ATA ports (buses) */
6327 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6328 /* alloc a container for our list of ATA ports (buses) */
6329 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6330 if (!host)
6331 goto err_out;
6332
6333 devres_add(dev, host);
6334 dev_set_drvdata(dev, host);
6335
6336 spin_lock_init(&host->lock);
6337 host->dev = dev;
6338 host->n_ports = max_ports;
6339
6340 /* allocate ports bound to this host */
6341 for (i = 0; i < max_ports; i++) {
6342 struct ata_port *ap;
6343
6344 ap = ata_port_alloc(host);
6345 if (!ap)
6346 goto err_out;
6347
6348 ap->port_no = i;
6349 host->ports[i] = ap;
6350 }
6351
6352 devres_remove_group(dev, NULL);
6353 return host;
6354
6355 err_out:
6356 devres_release_group(dev, NULL);
6357 return NULL;
6358}
6359
6360/**
Tejun Heof5cda252007-04-17 23:44:07 +09006361 * ata_host_alloc_pinfo - alloc host and init with port_info array
6362 * @dev: generic device this host is associated with
6363 * @ppi: array of ATA port_info to initialize host with
6364 * @n_ports: number of ATA ports attached to this host
6365 *
6366 * Allocate ATA host and initialize with info from @ppi. If NULL
6367 * terminated, @ppi may contain fewer entries than @n_ports. The
6368 * last entry will be used for the remaining ports.
6369 *
6370 * RETURNS:
6371 * Allocate ATA host on success, NULL on failure.
6372 *
6373 * LOCKING:
6374 * Inherited from calling layer (may sleep).
6375 */
6376struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6377 const struct ata_port_info * const * ppi,
6378 int n_ports)
6379{
6380 const struct ata_port_info *pi;
6381 struct ata_host *host;
6382 int i, j;
6383
6384 host = ata_host_alloc(dev, n_ports);
6385 if (!host)
6386 return NULL;
6387
6388 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6389 struct ata_port *ap = host->ports[i];
6390
6391 if (ppi[j])
6392 pi = ppi[j++];
6393
6394 ap->pio_mask = pi->pio_mask;
6395 ap->mwdma_mask = pi->mwdma_mask;
6396 ap->udma_mask = pi->udma_mask;
6397 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09006398 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09006399 ap->ops = pi->port_ops;
6400
6401 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6402 host->ops = pi->port_ops;
6403 if (!host->private_data && pi->private_data)
6404 host->private_data = pi->private_data;
6405 }
6406
6407 return host;
6408}
6409
6410/**
Tejun Heoecef7252007-04-17 23:44:06 +09006411 * ata_host_start - start and freeze ports of an ATA host
6412 * @host: ATA host to start ports for
6413 *
6414 * Start and then freeze ports of @host. Started status is
6415 * recorded in host->flags, so this function can be called
6416 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006417 * once. If host->ops isn't initialized yet, its set to the
6418 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006419 *
6420 * LOCKING:
6421 * Inherited from calling layer (may sleep).
6422 *
6423 * RETURNS:
6424 * 0 if all ports are started successfully, -errno otherwise.
6425 */
6426int ata_host_start(struct ata_host *host)
6427{
6428 int i, rc;
6429
6430 if (host->flags & ATA_HOST_STARTED)
6431 return 0;
6432
6433 for (i = 0; i < host->n_ports; i++) {
6434 struct ata_port *ap = host->ports[i];
6435
Tejun Heof3187192007-04-17 23:44:07 +09006436 if (!host->ops && !ata_port_is_dummy(ap))
6437 host->ops = ap->ops;
6438
Tejun Heoecef7252007-04-17 23:44:06 +09006439 if (ap->ops->port_start) {
6440 rc = ap->ops->port_start(ap);
6441 if (rc) {
6442 ata_port_printk(ap, KERN_ERR, "failed to "
6443 "start port (errno=%d)\n", rc);
6444 goto err_out;
6445 }
6446 }
6447
6448 ata_eh_freeze_port(ap);
6449 }
6450
6451 host->flags |= ATA_HOST_STARTED;
6452 return 0;
6453
6454 err_out:
6455 while (--i >= 0) {
6456 struct ata_port *ap = host->ports[i];
6457
6458 if (ap->ops->port_stop)
6459 ap->ops->port_stop(ap);
6460 }
6461 return rc;
6462}
6463
6464/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006465 * ata_sas_host_init - Initialize a host struct
6466 * @host: host to initialize
6467 * @dev: device host is attached to
6468 * @flags: host flags
6469 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006470 *
6471 * LOCKING:
6472 * PCI/etc. bus probe sem.
6473 *
6474 */
Tejun Heof3187192007-04-17 23:44:07 +09006475/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006476void ata_host_init(struct ata_host *host, struct device *dev,
6477 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006478{
Jeff Garzikcca39742006-08-24 03:19:22 -04006479 spin_lock_init(&host->lock);
6480 host->dev = dev;
6481 host->flags = flags;
6482 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006483}
6484
6485/**
Tejun Heof3187192007-04-17 23:44:07 +09006486 * ata_host_register - register initialized ATA host
6487 * @host: ATA host to register
6488 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006489 *
Tejun Heof3187192007-04-17 23:44:07 +09006490 * Register initialized ATA host. @host is allocated using
6491 * ata_host_alloc() and fully initialized by LLD. This function
6492 * starts ports, registers @host with ATA and SCSI layers and
6493 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494 *
6495 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006496 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497 *
6498 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006499 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 */
Tejun Heof3187192007-04-17 23:44:07 +09006501int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502{
Tejun Heof3187192007-04-17 23:44:07 +09006503 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504
Tejun Heof3187192007-04-17 23:44:07 +09006505 /* host must have been started */
6506 if (!(host->flags & ATA_HOST_STARTED)) {
6507 dev_printk(KERN_ERR, host->dev,
6508 "BUG: trying to register unstarted host\n");
6509 WARN_ON(1);
6510 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006511 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006512
Tejun Heof3187192007-04-17 23:44:07 +09006513 /* Blow away unused ports. This happens when LLD can't
6514 * determine the exact number of ports to allocate at
6515 * allocation time.
6516 */
6517 for (i = host->n_ports; host->ports[i]; i++)
6518 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519
Tejun Heof3187192007-04-17 23:44:07 +09006520 /* give ports names and add SCSI hosts */
6521 for (i = 0; i < host->n_ports; i++)
6522 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006523
Tejun Heof3187192007-04-17 23:44:07 +09006524 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006525 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006526 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006527
Tejun Heofafbae82007-05-15 03:28:16 +09006528 /* associate with ACPI nodes */
6529 ata_acpi_associate(host);
6530
Tejun Heof3187192007-04-17 23:44:07 +09006531 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006532 for (i = 0; i < host->n_ports; i++) {
6533 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006534 int irq_line;
Tejun Heof3187192007-04-17 23:44:07 +09006535 unsigned long xfer_mask;
6536
6537 /* set SATA cable type if still unset */
6538 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6539 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540
Tejun Heo5a04bf42006-05-31 18:27:38 +09006541 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006542 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006543
Tejun Heof3187192007-04-17 23:44:07 +09006544 /* report the secondary IRQ for second channel legacy */
6545 irq_line = host->irq;
6546 if (i == 1 && host->irq2)
6547 irq_line = host->irq2;
Tejun Heo3e706392006-05-31 18:28:11 +09006548
Tejun Heof3187192007-04-17 23:44:07 +09006549 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6550 ap->udma_mask);
6551
6552 /* print per-port info to dmesg */
6553 if (!ata_port_is_dummy(ap))
6554 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
6555 "ctl 0x%p bmdma 0x%p irq %d\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006556 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006557 ata_mode_string(xfer_mask),
6558 ap->ioaddr.cmd_addr,
6559 ap->ioaddr.ctl_addr,
6560 ap->ioaddr.bmdma_addr,
6561 irq_line);
6562 else
6563 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6564 }
6565
6566 /* perform each probe synchronously */
6567 DPRINTK("probe begin\n");
6568 for (i = 0; i < host->n_ports; i++) {
6569 struct ata_port *ap = host->ports[i];
6570 int rc;
6571
6572 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006573 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006574 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09006575 unsigned long flags;
6576
6577 ata_port_probe(ap);
6578
6579 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006580 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006581
Tejun Heof58229f2007-08-06 18:36:23 +09006582 ehi->probe_mask =
6583 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09006584 ehi->action |= ATA_EH_SOFTRESET;
6585 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09006586
Tejun Heof4d6d002007-05-01 11:50:15 +02006587 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006588 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09006589 ata_port_schedule_eh(ap);
6590
Jeff Garzikba6a1302006-06-22 23:46:10 -04006591 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006592
6593 /* wait for EH to finish */
6594 ata_port_wait_eh(ap);
6595 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006596 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006597 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006598 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006599
6600 if (rc) {
6601 /* FIXME: do something useful here?
6602 * Current libata behavior will
6603 * tear down everything when
6604 * the module is removed
6605 * or the h/w is unplugged.
6606 */
6607 }
6608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609 }
6610
6611 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006612 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006613 for (i = 0; i < host->n_ports; i++) {
6614 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615
Tejun Heo1ae46312007-07-16 14:29:40 +09006616 ata_scsi_scan_host(ap, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617 }
6618
Tejun Heof3187192007-04-17 23:44:07 +09006619 return 0;
6620}
6621
6622/**
Tejun Heof5cda252007-04-17 23:44:07 +09006623 * ata_host_activate - start host, request IRQ and register it
6624 * @host: target ATA host
6625 * @irq: IRQ to request
6626 * @irq_handler: irq_handler used when requesting IRQ
6627 * @irq_flags: irq_flags used when requesting IRQ
6628 * @sht: scsi_host_template to use when registering the host
6629 *
6630 * After allocating an ATA host and initializing it, most libata
6631 * LLDs perform three steps to activate the host - start host,
6632 * request IRQ and register it. This helper takes necessasry
6633 * arguments and performs the three steps in one go.
6634 *
6635 * LOCKING:
6636 * Inherited from calling layer (may sleep).
6637 *
6638 * RETURNS:
6639 * 0 on success, -errno otherwise.
6640 */
6641int ata_host_activate(struct ata_host *host, int irq,
6642 irq_handler_t irq_handler, unsigned long irq_flags,
6643 struct scsi_host_template *sht)
6644{
6645 int rc;
6646
6647 rc = ata_host_start(host);
6648 if (rc)
6649 return rc;
6650
6651 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6652 dev_driver_string(host->dev), host);
6653 if (rc)
6654 return rc;
6655
Tejun Heo40318262007-07-03 01:38:47 +09006656 /* Used to print device info at probe */
6657 host->irq = irq;
6658
Tejun Heof5cda252007-04-17 23:44:07 +09006659 rc = ata_host_register(host, sht);
6660 /* if failed, just free the IRQ and leave ports alone */
6661 if (rc)
6662 devm_free_irq(host->dev, irq, host);
6663
6664 return rc;
6665}
6666
6667/**
Tejun Heo720ba122006-05-31 18:28:13 +09006668 * ata_port_detach - Detach ATA port in prepration of device removal
6669 * @ap: ATA port to be detached
6670 *
6671 * Detach all ATA devices and the associated SCSI devices of @ap;
6672 * then, remove the associated SCSI host. @ap is guaranteed to
6673 * be quiescent on return from this function.
6674 *
6675 * LOCKING:
6676 * Kernel thread context (may sleep).
6677 */
6678void ata_port_detach(struct ata_port *ap)
6679{
6680 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09006681 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09006682 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09006683
6684 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006685 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006686
6687 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006688 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006689 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006690 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006691
6692 ata_port_wait_eh(ap);
6693
6694 /* EH is now guaranteed to see UNLOADING, so no new device
6695 * will be attached. Disable all existing devices.
6696 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006697 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006698
Tejun Heo41bda9c2007-08-06 18:36:24 +09006699 ata_port_for_each_link(link, ap) {
6700 ata_link_for_each_dev(dev, link)
6701 ata_dev_disable(dev);
6702 }
Tejun Heo720ba122006-05-31 18:28:13 +09006703
Jeff Garzikba6a1302006-06-22 23:46:10 -04006704 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006705
6706 /* Final freeze & EH. All in-flight commands are aborted. EH
6707 * will be skipped and retrials will be terminated with bad
6708 * target.
6709 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006710 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006711 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006712 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006713
6714 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006715 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006716
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006717 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006718 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006719 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006720}
6721
6722/**
Tejun Heo0529c152007-01-20 16:00:26 +09006723 * ata_host_detach - Detach all ports of an ATA host
6724 * @host: Host to detach
6725 *
6726 * Detach all ports of @host.
6727 *
6728 * LOCKING:
6729 * Kernel thread context (may sleep).
6730 */
6731void ata_host_detach(struct ata_host *host)
6732{
6733 int i;
6734
6735 for (i = 0; i < host->n_ports; i++)
6736 ata_port_detach(host->ports[i]);
6737}
6738
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739/**
6740 * ata_std_ports - initialize ioaddr with standard port offsets.
6741 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006742 *
6743 * Utility function which initializes data_addr, error_addr,
6744 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6745 * device_addr, status_addr, and command_addr to standard offsets
6746 * relative to cmd_addr.
6747 *
6748 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749 */
Edward Falk0baab862005-06-02 18:17:13 -04006750
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751void ata_std_ports(struct ata_ioports *ioaddr)
6752{
6753 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6754 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6755 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6756 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6757 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6758 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6759 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6760 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6761 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6762 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6763}
6764
Edward Falk0baab862005-06-02 18:17:13 -04006765
Jeff Garzik374b1872005-08-30 05:42:52 -04006766#ifdef CONFIG_PCI
6767
Edward Falk0baab862005-06-02 18:17:13 -04006768/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 * ata_pci_remove_one - PCI layer callback for device removal
6770 * @pdev: PCI device that was removed
6771 *
Tejun Heob878ca52007-01-20 16:00:28 +09006772 * PCI layer indicates to libata via this hook that hot-unplug or
6773 * module unload event has occurred. Detach all ports. Resource
6774 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 *
6776 * LOCKING:
6777 * Inherited from PCI layer (may sleep).
6778 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006779void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780{
6781 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006782 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
Tejun Heob878ca52007-01-20 16:00:28 +09006784 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785}
6786
6787/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006788int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789{
6790 unsigned long tmp = 0;
6791
6792 switch (bits->width) {
6793 case 1: {
6794 u8 tmp8 = 0;
6795 pci_read_config_byte(pdev, bits->reg, &tmp8);
6796 tmp = tmp8;
6797 break;
6798 }
6799 case 2: {
6800 u16 tmp16 = 0;
6801 pci_read_config_word(pdev, bits->reg, &tmp16);
6802 tmp = tmp16;
6803 break;
6804 }
6805 case 4: {
6806 u32 tmp32 = 0;
6807 pci_read_config_dword(pdev, bits->reg, &tmp32);
6808 tmp = tmp32;
6809 break;
6810 }
6811
6812 default:
6813 return -EINVAL;
6814 }
6815
6816 tmp &= bits->mask;
6817
6818 return (tmp == bits->val) ? 1 : 0;
6819}
Jens Axboe9b847542006-01-06 09:28:07 +01006820
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006821#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006822void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006823{
6824 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006825 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006826
Tejun Heo4c90d972007-02-20 18:14:48 +09006827 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006828 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006829}
6830
Tejun Heo553c4aa2006-12-26 19:39:50 +09006831int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006832{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006833 int rc;
6834
Jens Axboe9b847542006-01-06 09:28:07 +01006835 pci_set_power_state(pdev, PCI_D0);
6836 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006837
Tejun Heob878ca52007-01-20 16:00:28 +09006838 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006839 if (rc) {
6840 dev_printk(KERN_ERR, &pdev->dev,
6841 "failed to enable device after resume (%d)\n", rc);
6842 return rc;
6843 }
6844
Jens Axboe9b847542006-01-06 09:28:07 +01006845 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006846 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006847}
6848
Tejun Heo3c5100c2006-07-26 16:58:33 +09006849int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006850{
Jeff Garzikcca39742006-08-24 03:19:22 -04006851 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006852 int rc = 0;
6853
Jeff Garzikcca39742006-08-24 03:19:22 -04006854 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006855 if (rc)
6856 return rc;
6857
Tejun Heo3c5100c2006-07-26 16:58:33 +09006858 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006859
6860 return 0;
6861}
6862
6863int ata_pci_device_resume(struct pci_dev *pdev)
6864{
Jeff Garzikcca39742006-08-24 03:19:22 -04006865 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006866 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006867
Tejun Heo553c4aa2006-12-26 19:39:50 +09006868 rc = ata_pci_device_do_resume(pdev);
6869 if (rc == 0)
6870 ata_host_resume(host);
6871 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006872}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006873#endif /* CONFIG_PM */
6874
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875#endif /* CONFIG_PCI */
6876
6877
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878static int __init ata_init(void)
6879{
Andrew Mortona8601e52006-06-25 01:36:52 -07006880 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 ata_wq = create_workqueue("ata");
6882 if (!ata_wq)
6883 return -ENOMEM;
6884
Tejun Heo453b07a2006-05-31 18:27:42 +09006885 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6886 if (!ata_aux_wq) {
6887 destroy_workqueue(ata_wq);
6888 return -ENOMEM;
6889 }
6890
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6892 return 0;
6893}
6894
6895static void __exit ata_exit(void)
6896{
6897 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006898 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899}
6900
Brian Kinga4625082006-11-13 16:32:36 -06006901subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902module_exit(ata_exit);
6903
Jeff Garzik67846b32005-10-05 02:58:32 -04006904static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006905static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006906
6907int ata_ratelimit(void)
6908{
6909 int rc;
6910 unsigned long flags;
6911
6912 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6913
6914 if (time_after(jiffies, ratelimit_time)) {
6915 rc = 1;
6916 ratelimit_time = jiffies + (HZ/5);
6917 } else
6918 rc = 0;
6919
6920 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6921
6922 return rc;
6923}
6924
Tejun Heoc22daff2006-04-11 22:22:29 +09006925/**
6926 * ata_wait_register - wait until register value changes
6927 * @reg: IO-mapped register
6928 * @mask: Mask to apply to read register value
6929 * @val: Wait condition
6930 * @interval_msec: polling interval in milliseconds
6931 * @timeout_msec: timeout in milliseconds
6932 *
6933 * Waiting for some bits of register to change is a common
6934 * operation for ATA controllers. This function reads 32bit LE
6935 * IO-mapped register @reg and tests for the following condition.
6936 *
6937 * (*@reg & mask) != val
6938 *
6939 * If the condition is met, it returns; otherwise, the process is
6940 * repeated after @interval_msec until timeout.
6941 *
6942 * LOCKING:
6943 * Kernel thread context (may sleep)
6944 *
6945 * RETURNS:
6946 * The final register value.
6947 */
6948u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6949 unsigned long interval_msec,
6950 unsigned long timeout_msec)
6951{
6952 unsigned long timeout;
6953 u32 tmp;
6954
6955 tmp = ioread32(reg);
6956
6957 /* Calculate timeout _after_ the first read to make sure
6958 * preceding writes reach the controller before starting to
6959 * eat away the timeout.
6960 */
6961 timeout = jiffies + (timeout_msec * HZ) / 1000;
6962
6963 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6964 msleep(interval_msec);
6965 tmp = ioread32(reg);
6966 }
6967
6968 return tmp;
6969}
6970
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006972 * Dummy port_ops
6973 */
6974static void ata_dummy_noret(struct ata_port *ap) { }
6975static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6976static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6977
6978static u8 ata_dummy_check_status(struct ata_port *ap)
6979{
6980 return ATA_DRDY;
6981}
6982
6983static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6984{
6985 return AC_ERR_SYSTEM;
6986}
6987
6988const struct ata_port_operations ata_dummy_port_ops = {
6989 .port_disable = ata_port_disable,
6990 .check_status = ata_dummy_check_status,
6991 .check_altstatus = ata_dummy_check_status,
6992 .dev_select = ata_noop_dev_select,
6993 .qc_prep = ata_noop_qc_prep,
6994 .qc_issue = ata_dummy_qc_issue,
6995 .freeze = ata_dummy_noret,
6996 .thaw = ata_dummy_noret,
6997 .error_handler = ata_dummy_noret,
6998 .post_internal_cmd = ata_dummy_qc_noret,
6999 .irq_clear = ata_dummy_noret,
7000 .port_start = ata_dummy_ret0,
7001 .port_stop = ata_dummy_noret,
7002};
7003
Tejun Heo21b0ad42007-04-17 23:44:07 +09007004const struct ata_port_info ata_dummy_port_info = {
7005 .port_ops = &ata_dummy_port_ops,
7006};
7007
Tejun Heodd5b06c2006-08-10 16:59:12 +09007008/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 * libata is essentially a library of internal helper functions for
7010 * low-level ATA host controller drivers. As such, the API/ABI is
7011 * likely to change as new drivers are added and updated.
7012 * Do not depend on ABI/API stability.
7013 */
7014
Tejun Heoe9c83912006-07-03 16:07:26 +09007015EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
7016EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
7017EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09007018EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09007019EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020EXPORT_SYMBOL_GPL(ata_std_bios_param);
7021EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04007022EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09007023EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09007024EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09007025EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09007026EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09007027EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09007028EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029EXPORT_SYMBOL_GPL(ata_sg_init);
7030EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09007031EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09007032EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09007033EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035EXPORT_SYMBOL_GPL(ata_tf_load);
7036EXPORT_SYMBOL_GPL(ata_tf_read);
7037EXPORT_SYMBOL_GPL(ata_noop_dev_select);
7038EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05007039EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040EXPORT_SYMBOL_GPL(ata_tf_to_fis);
7041EXPORT_SYMBOL_GPL(ata_tf_from_fis);
7042EXPORT_SYMBOL_GPL(ata_check_status);
7043EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044EXPORT_SYMBOL_GPL(ata_exec_command);
7045EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01007046EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08007048EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09007049EXPORT_SYMBOL_GPL(ata_data_xfer);
7050EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04007052EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06007053EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054EXPORT_SYMBOL_GPL(ata_bmdma_setup);
7055EXPORT_SYMBOL_GPL(ata_bmdma_start);
7056EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
7057EXPORT_SYMBOL_GPL(ata_bmdma_status);
7058EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007059EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7060EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
7061EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
7062EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7063EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007065EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007066EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007067EXPORT_SYMBOL_GPL(sata_link_debounce);
7068EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069EXPORT_SYMBOL_GPL(sata_phy_reset);
7070EXPORT_SYMBOL_GPL(__sata_phy_reset);
7071EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007072EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007073EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007074EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007075EXPORT_SYMBOL_GPL(sata_std_hardreset);
7076EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007077EXPORT_SYMBOL_GPL(ata_dev_classify);
7078EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007080EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007081EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007082EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007083EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09007084EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7086EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007088EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007089EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007091EXPORT_SYMBOL_GPL(sata_scr_valid);
7092EXPORT_SYMBOL_GPL(sata_scr_read);
7093EXPORT_SYMBOL_GPL(sata_scr_write);
7094EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007095EXPORT_SYMBOL_GPL(ata_link_online);
7096EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007097#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007098EXPORT_SYMBOL_GPL(ata_host_suspend);
7099EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007100#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007101EXPORT_SYMBOL_GPL(ata_id_string);
7102EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00007103EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7105
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007106EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04007107EXPORT_SYMBOL_GPL(ata_timing_compute);
7108EXPORT_SYMBOL_GPL(ata_timing_merge);
7109
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110#ifdef CONFIG_PCI
7111EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007112EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007113EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007114EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115EXPORT_SYMBOL_GPL(ata_pci_init_one);
7116EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007117#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09007118EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7119EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01007120EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7121EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007122#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00007123EXPORT_SYMBOL_GPL(ata_pci_default_filter);
7124EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007126
Tejun Heob64bbc32007-07-16 14:29:39 +09007127EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7128EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7129EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heoece1d632006-04-02 18:51:53 +09007130EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007131EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09007132EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007133EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007134EXPORT_SYMBOL_GPL(ata_port_freeze);
7135EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7136EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007137EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7138EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007139EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09007140EXPORT_SYMBOL_GPL(ata_irq_on);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007141EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007142
7143EXPORT_SYMBOL_GPL(ata_cable_40wire);
7144EXPORT_SYMBOL_GPL(ata_cable_80wire);
7145EXPORT_SYMBOL_GPL(ata_cable_unknown);
7146EXPORT_SYMBOL_GPL(ata_cable_sata);