blob: b607292b6480e0b972896745134f07b35e957862 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Alan Cox92c52c52007-11-19 14:30:16 +000033 * Standards documents from:
34 * http://www.t13.org (ATA standards, PCI DMA IDE spec)
35 * http://www.t10.org (SCSI MMC - for ATAPI MMC)
36 * http://www.sata-io.org (SATA)
37 * http://www.compactflash.org (CF)
38 * http://www.qic.org (QIC157 - Tape and DSC)
39 * http://www.ce-ata.org (CE-ATA: not supported)
40 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/kernel.h>
44#include <linux/module.h>
45#include <linux/pci.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/spinlock.h>
50#include <linux/blkdev.h>
51#include <linux/delay.h>
52#include <linux/timer.h>
53#include <linux/interrupt.h>
54#include <linux/completion.h>
55#include <linux/suspend.h>
56#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040057#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100058#include <linux/scatterlist.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040059#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050061#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <scsi/scsi_host.h>
63#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/semaphore.h>
65#include <asm/byteorder.h>
Tejun Heo140b5e52007-12-12 12:21:52 +090066#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include "libata.h"
69
Jeff Garzikfda0efc2007-01-31 07:43:15 -050070
Tejun Heod7bb4cc2006-05-31 18:27:46 +090071/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090072const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
73const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
74const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090075
Tejun Heo029cfd62008-03-25 12:22:49 +090076const struct ata_port_operations ata_base_port_ops = {
Tejun Heo0aa11132008-04-07 22:47:18 +090077 .prereset = ata_std_prereset,
Tejun Heo9363c382008-04-07 22:47:16 +090078 .hardreset = sata_sff_hardreset,
Tejun Heo203c75b2008-04-07 22:47:18 +090079 .postreset = ata_std_postreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +090080 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090081};
82
83const struct ata_port_operations sata_port_ops = {
84 .inherits = &ata_base_port_ops,
85
86 .qc_defer = ata_std_qc_defer,
Tejun Heo5682ed32008-04-07 22:47:16 +090087 .sff_dev_select = ata_noop_dev_select,
Tejun Heo029cfd62008-03-25 12:22:49 +090088};
89
90const struct ata_port_operations sata_pmp_port_ops = {
91 .inherits = &sata_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +090092
93 .pmp_prereset = sata_pmp_std_prereset,
94 .pmp_hardreset = sata_pmp_std_hardreset,
95 .pmp_postreset = sata_pmp_std_postreset,
96 .error_handler = sata_pmp_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090097};
98
Tejun Heo3373efd2006-05-15 20:57:53 +090099static unsigned int ata_dev_init_params(struct ata_device *dev,
100 u16 heads, u16 sectors);
101static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -0400102static unsigned int ata_dev_set_feature(struct ata_device *dev,
103 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +0900104static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +0900105static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Tejun Heof3187192007-04-17 23:44:07 +0900107unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static struct workqueue_struct *ata_wq;
109
Tejun Heo453b07a2006-05-31 18:27:42 +0900110struct workqueue_struct *ata_aux_wq;
111
Tejun Heo33267322008-02-13 09:15:09 +0900112struct ata_force_param {
113 const char *name;
114 unsigned int cbl;
115 int spd_limit;
116 unsigned long xfer_mask;
117 unsigned int horkage_on;
118 unsigned int horkage_off;
119};
120
121struct ata_force_ent {
122 int port;
123 int device;
124 struct ata_force_param param;
125};
126
127static struct ata_force_ent *ata_force_tbl;
128static int ata_force_tbl_size;
129
130static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900131/* param_buf is thrown away after initialization, disallow read */
132module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900133MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
134
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500135int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400136module_param(atapi_enabled, int, 0444);
137MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
138
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200139static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800140module_param(atapi_dmadir, int, 0444);
141MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
142
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900143int atapi_passthru16 = 1;
144module_param(atapi_passthru16, int, 0444);
145MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
146
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500147int libata_fua = 0;
148module_param_named(fua, libata_fua, int, 0444);
149MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
150
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400151static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100152module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
153MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
154
Alan Coxb3a70602007-10-02 12:38:26 -0400155static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
156module_param_named(dma, libata_dma_mask, int, 0444);
157MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
158
Andrew Mortona8601e52006-06-25 01:36:52 -0700159static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
160module_param(ata_probe_timeout, int, 0444);
161MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
162
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400163int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400164module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400165MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700166
Alan Coxae8d4ee2007-11-04 22:05:49 -0500167int libata_allow_tpm = 0;
168module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
169MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171MODULE_AUTHOR("Jeff Garzik");
172MODULE_DESCRIPTION("Library module for ATA devices");
173MODULE_LICENSE("GPL");
174MODULE_VERSION(DRV_VERSION);
175
Edward Falk0baab862005-06-02 18:17:13 -0400176
177/**
Tejun Heo33267322008-02-13 09:15:09 +0900178 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800179 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900180 *
181 * Force cable type according to libata.force and whine about it.
182 * The last entry which has matching port number is used, so it
183 * can be specified as part of device force parameters. For
184 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
185 * same effect.
186 *
187 * LOCKING:
188 * EH context.
189 */
190void ata_force_cbl(struct ata_port *ap)
191{
192 int i;
193
194 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
195 const struct ata_force_ent *fe = &ata_force_tbl[i];
196
197 if (fe->port != -1 && fe->port != ap->print_id)
198 continue;
199
200 if (fe->param.cbl == ATA_CBL_NONE)
201 continue;
202
203 ap->cbl = fe->param.cbl;
204 ata_port_printk(ap, KERN_NOTICE,
205 "FORCE: cable set to %s\n", fe->param.name);
206 return;
207 }
208}
209
210/**
211 * ata_force_spd_limit - force SATA spd limit according to libata.force
212 * @link: ATA link of interest
213 *
214 * Force SATA spd limit according to libata.force and whine about
215 * it. When only the port part is specified (e.g. 1:), the limit
216 * applies to all links connected to both the host link and all
217 * fan-out ports connected via PMP. If the device part is
218 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
219 * link not the host link. Device number 15 always points to the
220 * host link whether PMP is attached or not.
221 *
222 * LOCKING:
223 * EH context.
224 */
225static void ata_force_spd_limit(struct ata_link *link)
226{
227 int linkno, i;
228
229 if (ata_is_host_link(link))
230 linkno = 15;
231 else
232 linkno = link->pmp;
233
234 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
235 const struct ata_force_ent *fe = &ata_force_tbl[i];
236
237 if (fe->port != -1 && fe->port != link->ap->print_id)
238 continue;
239
240 if (fe->device != -1 && fe->device != linkno)
241 continue;
242
243 if (!fe->param.spd_limit)
244 continue;
245
246 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
247 ata_link_printk(link, KERN_NOTICE,
248 "FORCE: PHY spd limit set to %s\n", fe->param.name);
249 return;
250 }
251}
252
253/**
254 * ata_force_xfermask - force xfermask according to libata.force
255 * @dev: ATA device of interest
256 *
257 * Force xfer_mask according to libata.force and whine about it.
258 * For consistency with link selection, device number 15 selects
259 * the first device connected to the host link.
260 *
261 * LOCKING:
262 * EH context.
263 */
264static void ata_force_xfermask(struct ata_device *dev)
265{
266 int devno = dev->link->pmp + dev->devno;
267 int alt_devno = devno;
268 int i;
269
270 /* allow n.15 for the first device attached to host port */
271 if (ata_is_host_link(dev->link) && devno == 0)
272 alt_devno = 15;
273
274 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
275 const struct ata_force_ent *fe = &ata_force_tbl[i];
276 unsigned long pio_mask, mwdma_mask, udma_mask;
277
278 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
279 continue;
280
281 if (fe->device != -1 && fe->device != devno &&
282 fe->device != alt_devno)
283 continue;
284
285 if (!fe->param.xfer_mask)
286 continue;
287
288 ata_unpack_xfermask(fe->param.xfer_mask,
289 &pio_mask, &mwdma_mask, &udma_mask);
290 if (udma_mask)
291 dev->udma_mask = udma_mask;
292 else if (mwdma_mask) {
293 dev->udma_mask = 0;
294 dev->mwdma_mask = mwdma_mask;
295 } else {
296 dev->udma_mask = 0;
297 dev->mwdma_mask = 0;
298 dev->pio_mask = pio_mask;
299 }
300
301 ata_dev_printk(dev, KERN_NOTICE,
302 "FORCE: xfer_mask set to %s\n", fe->param.name);
303 return;
304 }
305}
306
307/**
308 * ata_force_horkage - force horkage according to libata.force
309 * @dev: ATA device of interest
310 *
311 * Force horkage according to libata.force and whine about it.
312 * For consistency with link selection, device number 15 selects
313 * the first device connected to the host link.
314 *
315 * LOCKING:
316 * EH context.
317 */
318static void ata_force_horkage(struct ata_device *dev)
319{
320 int devno = dev->link->pmp + dev->devno;
321 int alt_devno = devno;
322 int i;
323
324 /* allow n.15 for the first device attached to host port */
325 if (ata_is_host_link(dev->link) && devno == 0)
326 alt_devno = 15;
327
328 for (i = 0; i < ata_force_tbl_size; i++) {
329 const struct ata_force_ent *fe = &ata_force_tbl[i];
330
331 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
332 continue;
333
334 if (fe->device != -1 && fe->device != devno &&
335 fe->device != alt_devno)
336 continue;
337
338 if (!(~dev->horkage & fe->param.horkage_on) &&
339 !(dev->horkage & fe->param.horkage_off))
340 continue;
341
342 dev->horkage |= fe->param.horkage_on;
343 dev->horkage &= ~fe->param.horkage_off;
344
345 ata_dev_printk(dev, KERN_NOTICE,
346 "FORCE: horkage modified (%s)\n", fe->param.name);
347 }
348}
349
350/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900351 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
352 * @opcode: SCSI opcode
353 *
354 * Determine ATAPI command type from @opcode.
355 *
356 * LOCKING:
357 * None.
358 *
359 * RETURNS:
360 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
361 */
362int atapi_cmd_type(u8 opcode)
363{
364 switch (opcode) {
365 case GPCMD_READ_10:
366 case GPCMD_READ_12:
367 return ATAPI_READ;
368
369 case GPCMD_WRITE_10:
370 case GPCMD_WRITE_12:
371 case GPCMD_WRITE_AND_VERIFY_10:
372 return ATAPI_WRITE;
373
374 case GPCMD_READ_CD:
375 case GPCMD_READ_CD_MSF:
376 return ATAPI_READ_CD;
377
Tejun Heoe52dcc42008-04-02 17:35:19 +0900378 case ATA_16:
379 case ATA_12:
380 if (atapi_passthru16)
381 return ATAPI_PASS_THRU;
382 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900383 default:
384 return ATAPI_MISC;
385 }
386}
387
388/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
390 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900392 * @is_cmd: This FIS is for command
393 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 *
395 * Converts a standard ATA taskfile to a Serial ATA
396 * FIS structure (Register - Host to Device).
397 *
398 * LOCKING:
399 * Inherited from caller.
400 */
Tejun Heo99771262007-07-16 14:29:38 +0900401void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Tejun Heo99771262007-07-16 14:29:38 +0900403 fis[0] = 0x27; /* Register - Host to Device FIS */
404 fis[1] = pmp & 0xf; /* Port multiplier number*/
405 if (is_cmd)
406 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 fis[2] = tf->command;
409 fis[3] = tf->feature;
410
411 fis[4] = tf->lbal;
412 fis[5] = tf->lbam;
413 fis[6] = tf->lbah;
414 fis[7] = tf->device;
415
416 fis[8] = tf->hob_lbal;
417 fis[9] = tf->hob_lbam;
418 fis[10] = tf->hob_lbah;
419 fis[11] = tf->hob_feature;
420
421 fis[12] = tf->nsect;
422 fis[13] = tf->hob_nsect;
423 fis[14] = 0;
424 fis[15] = tf->ctl;
425
426 fis[16] = 0;
427 fis[17] = 0;
428 fis[18] = 0;
429 fis[19] = 0;
430}
431
432/**
433 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
434 * @fis: Buffer from which data will be input
435 * @tf: Taskfile to output
436 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500437 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 *
439 * LOCKING:
440 * Inherited from caller.
441 */
442
Jeff Garzik057ace52005-10-22 14:27:05 -0400443void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 tf->command = fis[2]; /* status */
446 tf->feature = fis[3]; /* error */
447
448 tf->lbal = fis[4];
449 tf->lbam = fis[5];
450 tf->lbah = fis[6];
451 tf->device = fis[7];
452
453 tf->hob_lbal = fis[8];
454 tf->hob_lbam = fis[9];
455 tf->hob_lbah = fis[10];
456
457 tf->nsect = fis[12];
458 tf->hob_nsect = fis[13];
459}
460
Albert Lee8cbd6df2005-10-12 15:06:27 +0800461static const u8 ata_rw_cmds[] = {
462 /* pio multi */
463 ATA_CMD_READ_MULTI,
464 ATA_CMD_WRITE_MULTI,
465 ATA_CMD_READ_MULTI_EXT,
466 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100467 0,
468 0,
469 0,
470 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800471 /* pio */
472 ATA_CMD_PIO_READ,
473 ATA_CMD_PIO_WRITE,
474 ATA_CMD_PIO_READ_EXT,
475 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100476 0,
477 0,
478 0,
479 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800480 /* dma */
481 ATA_CMD_READ,
482 ATA_CMD_WRITE,
483 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100484 ATA_CMD_WRITE_EXT,
485 0,
486 0,
487 0,
488 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800489};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800492 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900493 * @tf: command to examine and configure
494 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500496 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800497 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 *
499 * LOCKING:
500 * caller.
501 */
Tejun Heobd056d72006-11-14 22:47:10 +0900502static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100504 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100506 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500507
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100508 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800509 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
510 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Albert Lee8cbd6df2005-10-12 15:06:27 +0800512 if (dev->flags & ATA_DFLAG_PIO) {
513 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100514 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900515 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000516 /* Unable to use DMA due to host limitation */
517 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800518 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800519 } else {
520 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100521 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100524 cmd = ata_rw_cmds[index + fua + lba48 + write];
525 if (cmd) {
526 tf->command = cmd;
527 return 0;
528 }
529 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Tejun Heocb95d562006-03-06 04:31:56 +0900532/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900533 * ata_tf_read_block - Read block address from ATA taskfile
534 * @tf: ATA taskfile of interest
535 * @dev: ATA device @tf belongs to
536 *
537 * LOCKING:
538 * None.
539 *
540 * Read block address from @tf. This function can handle all
541 * three address formats - LBA, LBA48 and CHS. tf->protocol and
542 * flags select the address format to use.
543 *
544 * RETURNS:
545 * Block address read from @tf.
546 */
547u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
548{
549 u64 block = 0;
550
551 if (tf->flags & ATA_TFLAG_LBA) {
552 if (tf->flags & ATA_TFLAG_LBA48) {
553 block |= (u64)tf->hob_lbah << 40;
554 block |= (u64)tf->hob_lbam << 32;
555 block |= tf->hob_lbal << 24;
556 } else
557 block |= (tf->device & 0xf) << 24;
558
559 block |= tf->lbah << 16;
560 block |= tf->lbam << 8;
561 block |= tf->lbal;
562 } else {
563 u32 cyl, head, sect;
564
565 cyl = tf->lbam | (tf->lbah << 8);
566 head = tf->device & 0xf;
567 sect = tf->lbal;
568
569 block = (cyl * dev->heads + head) * dev->sectors + sect;
570 }
571
572 return block;
573}
574
575/**
Tejun Heobd056d72006-11-14 22:47:10 +0900576 * ata_build_rw_tf - Build ATA taskfile for given read/write request
577 * @tf: Target ATA taskfile
578 * @dev: ATA device @tf belongs to
579 * @block: Block address
580 * @n_block: Number of blocks
581 * @tf_flags: RW/FUA etc...
582 * @tag: tag
583 *
584 * LOCKING:
585 * None.
586 *
587 * Build ATA taskfile @tf for read/write request described by
588 * @block, @n_block, @tf_flags and @tag on @dev.
589 *
590 * RETURNS:
591 *
592 * 0 on success, -ERANGE if the request is too large for @dev,
593 * -EINVAL if the request is invalid.
594 */
595int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
596 u64 block, u32 n_block, unsigned int tf_flags,
597 unsigned int tag)
598{
599 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
600 tf->flags |= tf_flags;
601
Tejun Heo6d1245b2007-02-20 23:20:27 +0900602 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900603 /* yay, NCQ */
604 if (!lba_48_ok(block, n_block))
605 return -ERANGE;
606
607 tf->protocol = ATA_PROT_NCQ;
608 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
609
610 if (tf->flags & ATA_TFLAG_WRITE)
611 tf->command = ATA_CMD_FPDMA_WRITE;
612 else
613 tf->command = ATA_CMD_FPDMA_READ;
614
615 tf->nsect = tag << 3;
616 tf->hob_feature = (n_block >> 8) & 0xff;
617 tf->feature = n_block & 0xff;
618
619 tf->hob_lbah = (block >> 40) & 0xff;
620 tf->hob_lbam = (block >> 32) & 0xff;
621 tf->hob_lbal = (block >> 24) & 0xff;
622 tf->lbah = (block >> 16) & 0xff;
623 tf->lbam = (block >> 8) & 0xff;
624 tf->lbal = block & 0xff;
625
626 tf->device = 1 << 6;
627 if (tf->flags & ATA_TFLAG_FUA)
628 tf->device |= 1 << 7;
629 } else if (dev->flags & ATA_DFLAG_LBA) {
630 tf->flags |= ATA_TFLAG_LBA;
631
632 if (lba_28_ok(block, n_block)) {
633 /* use LBA28 */
634 tf->device |= (block >> 24) & 0xf;
635 } else if (lba_48_ok(block, n_block)) {
636 if (!(dev->flags & ATA_DFLAG_LBA48))
637 return -ERANGE;
638
639 /* use LBA48 */
640 tf->flags |= ATA_TFLAG_LBA48;
641
642 tf->hob_nsect = (n_block >> 8) & 0xff;
643
644 tf->hob_lbah = (block >> 40) & 0xff;
645 tf->hob_lbam = (block >> 32) & 0xff;
646 tf->hob_lbal = (block >> 24) & 0xff;
647 } else
648 /* request too large even for LBA48 */
649 return -ERANGE;
650
651 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
652 return -EINVAL;
653
654 tf->nsect = n_block & 0xff;
655
656 tf->lbah = (block >> 16) & 0xff;
657 tf->lbam = (block >> 8) & 0xff;
658 tf->lbal = block & 0xff;
659
660 tf->device |= ATA_LBA;
661 } else {
662 /* CHS */
663 u32 sect, head, cyl, track;
664
665 /* The request -may- be too large for CHS addressing. */
666 if (!lba_28_ok(block, n_block))
667 return -ERANGE;
668
669 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
670 return -EINVAL;
671
672 /* Convert LBA to CHS */
673 track = (u32)block / dev->sectors;
674 cyl = track / dev->heads;
675 head = track % dev->heads;
676 sect = (u32)block % dev->sectors + 1;
677
678 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
679 (u32)block, track, cyl, head, sect);
680
681 /* Check whether the converted CHS can fit.
682 Cylinder: 0-65535
683 Head: 0-15
684 Sector: 1-255*/
685 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
686 return -ERANGE;
687
688 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
689 tf->lbal = sect;
690 tf->lbam = cyl;
691 tf->lbah = cyl >> 8;
692 tf->device |= head;
693 }
694
695 return 0;
696}
697
698/**
Tejun Heocb95d562006-03-06 04:31:56 +0900699 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
700 * @pio_mask: pio_mask
701 * @mwdma_mask: mwdma_mask
702 * @udma_mask: udma_mask
703 *
704 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
705 * unsigned int xfer_mask.
706 *
707 * LOCKING:
708 * None.
709 *
710 * RETURNS:
711 * Packed xfer_mask.
712 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900713unsigned long ata_pack_xfermask(unsigned long pio_mask,
714 unsigned long mwdma_mask,
715 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900716{
717 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
718 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
719 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
720}
721
Tejun Heoc0489e42006-03-24 14:07:49 +0900722/**
723 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
724 * @xfer_mask: xfer_mask to unpack
725 * @pio_mask: resulting pio_mask
726 * @mwdma_mask: resulting mwdma_mask
727 * @udma_mask: resulting udma_mask
728 *
729 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
730 * Any NULL distination masks will be ignored.
731 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900732void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
733 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900734{
735 if (pio_mask)
736 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
737 if (mwdma_mask)
738 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
739 if (udma_mask)
740 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
741}
742
Tejun Heocb95d562006-03-06 04:31:56 +0900743static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900744 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900745 u8 base;
746} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900747 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
748 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
749 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900750 { -1, },
751};
752
753/**
754 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
755 * @xfer_mask: xfer_mask of interest
756 *
757 * Return matching XFER_* value for @xfer_mask. Only the highest
758 * bit of @xfer_mask is considered.
759 *
760 * LOCKING:
761 * None.
762 *
763 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900764 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900765 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900766u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900767{
768 int highbit = fls(xfer_mask) - 1;
769 const struct ata_xfer_ent *ent;
770
771 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
772 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
773 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900774 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900775}
776
777/**
778 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
779 * @xfer_mode: XFER_* of interest
780 *
781 * Return matching xfer_mask for @xfer_mode.
782 *
783 * LOCKING:
784 * None.
785 *
786 * RETURNS:
787 * Matching xfer_mask, 0 if no match found.
788 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900789unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900790{
791 const struct ata_xfer_ent *ent;
792
793 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
794 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900795 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
796 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900797 return 0;
798}
799
800/**
801 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
802 * @xfer_mode: XFER_* of interest
803 *
804 * Return matching xfer_shift for @xfer_mode.
805 *
806 * LOCKING:
807 * None.
808 *
809 * RETURNS:
810 * Matching xfer_shift, -1 if no match found.
811 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900812int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900813{
814 const struct ata_xfer_ent *ent;
815
816 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
817 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
818 return ent->shift;
819 return -1;
820}
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900823 * ata_mode_string - convert xfer_mask to string
824 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 *
826 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900827 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *
829 * LOCKING:
830 * None.
831 *
832 * RETURNS:
833 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900834 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900836const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Tejun Heo75f554b2006-03-06 04:31:57 +0900838 static const char * const xfer_mode_str[] = {
839 "PIO0",
840 "PIO1",
841 "PIO2",
842 "PIO3",
843 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100844 "PIO5",
845 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900846 "MWDMA0",
847 "MWDMA1",
848 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100849 "MWDMA3",
850 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900851 "UDMA/16",
852 "UDMA/25",
853 "UDMA/33",
854 "UDMA/44",
855 "UDMA/66",
856 "UDMA/100",
857 "UDMA/133",
858 "UDMA7",
859 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900860 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900862 highbit = fls(xfer_mask) - 1;
863 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
864 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Tejun Heo4c360c82006-04-01 01:38:17 +0900868static const char *sata_spd_string(unsigned int spd)
869{
870 static const char * const spd_str[] = {
871 "1.5 Gbps",
872 "3.0 Gbps",
873 };
874
875 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
876 return "<unknown>";
877 return spd_str[spd - 1];
878}
879
Tejun Heo3373efd2006-05-15 20:57:53 +0900880void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900881{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900882 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900883 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900884 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900885 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900886 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
887 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900888 dev->class++;
889 }
890}
891
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400892static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
893{
894 struct ata_link *link = dev->link;
895 struct ata_port *ap = link->ap;
896 u32 scontrol;
897 unsigned int err_mask;
898 int rc;
899
900 /*
901 * disallow DIPM for drivers which haven't set
902 * ATA_FLAG_IPM. This is because when DIPM is enabled,
903 * phy ready will be set in the interrupt status on
904 * state changes, which will cause some drivers to
905 * think there are errors - additionally drivers will
906 * need to disable hot plug.
907 */
908 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
909 ap->pm_policy = NOT_AVAILABLE;
910 return -EINVAL;
911 }
912
913 /*
914 * For DIPM, we will only enable it for the
915 * min_power setting.
916 *
917 * Why? Because Disks are too stupid to know that
918 * If the host rejects a request to go to SLUMBER
919 * they should retry at PARTIAL, and instead it
920 * just would give up. So, for medium_power to
921 * work at all, we need to only allow HIPM.
922 */
923 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
924 if (rc)
925 return rc;
926
927 switch (policy) {
928 case MIN_POWER:
929 /* no restrictions on IPM transitions */
930 scontrol &= ~(0x3 << 8);
931 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
932 if (rc)
933 return rc;
934
935 /* enable DIPM */
936 if (dev->flags & ATA_DFLAG_DIPM)
937 err_mask = ata_dev_set_feature(dev,
938 SETFEATURES_SATA_ENABLE, SATA_DIPM);
939 break;
940 case MEDIUM_POWER:
941 /* allow IPM to PARTIAL */
942 scontrol &= ~(0x1 << 8);
943 scontrol |= (0x2 << 8);
944 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
945 if (rc)
946 return rc;
947
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700948 /*
949 * we don't have to disable DIPM since IPM flags
950 * disallow transitions to SLUMBER, which effectively
951 * disable DIPM if it does not support PARTIAL
952 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400953 break;
954 case NOT_AVAILABLE:
955 case MAX_PERFORMANCE:
956 /* disable all IPM transitions */
957 scontrol |= (0x3 << 8);
958 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
959 if (rc)
960 return rc;
961
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700962 /*
963 * we don't have to disable DIPM since IPM flags
964 * disallow all transitions which effectively
965 * disable DIPM anyway.
966 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400967 break;
968 }
969
970 /* FIXME: handle SET FEATURES failure */
971 (void) err_mask;
972
973 return 0;
974}
975
976/**
977 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700978 * @dev: device to enable power management
979 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400980 *
981 * Enable SATA Interface power management. This will enable
982 * Device Interface Power Management (DIPM) for min_power
983 * policy, and then call driver specific callbacks for
984 * enabling Host Initiated Power management.
985 *
986 * Locking: Caller.
987 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
988 */
989void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
990{
991 int rc = 0;
992 struct ata_port *ap = dev->link->ap;
993
994 /* set HIPM first, then DIPM */
995 if (ap->ops->enable_pm)
996 rc = ap->ops->enable_pm(ap, policy);
997 if (rc)
998 goto enable_pm_out;
999 rc = ata_dev_set_dipm(dev, policy);
1000
1001enable_pm_out:
1002 if (rc)
1003 ap->pm_policy = MAX_PERFORMANCE;
1004 else
1005 ap->pm_policy = policy;
1006 return /* rc */; /* hopefully we can use 'rc' eventually */
1007}
1008
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001009#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001010/**
1011 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001012 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001013 *
1014 * Disable SATA Interface power management. This will disable
1015 * Device Interface Power Management (DIPM) without changing
1016 * policy, call driver specific callbacks for disabling Host
1017 * Initiated Power management.
1018 *
1019 * Locking: Caller.
1020 * Returns: void
1021 */
1022static void ata_dev_disable_pm(struct ata_device *dev)
1023{
1024 struct ata_port *ap = dev->link->ap;
1025
1026 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1027 if (ap->ops->disable_pm)
1028 ap->ops->disable_pm(ap);
1029}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001030#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001031
1032void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1033{
1034 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001035 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001036 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1037 ata_port_schedule_eh(ap);
1038}
1039
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001040#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001041static void ata_lpm_enable(struct ata_host *host)
1042{
1043 struct ata_link *link;
1044 struct ata_port *ap;
1045 struct ata_device *dev;
1046 int i;
1047
1048 for (i = 0; i < host->n_ports; i++) {
1049 ap = host->ports[i];
1050 ata_port_for_each_link(link, ap) {
1051 ata_link_for_each_dev(dev, link)
1052 ata_dev_disable_pm(dev);
1053 }
1054 }
1055}
1056
1057static void ata_lpm_disable(struct ata_host *host)
1058{
1059 int i;
1060
1061 for (i = 0; i < host->n_ports; i++) {
1062 struct ata_port *ap = host->ports[i];
1063 ata_lpm_schedule(ap, ap->pm_policy);
1064 }
1065}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001066#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068/**
1069 * ata_dev_classify - determine device type based on ATA-spec signature
1070 * @tf: ATA taskfile register set for device to be identified
1071 *
1072 * Determine from taskfile register contents whether a device is
1073 * ATA or ATAPI, as per "Signature and persistence" section
1074 * of ATA/PI spec (volume 1, sect 5.14).
1075 *
1076 * LOCKING:
1077 * None.
1078 *
1079 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001080 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1081 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001083unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 /* Apple's open source Darwin code hints that some devices only
1086 * put a proper signature into the LBA mid/high registers,
1087 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001088 *
1089 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1090 * signatures for ATA and ATAPI devices attached on SerialATA,
1091 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1092 * spec has never mentioned about using different signatures
1093 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1094 * Multiplier specification began to use 0x69/0x96 to identify
1095 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1096 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1097 * 0x69/0x96 shortly and described them as reserved for
1098 * SerialATA.
1099 *
1100 * We follow the current spec and consider that 0x69/0x96
1101 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 */
Tejun Heo633273a32007-09-23 13:19:54 +09001103 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 DPRINTK("found ATA device by sig\n");
1105 return ATA_DEV_ATA;
1106 }
1107
Tejun Heo633273a32007-09-23 13:19:54 +09001108 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 DPRINTK("found ATAPI device by sig\n");
1110 return ATA_DEV_ATAPI;
1111 }
1112
Tejun Heo633273a32007-09-23 13:19:54 +09001113 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1114 DPRINTK("found PMP device by sig\n");
1115 return ATA_DEV_PMP;
1116 }
1117
1118 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001119 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001120 return ATA_DEV_SEMB_UNSUP; /* not yet */
1121 }
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 DPRINTK("unknown device\n");
1124 return ATA_DEV_UNKNOWN;
1125}
1126
1127/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001128 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * @id: IDENTIFY DEVICE results we will examine
1130 * @s: string into which data is output
1131 * @ofs: offset into identify device page
1132 * @len: length of string to return. must be an even number.
1133 *
1134 * The strings in the IDENTIFY DEVICE page are broken up into
1135 * 16-bit chunks. Run through the string, and output each
1136 * 8-bit chunk linearly, regardless of platform.
1137 *
1138 * LOCKING:
1139 * caller.
1140 */
1141
Tejun Heo6a62a042006-02-13 10:02:46 +09001142void ata_id_string(const u16 *id, unsigned char *s,
1143 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 unsigned int c;
1146
1147 while (len > 0) {
1148 c = id[ofs] >> 8;
1149 *s = c;
1150 s++;
1151
1152 c = id[ofs] & 0xff;
1153 *s = c;
1154 s++;
1155
1156 ofs++;
1157 len -= 2;
1158 }
1159}
1160
Tejun Heo0e949ff2006-02-12 22:47:04 +09001161/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001162 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001163 * @id: IDENTIFY DEVICE results we will examine
1164 * @s: string into which data is output
1165 * @ofs: offset into identify device page
1166 * @len: length of string to return. must be an odd number.
1167 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001168 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001169 * trims trailing spaces and terminates the resulting string with
1170 * null. @len must be actual maximum length (even number) + 1.
1171 *
1172 * LOCKING:
1173 * caller.
1174 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001175void ata_id_c_string(const u16 *id, unsigned char *s,
1176 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001177{
1178 unsigned char *p;
1179
1180 WARN_ON(!(len & 1));
1181
Tejun Heo6a62a042006-02-13 10:02:46 +09001182 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001183
1184 p = s + strnlen(s, len - 1);
1185 while (p > s && p[-1] == ' ')
1186 p--;
1187 *p = '\0';
1188}
Edward Falk0baab862005-06-02 18:17:13 -04001189
Tejun Heodb6f8752007-09-03 12:31:58 +09001190static u64 ata_id_n_sectors(const u16 *id)
1191{
1192 if (ata_id_has_lba(id)) {
1193 if (ata_id_has_lba48(id))
1194 return ata_id_u64(id, 100);
1195 else
1196 return ata_id_u32(id, 60);
1197 } else {
1198 if (ata_id_current_chs_valid(id))
1199 return ata_id_u32(id, 57);
1200 else
1201 return id[1] * id[3] * id[6];
1202 }
1203}
1204
Tejun Heoa5987e02008-03-27 19:14:23 +09001205u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001206{
1207 u64 sectors = 0;
1208
1209 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1210 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1211 sectors |= (tf->hob_lbal & 0xff) << 24;
1212 sectors |= (tf->lbah & 0xff) << 16;
1213 sectors |= (tf->lbam & 0xff) << 8;
1214 sectors |= (tf->lbal & 0xff);
1215
Tejun Heoa5987e02008-03-27 19:14:23 +09001216 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001217}
1218
Tejun Heoa5987e02008-03-27 19:14:23 +09001219u64 ata_tf_to_lba(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001220{
1221 u64 sectors = 0;
1222
1223 sectors |= (tf->device & 0x0f) << 24;
1224 sectors |= (tf->lbah & 0xff) << 16;
1225 sectors |= (tf->lbam & 0xff) << 8;
1226 sectors |= (tf->lbal & 0xff);
1227
Tejun Heoa5987e02008-03-27 19:14:23 +09001228 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001229}
1230
1231/**
Tejun Heoc728a912007-09-03 12:32:30 +09001232 * ata_read_native_max_address - Read native max address
1233 * @dev: target device
1234 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001235 *
Tejun Heoc728a912007-09-03 12:32:30 +09001236 * Perform an LBA48 or LBA28 native size query upon the device in
1237 * question.
1238 *
1239 * RETURNS:
1240 * 0 on success, -EACCES if command is aborted by the drive.
1241 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001242 */
Tejun Heoc728a912007-09-03 12:32:30 +09001243static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001244{
Tejun Heoc728a912007-09-03 12:32:30 +09001245 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001246 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001247 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001248
1249 ata_tf_init(dev, &tf);
1250
Tejun Heoc728a912007-09-03 12:32:30 +09001251 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001252 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001253
1254 if (lba48) {
1255 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1256 tf.flags |= ATA_TFLAG_LBA48;
1257 } else
1258 tf.command = ATA_CMD_READ_NATIVE_MAX;
1259
Alan Cox1e999732007-04-11 00:23:13 +01001260 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001261 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001262
Tejun Heo2b789102007-10-09 15:05:44 +09001263 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001264 if (err_mask) {
1265 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1266 "max address (err_mask=0x%x)\n", err_mask);
1267 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1268 return -EACCES;
1269 return -EIO;
1270 }
Alan Cox1e999732007-04-11 00:23:13 +01001271
Tejun Heoc728a912007-09-03 12:32:30 +09001272 if (lba48)
Tejun Heoa5987e02008-03-27 19:14:23 +09001273 *max_sectors = ata_tf_to_lba48(&tf) + 1;
Tejun Heoc728a912007-09-03 12:32:30 +09001274 else
Tejun Heoa5987e02008-03-27 19:14:23 +09001275 *max_sectors = ata_tf_to_lba(&tf) + 1;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001276 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001277 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001278 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001279}
1280
1281/**
Tejun Heoc728a912007-09-03 12:32:30 +09001282 * ata_set_max_sectors - Set max sectors
1283 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001284 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001285 *
Tejun Heoc728a912007-09-03 12:32:30 +09001286 * Set max sectors of @dev to @new_sectors.
1287 *
1288 * RETURNS:
1289 * 0 on success, -EACCES if command is aborted or denied (due to
1290 * previous non-volatile SET_MAX) by the drive. -EIO on other
1291 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001292 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001293static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001294{
Tejun Heoc728a912007-09-03 12:32:30 +09001295 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001296 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001297 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001298
1299 new_sectors--;
1300
1301 ata_tf_init(dev, &tf);
1302
Alan Cox1e999732007-04-11 00:23:13 +01001303 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001304
1305 if (lba48) {
1306 tf.command = ATA_CMD_SET_MAX_EXT;
1307 tf.flags |= ATA_TFLAG_LBA48;
1308
1309 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1310 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1311 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001312 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001313 tf.command = ATA_CMD_SET_MAX;
1314
Tejun Heo1e582ba2007-09-21 20:07:14 +09001315 tf.device |= (new_sectors >> 24) & 0xf;
1316 }
1317
Alan Cox1e999732007-04-11 00:23:13 +01001318 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001319 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001320
1321 tf.lbal = (new_sectors >> 0) & 0xff;
1322 tf.lbam = (new_sectors >> 8) & 0xff;
1323 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001324
Tejun Heo2b789102007-10-09 15:05:44 +09001325 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001326 if (err_mask) {
1327 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1328 "max address (err_mask=0x%x)\n", err_mask);
1329 if (err_mask == AC_ERR_DEV &&
1330 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1331 return -EACCES;
1332 return -EIO;
1333 }
Alan Cox1e999732007-04-11 00:23:13 +01001334
Tejun Heoc728a912007-09-03 12:32:30 +09001335 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001336}
1337
1338/**
1339 * ata_hpa_resize - Resize a device with an HPA set
1340 * @dev: Device to resize
1341 *
1342 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1343 * it if required to the full size of the media. The caller must check
1344 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001345 *
1346 * RETURNS:
1347 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001348 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001349static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001350{
Tejun Heo05027ad2007-09-03 12:32:57 +09001351 struct ata_eh_context *ehc = &dev->link->eh_context;
1352 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1353 u64 sectors = ata_id_n_sectors(dev->id);
1354 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001355 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001356
Tejun Heo05027ad2007-09-03 12:32:57 +09001357 /* do we need to do it? */
1358 if (dev->class != ATA_DEV_ATA ||
1359 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1360 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001361 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001362
Tejun Heo05027ad2007-09-03 12:32:57 +09001363 /* read native max address */
1364 rc = ata_read_native_max_address(dev, &native_sectors);
1365 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001366 /* If device aborted the command or HPA isn't going to
1367 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001368 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001369 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001370 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001371 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001372 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001373
Tejun Heo05027ad2007-09-03 12:32:57 +09001374 /* we can continue if device aborted the command */
1375 if (rc == -EACCES)
1376 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001377 }
Tejun Heo37301a52007-06-25 20:45:54 +09001378
Tejun Heo05027ad2007-09-03 12:32:57 +09001379 return rc;
1380 }
1381
1382 /* nothing to do? */
1383 if (native_sectors <= sectors || !ata_ignore_hpa) {
1384 if (!print_info || native_sectors == sectors)
1385 return 0;
1386
1387 if (native_sectors > sectors)
1388 ata_dev_printk(dev, KERN_INFO,
1389 "HPA detected: current %llu, native %llu\n",
1390 (unsigned long long)sectors,
1391 (unsigned long long)native_sectors);
1392 else if (native_sectors < sectors)
1393 ata_dev_printk(dev, KERN_WARNING,
1394 "native sectors (%llu) is smaller than "
1395 "sectors (%llu)\n",
1396 (unsigned long long)native_sectors,
1397 (unsigned long long)sectors);
1398 return 0;
1399 }
1400
1401 /* let's unlock HPA */
1402 rc = ata_set_max_sectors(dev, native_sectors);
1403 if (rc == -EACCES) {
1404 /* if device aborted the command, skip HPA resizing */
1405 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1406 "(%llu -> %llu), skipping HPA handling\n",
1407 (unsigned long long)sectors,
1408 (unsigned long long)native_sectors);
1409 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1410 return 0;
1411 } else if (rc)
1412 return rc;
1413
1414 /* re-read IDENTIFY data */
1415 rc = ata_dev_reread_id(dev, 0);
1416 if (rc) {
1417 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1418 "data after HPA resizing\n");
1419 return rc;
1420 }
1421
1422 if (print_info) {
1423 u64 new_sectors = ata_id_n_sectors(dev->id);
1424 ata_dev_printk(dev, KERN_INFO,
1425 "HPA unlocked: %llu -> %llu, native %llu\n",
1426 (unsigned long long)sectors,
1427 (unsigned long long)new_sectors,
1428 (unsigned long long)native_sectors);
1429 }
1430
1431 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001432}
1433
Edward Falk0baab862005-06-02 18:17:13 -04001434/**
1435 * ata_noop_dev_select - Select device 0/1 on ATA bus
1436 * @ap: ATA channel to manipulate
1437 * @device: ATA device (numbered from zero) to select
1438 *
1439 * This function performs no actual function.
1440 *
1441 * May be used as the dev_select() entry in ata_port_operations.
1442 *
1443 * LOCKING:
1444 * caller.
1445 */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001446void ata_noop_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448}
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450/**
1451 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001452 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001454 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1455 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 *
1457 * LOCKING:
1458 * caller.
1459 */
1460
Tejun Heo0bd33002006-02-12 22:47:05 +09001461static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 DPRINTK("49==0x%04x "
1464 "53==0x%04x "
1465 "63==0x%04x "
1466 "64==0x%04x "
1467 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001468 id[49],
1469 id[53],
1470 id[63],
1471 id[64],
1472 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 DPRINTK("80==0x%04x "
1474 "81==0x%04x "
1475 "82==0x%04x "
1476 "83==0x%04x "
1477 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001478 id[80],
1479 id[81],
1480 id[82],
1481 id[83],
1482 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 DPRINTK("88==0x%04x "
1484 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001485 id[88],
1486 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Tejun Heocb95d562006-03-06 04:31:56 +09001489/**
1490 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1491 * @id: IDENTIFY data to compute xfer mask from
1492 *
1493 * Compute the xfermask for this device. This is not as trivial
1494 * as it seems if we must consider early devices correctly.
1495 *
1496 * FIXME: pre IDE drive timing (do we care ?).
1497 *
1498 * LOCKING:
1499 * None.
1500 *
1501 * RETURNS:
1502 * Computed xfermask
1503 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001504unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001505{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001506 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001507
1508 /* Usual case. Word 53 indicates word 64 is valid */
1509 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1510 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1511 pio_mask <<= 3;
1512 pio_mask |= 0x7;
1513 } else {
1514 /* If word 64 isn't valid then Word 51 high byte holds
1515 * the PIO timing number for the maximum. Turn it into
1516 * a mask.
1517 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001518 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001519 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001520 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001521 else
1522 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001523
1524 /* But wait.. there's more. Design your standards by
1525 * committee and you too can get a free iordy field to
1526 * process. However its the speeds not the modes that
1527 * are supported... Note drivers using the timing API
1528 * will get this right anyway
1529 */
1530 }
1531
1532 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001533
Alan Coxb352e572006-08-10 18:52:12 +01001534 if (ata_id_is_cfa(id)) {
1535 /*
1536 * Process compact flash extended modes
1537 */
1538 int pio = id[163] & 0x7;
1539 int dma = (id[163] >> 3) & 7;
1540
1541 if (pio)
1542 pio_mask |= (1 << 5);
1543 if (pio > 1)
1544 pio_mask |= (1 << 6);
1545 if (dma)
1546 mwdma_mask |= (1 << 3);
1547 if (dma > 1)
1548 mwdma_mask |= (1 << 4);
1549 }
1550
Tejun Heofb21f0d2006-03-12 12:34:35 +09001551 udma_mask = 0;
1552 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1553 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001554
1555 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1556}
1557
Tejun Heo86e45b62006-03-05 15:29:09 +09001558/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001559 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001560 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001561 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001562 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001563 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001564 *
1565 * Schedule @fn(@data) for execution after @delay jiffies using
1566 * port_task. There is one port_task per port and it's the
1567 * user(low level driver)'s responsibility to make sure that only
1568 * one task is active at any given time.
1569 *
1570 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001571 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001572 * synchronization.
1573 *
1574 * LOCKING:
1575 * Inherited from caller.
1576 */
Tejun Heo624d5c52008-03-25 22:16:41 +09001577void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001578{
David Howells65f27f32006-11-22 14:55:48 +00001579 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001580
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001581 /* may fail if ata_port_flush_task() in progress */
1582 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001583}
1584
1585/**
1586 * ata_port_flush_task - Flush port_task
1587 * @ap: The ata_port to flush port_task for
1588 *
1589 * After this function completes, port_task is guranteed not to
1590 * be running or scheduled.
1591 *
1592 * LOCKING:
1593 * Kernel thread context (may sleep)
1594 */
1595void ata_port_flush_task(struct ata_port *ap)
1596{
Tejun Heo86e45b62006-03-05 15:29:09 +09001597 DPRINTK("ENTER\n");
1598
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001599 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001600
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001601 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001602 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001603}
1604
Adrian Bunk7102d232007-01-04 00:09:36 +01001605static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001606{
Tejun Heo77853bf2006-01-23 13:09:36 +09001607 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001608
Tejun Heoa2a7a662005-12-13 14:48:31 +09001609 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001610}
1611
1612/**
Tejun Heo24326972006-11-14 22:47:09 +09001613 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001614 * @dev: Device to which the command is sent
1615 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001616 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001617 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001618 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001619 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001620 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001621 *
1622 * Executes libata internal command with timeout. @tf contains
1623 * command on entry and result on return. Timeout and error
1624 * conditions are reported via return value. No recovery action
1625 * is taken after a command times out. It's caller's duty to
1626 * clean up after timeout.
1627 *
1628 * LOCKING:
1629 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001630 *
1631 * RETURNS:
1632 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001633 */
Tejun Heo24326972006-11-14 22:47:09 +09001634unsigned ata_exec_internal_sg(struct ata_device *dev,
1635 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001636 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001637 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001638{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001639 struct ata_link *link = dev->link;
1640 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001641 u8 command = tf->command;
1642 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001643 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001644 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001645 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001646 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001647 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001648 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001649 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001650
Jeff Garzikba6a1302006-06-22 23:46:10 -04001651 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001652
Tejun Heoe3180492006-05-15 20:58:09 +09001653 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001654 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001655 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001656 return AC_ERR_SYSTEM;
1657 }
1658
Tejun Heo2ab7db12006-05-15 20:58:02 +09001659 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001660
Tejun Heo2ab7db12006-05-15 20:58:02 +09001661 /* XXX: Tag 0 is used for drivers with legacy EH as some
1662 * drivers choke if any other tag is given. This breaks
1663 * ata_tag_internal() test for those drivers. Don't use new
1664 * EH stuff without converting to it.
1665 */
1666 if (ap->ops->error_handler)
1667 tag = ATA_TAG_INTERNAL;
1668 else
1669 tag = 0;
1670
Tejun Heo6cec4a32006-05-15 21:03:41 +09001671 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001672 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001673 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001674
1675 qc->tag = tag;
1676 qc->scsicmd = NULL;
1677 qc->ap = ap;
1678 qc->dev = dev;
1679 ata_qc_reinit(qc);
1680
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001681 preempted_tag = link->active_tag;
1682 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001683 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001684 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001685 link->active_tag = ATA_TAG_POISON;
1686 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001687 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001688 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001689
1690 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001691 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001692 if (cdb)
1693 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001694 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001695 qc->dma_dir = dma_dir;
1696 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001697 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001698 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001699
Jens Axboe87260212007-10-16 11:14:12 +02001700 for_each_sg(sgl, sg, n_elem, i)
1701 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001702
Jens Axboe87260212007-10-16 11:14:12 +02001703 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001704 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001705 }
1706
Tejun Heo77853bf2006-01-23 13:09:36 +09001707 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001708 qc->complete_fn = ata_qc_complete_internal;
1709
Tejun Heo8e0e6942006-03-31 20:41:11 +09001710 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001711
Jeff Garzikba6a1302006-06-22 23:46:10 -04001712 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001713
Tejun Heo2b789102007-10-09 15:05:44 +09001714 if (!timeout)
1715 timeout = ata_probe_timeout * 1000 / HZ;
1716
1717 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001718
Tejun Heod95a7172006-05-15 20:58:14 +09001719 ata_port_flush_task(ap);
1720
1721 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001722 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001723
1724 /* We're racing with irq here. If we lose, the
1725 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001726 * twice. If we win, the port is frozen and will be
1727 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001728 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001729 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001730 qc->err_mask |= AC_ERR_TIMEOUT;
1731
1732 if (ap->ops->error_handler)
1733 ata_port_freeze(ap);
1734 else
1735 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001736
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001737 if (ata_msg_warn(ap))
1738 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001739 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001740 }
1741
Jeff Garzikba6a1302006-06-22 23:46:10 -04001742 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001743 }
1744
Tejun Heod95a7172006-05-15 20:58:14 +09001745 /* do post_internal_cmd */
1746 if (ap->ops->post_internal_cmd)
1747 ap->ops->post_internal_cmd(qc);
1748
Tejun Heoa51d6442007-03-20 15:24:11 +09001749 /* perform minimal error analysis */
1750 if (qc->flags & ATA_QCFLAG_FAILED) {
1751 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1752 qc->err_mask |= AC_ERR_DEV;
1753
1754 if (!qc->err_mask)
1755 qc->err_mask |= AC_ERR_OTHER;
1756
1757 if (qc->err_mask & ~AC_ERR_OTHER)
1758 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001759 }
1760
Tejun Heo15869302006-05-15 20:57:33 +09001761 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001762 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001763
Tejun Heoe61e0672006-05-15 20:57:40 +09001764 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001765 err_mask = qc->err_mask;
1766
1767 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001768 link->active_tag = preempted_tag;
1769 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001770 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001771 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001772
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001773 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1774 * Until those drivers are fixed, we detect the condition
1775 * here, fail the command with AC_ERR_SYSTEM and reenable the
1776 * port.
1777 *
1778 * Note that this doesn't change any behavior as internal
1779 * command failure results in disabling the device in the
1780 * higher layer for LLDDs without new reset/EH callbacks.
1781 *
1782 * Kill the following code as soon as those drivers are fixed.
1783 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001784 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001785 err_mask |= AC_ERR_SYSTEM;
1786 ata_port_probe(ap);
1787 }
1788
Jeff Garzikba6a1302006-06-22 23:46:10 -04001789 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001790
Tejun Heo77853bf2006-01-23 13:09:36 +09001791 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794/**
Tejun Heo33480a02006-12-12 02:15:31 +09001795 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001796 * @dev: Device to which the command is sent
1797 * @tf: Taskfile registers for the command and the result
1798 * @cdb: CDB for packet command
1799 * @dma_dir: Data tranfer direction of the command
1800 * @buf: Data buffer of the command
1801 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001802 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001803 *
1804 * Wrapper around ata_exec_internal_sg() which takes simple
1805 * buffer instead of sg list.
1806 *
1807 * LOCKING:
1808 * None. Should be called with kernel context, might sleep.
1809 *
1810 * RETURNS:
1811 * Zero on success, AC_ERR_* mask on failure
1812 */
1813unsigned ata_exec_internal(struct ata_device *dev,
1814 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001815 int dma_dir, void *buf, unsigned int buflen,
1816 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001817{
Tejun Heo33480a02006-12-12 02:15:31 +09001818 struct scatterlist *psg = NULL, sg;
1819 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001820
Tejun Heo33480a02006-12-12 02:15:31 +09001821 if (dma_dir != DMA_NONE) {
1822 WARN_ON(!buf);
1823 sg_init_one(&sg, buf, buflen);
1824 psg = &sg;
1825 n_elem++;
1826 }
Tejun Heo24326972006-11-14 22:47:09 +09001827
Tejun Heo2b789102007-10-09 15:05:44 +09001828 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1829 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001830}
1831
1832/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001833 * ata_do_simple_cmd - execute simple internal command
1834 * @dev: Device to which the command is sent
1835 * @cmd: Opcode to execute
1836 *
1837 * Execute a 'simple' command, that only consists of the opcode
1838 * 'cmd' itself, without filling any other registers
1839 *
1840 * LOCKING:
1841 * Kernel thread context (may sleep).
1842 *
1843 * RETURNS:
1844 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001845 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001846unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001847{
1848 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001849
1850 ata_tf_init(dev, &tf);
1851
1852 tf.command = cmd;
1853 tf.flags |= ATA_TFLAG_DEVICE;
1854 tf.protocol = ATA_PROT_NODATA;
1855
Tejun Heo2b789102007-10-09 15:05:44 +09001856 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001860 * ata_pio_need_iordy - check if iordy needed
1861 * @adev: ATA device
1862 *
1863 * Check if the current speed of the device requires IORDY. Used
1864 * by various controllers for chip configuration.
1865 */
Jeff Garzika617c092007-05-21 20:14:23 -04001866
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001867unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1868{
Alan Cox432729f2007-03-08 23:22:59 +00001869 /* Controller doesn't support IORDY. Probably a pointless check
1870 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001871 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001872 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001873 /* PIO3 and higher it is mandatory */
1874 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001875 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001876 /* We turn it on when possible */
1877 if (ata_id_has_iordy(adev->id))
1878 return 1;
1879 return 0;
1880}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001881
Alan Cox432729f2007-03-08 23:22:59 +00001882/**
1883 * ata_pio_mask_no_iordy - Return the non IORDY mask
1884 * @adev: ATA device
1885 *
1886 * Compute the highest mode possible if we are not using iordy. Return
1887 * -1 if no iordy mode is available.
1888 */
Jeff Garzika617c092007-05-21 20:14:23 -04001889
Alan Cox432729f2007-03-08 23:22:59 +00001890static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1891{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001892 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001893 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001894 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001895 /* Is the speed faster than the drive allows non IORDY ? */
1896 if (pio) {
1897 /* This is cycle times not frequency - watch the logic! */
1898 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001899 return 3 << ATA_SHIFT_PIO;
1900 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001901 }
1902 }
Alan Cox432729f2007-03-08 23:22:59 +00001903 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001904}
1905
1906/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001907 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001908 * @dev: target device
1909 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001910 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001911 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001912 *
1913 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1914 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001915 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1916 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001917 *
Alan Cox50a99012007-08-08 14:27:00 +01001918 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001919 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01001920 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001921 * LOCKING:
1922 * Kernel thread context (may sleep)
1923 *
1924 * RETURNS:
1925 * 0 on success, -errno otherwise.
1926 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001927int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001928 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001929{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001930 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001931 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001932 struct ata_taskfile tf;
1933 unsigned int err_mask = 0;
1934 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001935 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001936 int rc;
1937
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001938 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001939 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001940
Tejun Heo49016ac2006-02-21 02:12:11 +09001941 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001942 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001943
1944 switch (class) {
1945 case ATA_DEV_ATA:
1946 tf.command = ATA_CMD_ID_ATA;
1947 break;
1948 case ATA_DEV_ATAPI:
1949 tf.command = ATA_CMD_ID_ATAPI;
1950 break;
1951 default:
1952 rc = -ENODEV;
1953 reason = "unsupported class";
1954 goto err_out;
1955 }
1956
1957 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001958
1959 /* Some devices choke if TF registers contain garbage. Make
1960 * sure those are properly initialized.
1961 */
1962 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1963
1964 /* Device presence detection is unreliable on some
1965 * controllers. Always poll IDENTIFY if available.
1966 */
1967 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001968
Tejun Heo3373efd2006-05-15 20:57:53 +09001969 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09001970 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09001971 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001972 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09001973 ata_dev_printk(dev, KERN_DEBUG,
1974 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001975 return -ENOENT;
1976 }
1977
Tejun Heo1ffc1512008-03-23 15:16:53 +09001978 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1979 /* Device or controller might have reported
1980 * the wrong device class. Give a shot at the
1981 * other IDENTIFY if the current one is
1982 * aborted by the device.
1983 */
1984 if (may_fallback) {
1985 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02001986
Tejun Heo1ffc1512008-03-23 15:16:53 +09001987 if (class == ATA_DEV_ATA)
1988 class = ATA_DEV_ATAPI;
1989 else
1990 class = ATA_DEV_ATA;
1991 goto retry;
1992 }
1993
1994 /* Control reaches here iff the device aborted
1995 * both flavors of IDENTIFYs which happens
1996 * sometimes with phantom devices.
1997 */
1998 ata_dev_printk(dev, KERN_DEBUG,
1999 "both IDENTIFYs aborted, assuming NODEV\n");
2000 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002001 }
2002
Tejun Heo49016ac2006-02-21 02:12:11 +09002003 rc = -EIO;
2004 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002005 goto err_out;
2006 }
2007
Tejun Heo54936f82007-05-11 14:35:29 +02002008 /* Falling back doesn't make sense if ID data was read
2009 * successfully at least once.
2010 */
2011 may_fallback = 0;
2012
Tejun Heo49016ac2006-02-21 02:12:11 +09002013 swap_buf_le16(id, ATA_ID_WORDS);
2014
Tejun Heo49016ac2006-02-21 02:12:11 +09002015 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002016 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002017 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002018
2019 if (class == ATA_DEV_ATA) {
2020 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2021 goto err_out;
2022 } else {
2023 if (ata_id_is_ata(id))
2024 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002025 }
2026
Mark Lord169439c2007-04-17 18:26:07 -04002027 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2028 tried_spinup = 1;
2029 /*
2030 * Drive powered-up in standby mode, and requires a specific
2031 * SET_FEATURES spin-up subcommand before it will accept
2032 * anything other than the original IDENTIFY command.
2033 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002034 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002035 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002036 rc = -EIO;
2037 reason = "SPINUP failed";
2038 goto err_out;
2039 }
2040 /*
2041 * If the drive initially returned incomplete IDENTIFY info,
2042 * we now must reissue the IDENTIFY command.
2043 */
2044 if (id[2] == 0x37c8)
2045 goto retry;
2046 }
2047
Tejun Heobff04642006-11-10 18:08:10 +09002048 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002049 /*
2050 * The exact sequence expected by certain pre-ATA4 drives is:
2051 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002052 * IDENTIFY (optional in early ATA)
2053 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002054 * anything else..
2055 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002056 *
2057 * Note that ATA4 says lba is mandatory so the second check
2058 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002059 */
2060 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002061 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002062 if (err_mask) {
2063 rc = -EIO;
2064 reason = "INIT_DEV_PARAMS failed";
2065 goto err_out;
2066 }
2067
2068 /* current CHS translation info (id[53-58]) might be
2069 * changed. reread the identify device info.
2070 */
Tejun Heobff04642006-11-10 18:08:10 +09002071 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002072 goto retry;
2073 }
2074 }
2075
2076 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002077
Tejun Heo49016ac2006-02-21 02:12:11 +09002078 return 0;
2079
2080 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002081 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002082 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002083 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002084 return rc;
2085}
2086
Tejun Heo3373efd2006-05-15 20:57:53 +09002087static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002088{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002089 struct ata_port *ap = dev->link->ap;
2090 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002091}
2092
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002093static void ata_dev_config_ncq(struct ata_device *dev,
2094 char *desc, size_t desc_sz)
2095{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002096 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002097 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2098
2099 if (!ata_id_has_ncq(dev->id)) {
2100 desc[0] = '\0';
2101 return;
2102 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002103 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002104 snprintf(desc, desc_sz, "NCQ (not used)");
2105 return;
2106 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002107 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002108 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002109 dev->flags |= ATA_DFLAG_NCQ;
2110 }
2111
2112 if (hdepth >= ddepth)
2113 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2114 else
2115 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2116}
2117
Tejun Heo49016ac2006-02-21 02:12:11 +09002118/**
Tejun Heoffeae412006-03-01 16:09:35 +09002119 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002120 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 *
Tejun Heoffeae412006-03-01 16:09:35 +09002122 * Configure @dev according to @dev->id. Generic and low-level
2123 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 *
2125 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002126 * Kernel thread context (may sleep)
2127 *
2128 * RETURNS:
2129 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002131int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002133 struct ata_port *ap = dev->link->ap;
2134 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002135 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002136 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002137 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002138 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002139 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2140 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002141 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002143 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002144 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002145 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002149 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002150 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Tejun Heo75683fe2007-07-05 13:31:27 +09002152 /* set horkage */
2153 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002154 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002155
Tejun Heo67465442007-05-15 03:28:16 +09002156 /* let ACPI work its magic */
2157 rc = ata_acpi_on_devcfg(dev);
2158 if (rc)
2159 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002160
Tejun Heo05027ad2007-09-03 12:32:57 +09002161 /* massage HPA, do it early as it might change IDENTIFY data */
2162 rc = ata_hpa_resize(dev);
2163 if (rc)
2164 return rc;
2165
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002166 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002167 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002168 ata_dev_printk(dev, KERN_DEBUG,
2169 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2170 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002171 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002172 id[49], id[82], id[83], id[84],
2173 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002174
Tejun Heo208a9932006-03-05 17:55:58 +09002175 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002176 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002177 dev->max_sectors = 0;
2178 dev->cdb_len = 0;
2179 dev->n_sectors = 0;
2180 dev->cylinders = 0;
2181 dev->heads = 0;
2182 dev->sectors = 0;
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 /*
2185 * common ATA, ATAPI feature tests
2186 */
2187
Tejun Heoff8854b2006-03-06 04:31:56 +09002188 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002189 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002191 if (ata_msg_probe(ap))
2192 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Albert Leeef143d52007-06-05 13:01:33 +08002194 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2195 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2196 sizeof(fwrevbuf));
2197
2198 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2199 sizeof(modelbuf));
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /* ATA-specific feature tests */
2202 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002203 if (ata_id_is_cfa(id)) {
2204 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002205 ata_dev_printk(dev, KERN_WARNING,
2206 "supports DRM functions and may "
2207 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002208 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002209 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002210 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002211 /* Warn the user if the device has TPM extensions */
2212 if (ata_id_has_tpm(id))
2213 ata_dev_printk(dev, KERN_WARNING,
2214 "supports DRM functions and may "
2215 "not be fully accessable.\n");
2216 }
Alan Coxb352e572006-08-10 18:52:12 +01002217
Tejun Heo1148c3a2006-03-13 19:48:04 +09002218 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002219
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002220 if (dev->id[59] & 0x100)
2221 dev->multi_count = dev->id[59] & 0xff;
2222
Tejun Heo1148c3a2006-03-13 19:48:04 +09002223 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002224 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002225 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002226
Tejun Heo4c2d7212006-03-05 17:55:58 +09002227 lba_desc = "LBA";
2228 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002229 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002230 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002231 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002232
2233 if (dev->n_sectors >= (1UL << 28) &&
2234 ata_id_has_flush_ext(id))
2235 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002236 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002237
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002238 /* config NCQ */
2239 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2240
Albert Lee8bf62ece2005-05-12 15:29:42 -04002241 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002242 if (ata_msg_drv(ap) && print_info) {
2243 ata_dev_printk(dev, KERN_INFO,
2244 "%s: %s, %s, max %s\n",
2245 revbuf, modelbuf, fwrevbuf,
2246 ata_mode_string(xfer_mask));
2247 ata_dev_printk(dev, KERN_INFO,
2248 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002249 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002250 dev->multi_count, lba_desc, ncq_desc);
2251 }
Tejun Heoffeae412006-03-01 16:09:35 +09002252 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002253 /* CHS */
2254
2255 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002256 dev->cylinders = id[1];
2257 dev->heads = id[3];
2258 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002259
Tejun Heo1148c3a2006-03-13 19:48:04 +09002260 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002261 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002262 dev->cylinders = id[54];
2263 dev->heads = id[55];
2264 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002265 }
2266
2267 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002268 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002269 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002270 "%s: %s, %s, max %s\n",
2271 revbuf, modelbuf, fwrevbuf,
2272 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002273 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002274 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2275 (unsigned long long)dev->n_sectors,
2276 dev->multi_count, dev->cylinders,
2277 dev->heads, dev->sectors);
2278 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002279 }
2280
Tejun Heo6e7846e2006-02-12 23:32:58 +09002281 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283
2284 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002285 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002286 const char *cdb_intr_string = "";
2287 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002288 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002289 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002290
Tejun Heo1148c3a2006-03-13 19:48:04 +09002291 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002293 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002294 ata_dev_printk(dev, KERN_WARNING,
2295 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002296 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 goto err_out_nosup;
2298 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002299 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Tejun Heo7d77b242007-09-23 13:14:13 +09002301 /* Enable ATAPI AN if both the host and device have
2302 * the support. If PMP is attached, SNTF is required
2303 * to enable ATAPI AN to discern between PHY status
2304 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002305 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002306 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2307 (!ap->nr_pmp_links ||
2308 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002309 unsigned int err_mask;
2310
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002311 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002312 err_mask = ata_dev_set_feature(dev,
2313 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002314 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002315 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002316 "failed to enable ATAPI AN "
2317 "(err_mask=0x%x)\n", err_mask);
2318 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002319 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002320 atapi_an_string = ", ATAPI AN";
2321 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002322 }
2323
Albert Lee08a556d2006-03-31 13:29:04 +08002324 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002325 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002326 cdb_intr_string = ", CDB intr";
2327 }
Albert Lee312f7da2005-09-27 17:38:03 +08002328
Tejun Heo91163002008-02-21 13:25:50 +09002329 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2330 dev->flags |= ATA_DFLAG_DMADIR;
2331 dma_dir_string = ", DMADIR";
2332 }
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002335 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002336 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002337 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002338 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002339 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002340 cdb_intr_string, atapi_an_string,
2341 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 }
2343
Tejun Heo914ed352006-11-01 18:39:55 +09002344 /* determine max_sectors */
2345 dev->max_sectors = ATA_MAX_SECTORS;
2346 if (dev->flags & ATA_DFLAG_LBA48)
2347 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2348
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002349 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2350 if (ata_id_has_hipm(dev->id))
2351 dev->flags |= ATA_DFLAG_HIPM;
2352 if (ata_id_has_dipm(dev->id))
2353 dev->flags |= ATA_DFLAG_DIPM;
2354 }
2355
Alan Coxc5038fc2007-10-25 14:21:16 +01002356 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2357 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002358 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002359 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002360 ata_dev_printk(dev, KERN_INFO,
2361 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002362 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002363 dev->max_sectors = ATA_MAX_SECTORS;
2364 }
2365
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002366 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002367 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002368 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002369 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2370 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002371
Tejun Heo75683fe2007-07-05 13:31:27 +09002372 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002373 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2374 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002375
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002376 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2377 dev->horkage |= ATA_HORKAGE_IPM;
2378
2379 /* reset link pm_policy for this port to no pm */
2380 ap->pm_policy = MAX_PERFORMANCE;
2381 }
2382
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002383 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002384 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002385
Alan Coxc5038fc2007-10-25 14:21:16 +01002386 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2387 /* Let the user know. We don't want to disallow opens for
2388 rescue purposes, or in case the vendor is just a blithering
2389 idiot. Do this after the dev_config call as some controllers
2390 with buggy firmware may want to avoid reporting false device
2391 bugs */
2392
2393 if (print_info) {
2394 ata_dev_printk(dev, KERN_WARNING,
2395"Drive reports diagnostics failure. This may indicate a drive\n");
2396 ata_dev_printk(dev, KERN_WARNING,
2397"fault or invalid emulation. Contact drive vendor for information.\n");
2398 }
2399 }
2400
Tejun Heoffeae412006-03-01 16:09:35 +09002401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002404 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002405 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002406 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002407 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408}
2409
2410/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002411 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002412 * @ap: port
2413 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002414 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002415 * detection.
2416 */
2417
2418int ata_cable_40wire(struct ata_port *ap)
2419{
2420 return ATA_CBL_PATA40;
2421}
2422
2423/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002424 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002425 * @ap: port
2426 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002427 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002428 * detection.
2429 */
2430
2431int ata_cable_80wire(struct ata_port *ap)
2432{
2433 return ATA_CBL_PATA80;
2434}
2435
2436/**
2437 * ata_cable_unknown - return unknown PATA cable.
2438 * @ap: port
2439 *
2440 * Helper method for drivers which have no PATA cable detection.
2441 */
2442
2443int ata_cable_unknown(struct ata_port *ap)
2444{
2445 return ATA_CBL_PATA_UNK;
2446}
2447
2448/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002449 * ata_cable_ignore - return ignored PATA cable.
2450 * @ap: port
2451 *
2452 * Helper method for drivers which don't use cable type to limit
2453 * transfer mode.
2454 */
2455int ata_cable_ignore(struct ata_port *ap)
2456{
2457 return ATA_CBL_PATA_IGN;
2458}
2459
2460/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002461 * ata_cable_sata - return SATA cable type
2462 * @ap: port
2463 *
2464 * Helper method for drivers which have SATA cables
2465 */
2466
2467int ata_cable_sata(struct ata_port *ap)
2468{
2469 return ATA_CBL_SATA;
2470}
2471
2472/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 * ata_bus_probe - Reset and probe ATA bus
2474 * @ap: Bus to probe
2475 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002476 * Master ATA bus probing function. Initiates a hardware-dependent
2477 * bus reset, then attempts to identify any devices found on
2478 * the bus.
2479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002481 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 *
2483 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002484 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 */
2486
Brian King80289162006-08-07 14:27:31 -05002487int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002489 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002490 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002491 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002492 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Tejun Heo28ca5c52006-03-01 16:09:36 +09002494 ata_port_probe(ap);
2495
Tejun Heof58229f2007-08-06 18:36:23 +09002496 ata_link_for_each_dev(dev, &ap->link)
2497 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002498
2499 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002500 ata_link_for_each_dev(dev, &ap->link) {
2501 /* If we issue an SRST then an ATA drive (not ATAPI)
2502 * may change configuration and be in PIO0 timing. If
2503 * we do a hard reset (or are coming from power on)
2504 * this is true for ATA or ATAPI. Until we've set a
2505 * suitable controller mode we should not touch the
2506 * bus as we may be talking too fast.
2507 */
2508 dev->pio_mode = XFER_PIO_0;
2509
2510 /* If the controller has a pio mode setup function
2511 * then use it to set the chipset to rights. Don't
2512 * touch the DMA setup as that will be dealt with when
2513 * configuring devices.
2514 */
2515 if (ap->ops->set_piomode)
2516 ap->ops->set_piomode(ap, dev);
2517 }
2518
Tejun Heo20444702006-03-13 01:57:01 +09002519 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002520 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002521
Tejun Heof58229f2007-08-06 18:36:23 +09002522 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002523 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2524 dev->class != ATA_DEV_UNKNOWN)
2525 classes[dev->devno] = dev->class;
2526 else
2527 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002528
Tejun Heo52783c52006-05-31 18:28:22 +09002529 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Tejun Heo52783c52006-05-31 18:28:22 +09002532 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002533
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002534 /* read IDENTIFY page and configure devices. We have to do the identify
2535 specific sequence bass-ackwards so that PDIAG- is released by
2536 the slave device */
2537
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002538 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002539 if (tries[dev->devno])
2540 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002541
Tejun Heoe1211e32006-04-01 01:38:18 +09002542 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002543 continue;
2544
Tejun Heobff04642006-11-10 18:08:10 +09002545 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2546 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002547 if (rc)
2548 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002549 }
2550
Alan Coxbe0d18d2007-03-06 02:37:56 -08002551 /* Now ask for the cable type as PDIAG- should have been released */
2552 if (ap->ops->cable_detect)
2553 ap->cbl = ap->ops->cable_detect(ap);
2554
Alan Cox614fe292007-08-22 23:22:45 +01002555 /* We may have SATA bridge glue hiding here irrespective of the
2556 reported cable types and sensed types */
2557 ata_link_for_each_dev(dev, &ap->link) {
2558 if (!ata_dev_enabled(dev))
2559 continue;
2560 /* SATA drives indicate we have a bridge. We don't know which
2561 end of the link the bridge is which is a problem */
2562 if (ata_id_is_sata(dev->id))
2563 ap->cbl = ATA_CBL_SATA;
2564 }
2565
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002566 /* After the identify sequence we can now set up the devices. We do
2567 this in the normal order so that the user doesn't get confused */
2568
Tejun Heof58229f2007-08-06 18:36:23 +09002569 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002570 if (!ata_dev_enabled(dev))
2571 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002572
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002573 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002574 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002575 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002576 if (rc)
2577 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002580 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002581 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002582 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002583 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Tejun Heof58229f2007-08-06 18:36:23 +09002585 ata_link_for_each_dev(dev, &ap->link)
2586 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002587 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002588
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002589 /* no device present, disable port */
2590 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002591 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002592
2593 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002594 tries[dev->devno]--;
2595
Tejun Heo14d2bac2006-04-02 17:54:46 +09002596 switch (rc) {
2597 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002598 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002599 tries[dev->devno] = 0;
2600 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002601
2602 case -ENODEV:
2603 /* give it just one more chance */
2604 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002605 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002606 if (tries[dev->devno] == 1) {
2607 /* This is the last chance, better to slow
2608 * down than lose it.
2609 */
Tejun Heo936fd732007-08-06 18:36:23 +09002610 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002611 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2612 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002613 }
2614
Tejun Heo4ae72a12007-02-02 16:22:30 +09002615 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002616 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002617
Tejun Heo14d2bac2006-04-02 17:54:46 +09002618 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
2621/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002622 * ata_port_probe - Mark port as enabled
2623 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002625 * Modify @ap data structure such that the system
2626 * thinks that the entire port is enabled.
2627 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002628 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002629 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 */
2631
2632void ata_port_probe(struct ata_port *ap)
2633{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002634 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
2637/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002638 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002639 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002640 *
2641 * This function prints link speed and status of a SATA link.
2642 *
2643 * LOCKING:
2644 * None.
2645 */
Tejun Heo936fd732007-08-06 18:36:23 +09002646void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002647{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002648 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002649
Tejun Heo936fd732007-08-06 18:36:23 +09002650 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002651 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002652 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002653
Tejun Heo936fd732007-08-06 18:36:23 +09002654 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002655 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002656 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002657 "SATA link up %s (SStatus %X SControl %X)\n",
2658 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002659 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002660 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002661 "SATA link down (SStatus %X SControl %X)\n",
2662 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002663 }
2664}
2665
2666/**
Alan Coxebdfca62006-03-23 15:38:34 +00002667 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002668 * @adev: device
2669 *
2670 * Obtain the other device on the same cable, or if none is
2671 * present NULL is returned
2672 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002673
Tejun Heo3373efd2006-05-15 20:57:53 +09002674struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002675{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002676 struct ata_link *link = adev->link;
2677 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002678 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002679 return NULL;
2680 return pair;
2681}
2682
2683/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002684 * ata_port_disable - Disable port.
2685 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002687 * Modify @ap data structure such that the system
2688 * thinks that the entire port is disabled, and should
2689 * never attempt to probe or communicate with devices
2690 * on this port.
2691 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002692 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002693 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 */
2695
2696void ata_port_disable(struct ata_port *ap)
2697{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002698 ap->link.device[0].class = ATA_DEV_NONE;
2699 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002700 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701}
2702
Tejun Heo1c3fae42006-04-02 20:53:28 +09002703/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002704 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002705 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002706 *
Tejun Heo936fd732007-08-06 18:36:23 +09002707 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002708 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002709 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002710 *
2711 * LOCKING:
2712 * Inherited from caller.
2713 *
2714 * RETURNS:
2715 * 0 on success, negative errno on failure
2716 */
Tejun Heo936fd732007-08-06 18:36:23 +09002717int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002718{
Tejun Heo81952c52006-05-15 20:57:47 +09002719 u32 sstatus, spd, mask;
2720 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002721
Tejun Heo936fd732007-08-06 18:36:23 +09002722 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002723 return -EOPNOTSUPP;
2724
2725 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002726 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002727 */
Tejun Heo936fd732007-08-06 18:36:23 +09002728 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002729 if (rc == 0)
2730 spd = (sstatus >> 4) & 0xf;
2731 else
Tejun Heo936fd732007-08-06 18:36:23 +09002732 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002733
Tejun Heo936fd732007-08-06 18:36:23 +09002734 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002735 if (mask <= 1)
2736 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002737
2738 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002739 highbit = fls(mask) - 1;
2740 mask &= ~(1 << highbit);
2741
Tejun Heo008a7892007-07-16 14:29:40 +09002742 /* Mask off all speeds higher than or equal to the current
2743 * one. Force 1.5Gbps if current SPD is not available.
2744 */
2745 if (spd > 1)
2746 mask &= (1 << (spd - 1)) - 1;
2747 else
2748 mask &= 1;
2749
2750 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002751 if (!mask)
2752 return -EINVAL;
2753
Tejun Heo936fd732007-08-06 18:36:23 +09002754 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002755
Tejun Heo936fd732007-08-06 18:36:23 +09002756 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002757 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002758
2759 return 0;
2760}
2761
Tejun Heo936fd732007-08-06 18:36:23 +09002762static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002763{
Tejun Heo52702222007-10-31 10:17:07 +09002764 struct ata_link *host_link = &link->ap->link;
2765 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002766
Tejun Heo52702222007-10-31 10:17:07 +09002767 limit = link->sata_spd_limit;
2768
2769 /* Don't configure downstream link faster than upstream link.
2770 * It doesn't speed up anything and some PMPs choke on such
2771 * configuration.
2772 */
2773 if (!ata_is_host_link(link) && host_link->sata_spd)
2774 limit &= (1 << host_link->sata_spd) - 1;
2775
2776 if (limit == UINT_MAX)
2777 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002778 else
Tejun Heo52702222007-10-31 10:17:07 +09002779 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002780
2781 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002782 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002783
Tejun Heo52702222007-10-31 10:17:07 +09002784 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002785}
2786
2787/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002788 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002789 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002790 *
2791 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002792 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002793 * whether hardreset is necessary to apply SATA spd
2794 * configuration.
2795 *
2796 * LOCKING:
2797 * Inherited from caller.
2798 *
2799 * RETURNS:
2800 * 1 if SATA spd configuration is needed, 0 otherwise.
2801 */
Tejun Heo936fd732007-08-06 18:36:23 +09002802int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002803{
2804 u32 scontrol;
2805
Tejun Heo936fd732007-08-06 18:36:23 +09002806 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002807 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002808
Tejun Heo936fd732007-08-06 18:36:23 +09002809 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002810}
2811
2812/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002813 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002814 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002815 *
Tejun Heo936fd732007-08-06 18:36:23 +09002816 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002817 *
2818 * LOCKING:
2819 * Inherited from caller.
2820 *
2821 * RETURNS:
2822 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002823 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002824 */
Tejun Heo936fd732007-08-06 18:36:23 +09002825int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002826{
2827 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002828 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002829
Tejun Heo936fd732007-08-06 18:36:23 +09002830 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002831 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002832
Tejun Heo936fd732007-08-06 18:36:23 +09002833 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002834 return 0;
2835
Tejun Heo936fd732007-08-06 18:36:23 +09002836 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002837 return rc;
2838
Tejun Heo1c3fae42006-04-02 20:53:28 +09002839 return 1;
2840}
2841
Alan Cox452503f2005-10-21 19:01:32 -04002842/*
2843 * This mode timing computation functionality is ported over from
2844 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2845 */
2846/*
Alan Coxb352e572006-08-10 18:52:12 +01002847 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002848 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002849 * for UDMA6, which is currently supported only by Maxtor drives.
2850 *
2851 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002852 */
2853
2854static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09002855/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2856 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2857 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2858 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2859 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2860 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2861 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
2862 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002863
Tejun Heo70cd0712007-11-27 19:43:40 +09002864 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2865 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2866 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002867
Tejun Heo70cd0712007-11-27 19:43:40 +09002868 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
2869 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2870 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01002871 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09002872 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002873
2874/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09002875 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2876 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2877 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2878 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2879 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2880 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2881 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04002882
2883 { 0xFF }
2884};
2885
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002886#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
2887#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04002888
2889static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2890{
2891 q->setup = EZ(t->setup * 1000, T);
2892 q->act8b = EZ(t->act8b * 1000, T);
2893 q->rec8b = EZ(t->rec8b * 1000, T);
2894 q->cyc8b = EZ(t->cyc8b * 1000, T);
2895 q->active = EZ(t->active * 1000, T);
2896 q->recover = EZ(t->recover * 1000, T);
2897 q->cycle = EZ(t->cycle * 1000, T);
2898 q->udma = EZ(t->udma * 1000, UT);
2899}
2900
2901void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2902 struct ata_timing *m, unsigned int what)
2903{
2904 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2905 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2906 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2907 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2908 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2909 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2910 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2911 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2912}
2913
Tejun Heo63573572007-11-27 19:43:39 +09002914const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04002915{
Tejun Heo70cd0712007-11-27 19:43:40 +09002916 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04002917
Tejun Heo70cd0712007-11-27 19:43:40 +09002918 while (xfer_mode > t->mode)
2919 t++;
2920
2921 if (xfer_mode == t->mode)
2922 return t;
2923 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04002924}
2925
2926int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2927 struct ata_timing *t, int T, int UT)
2928{
2929 const struct ata_timing *s;
2930 struct ata_timing p;
2931
2932 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002933 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002934 */
Alan Cox452503f2005-10-21 19:01:32 -04002935
2936 if (!(s = ata_timing_find_mode(speed)))
2937 return -EINVAL;
2938
Albert Lee75b1f2f2005-11-16 17:06:18 +08002939 memcpy(t, s, sizeof(*s));
2940
Alan Cox452503f2005-10-21 19:01:32 -04002941 /*
2942 * If the drive is an EIDE drive, it can tell us it needs extended
2943 * PIO/MW_DMA cycle timing.
2944 */
2945
2946 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2947 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002948 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04002949 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2950 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002951 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04002952 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2953 }
2954 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2955 }
2956
2957 /*
2958 * Convert the timing to bus clock counts.
2959 */
2960
Albert Lee75b1f2f2005-11-16 17:06:18 +08002961 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002962
2963 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002964 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2965 * S.M.A.R.T * and some other commands. We have to ensure that the
2966 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002967 */
2968
Alanfd3367af2006-12-07 12:41:18 +00002969 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002970 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2971 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2972 }
2973
2974 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002975 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002976 */
2977
2978 if (t->act8b + t->rec8b < t->cyc8b) {
2979 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2980 t->rec8b = t->cyc8b - t->act8b;
2981 }
2982
2983 if (t->active + t->recover < t->cycle) {
2984 t->active += (t->cycle - (t->active + t->recover)) / 2;
2985 t->recover = t->cycle - t->active;
2986 }
Jeff Garzika617c092007-05-21 20:14:23 -04002987
Alan Cox4f701d12007-04-23 11:55:36 +01002988 /* In a few cases quantisation may produce enough errors to
2989 leave t->cycle too low for the sum of active and recovery
2990 if so we must correct this */
2991 if (t->active + t->recover > t->cycle)
2992 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002993
2994 return 0;
2995}
2996
Tejun Heocf176e12006-04-02 17:54:46 +09002997/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09002998 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
2999 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3000 * @cycle: cycle duration in ns
3001 *
3002 * Return matching xfer mode for @cycle. The returned mode is of
3003 * the transfer type specified by @xfer_shift. If @cycle is too
3004 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3005 * than the fastest known mode, the fasted mode is returned.
3006 *
3007 * LOCKING:
3008 * None.
3009 *
3010 * RETURNS:
3011 * Matching xfer_mode, 0xff if no match found.
3012 */
3013u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3014{
3015 u8 base_mode = 0xff, last_mode = 0xff;
3016 const struct ata_xfer_ent *ent;
3017 const struct ata_timing *t;
3018
3019 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3020 if (ent->shift == xfer_shift)
3021 base_mode = ent->base;
3022
3023 for (t = ata_timing_find_mode(base_mode);
3024 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3025 unsigned short this_cycle;
3026
3027 switch (xfer_shift) {
3028 case ATA_SHIFT_PIO:
3029 case ATA_SHIFT_MWDMA:
3030 this_cycle = t->cycle;
3031 break;
3032 case ATA_SHIFT_UDMA:
3033 this_cycle = t->udma;
3034 break;
3035 default:
3036 return 0xff;
3037 }
3038
3039 if (cycle > this_cycle)
3040 break;
3041
3042 last_mode = t->mode;
3043 }
3044
3045 return last_mode;
3046}
3047
3048/**
Tejun Heocf176e12006-04-02 17:54:46 +09003049 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003050 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003051 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003052 *
3053 * Adjust xfer masks of @dev downward. Note that this function
3054 * does not apply the change. Invoking ata_set_mode() afterwards
3055 * will apply the limit.
3056 *
3057 * LOCKING:
3058 * Inherited from caller.
3059 *
3060 * RETURNS:
3061 * 0 on success, negative errno on failure
3062 */
Tejun Heo458337d2007-02-02 16:22:30 +09003063int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003064{
Tejun Heo458337d2007-02-02 16:22:30 +09003065 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003066 unsigned long orig_mask, xfer_mask;
3067 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003068 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003069
Tejun Heo458337d2007-02-02 16:22:30 +09003070 quiet = !!(sel & ATA_DNXFER_QUIET);
3071 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003072
Tejun Heo458337d2007-02-02 16:22:30 +09003073 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3074 dev->mwdma_mask,
3075 dev->udma_mask);
3076 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003077
Tejun Heo458337d2007-02-02 16:22:30 +09003078 switch (sel) {
3079 case ATA_DNXFER_PIO:
3080 highbit = fls(pio_mask) - 1;
3081 pio_mask &= ~(1 << highbit);
3082 break;
3083
3084 case ATA_DNXFER_DMA:
3085 if (udma_mask) {
3086 highbit = fls(udma_mask) - 1;
3087 udma_mask &= ~(1 << highbit);
3088 if (!udma_mask)
3089 return -ENOENT;
3090 } else if (mwdma_mask) {
3091 highbit = fls(mwdma_mask) - 1;
3092 mwdma_mask &= ~(1 << highbit);
3093 if (!mwdma_mask)
3094 return -ENOENT;
3095 }
3096 break;
3097
3098 case ATA_DNXFER_40C:
3099 udma_mask &= ATA_UDMA_MASK_40C;
3100 break;
3101
3102 case ATA_DNXFER_FORCE_PIO0:
3103 pio_mask &= 1;
3104 case ATA_DNXFER_FORCE_PIO:
3105 mwdma_mask = 0;
3106 udma_mask = 0;
3107 break;
3108
Tejun Heo458337d2007-02-02 16:22:30 +09003109 default:
3110 BUG();
3111 }
3112
3113 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3114
3115 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3116 return -ENOENT;
3117
3118 if (!quiet) {
3119 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3120 snprintf(buf, sizeof(buf), "%s:%s",
3121 ata_mode_string(xfer_mask),
3122 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3123 else
3124 snprintf(buf, sizeof(buf), "%s",
3125 ata_mode_string(xfer_mask));
3126
3127 ata_dev_printk(dev, KERN_WARNING,
3128 "limiting speed to %s\n", buf);
3129 }
Tejun Heocf176e12006-04-02 17:54:46 +09003130
3131 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3132 &dev->udma_mask);
3133
Tejun Heocf176e12006-04-02 17:54:46 +09003134 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003135}
3136
Tejun Heo3373efd2006-05-15 20:57:53 +09003137static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003139 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003140 const char *dev_err_whine = "";
3141 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003142 unsigned int err_mask;
3143 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Tejun Heoe8384602006-04-02 18:51:53 +09003145 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 if (dev->xfer_shift == ATA_SHIFT_PIO)
3147 dev->flags |= ATA_DFLAG_PIO;
3148
Tejun Heo3373efd2006-05-15 20:57:53 +09003149 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003150
Tejun Heo4055dee2008-02-07 10:34:08 +09003151 if (err_mask & ~AC_ERR_DEV)
3152 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003153
Tejun Heo4055dee2008-02-07 10:34:08 +09003154 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003155 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003156 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003157 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003158 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003159 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003160
Tejun Heo4055dee2008-02-07 10:34:08 +09003161 /* Old CFA may refuse this command, which is just fine */
3162 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
3163 ign_dev_err = 1;
3164
3165 /* Some very old devices and some bad newer ones fail any kind of
3166 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
3167 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
3168 dev->pio_mode <= XFER_PIO_2)
3169 ign_dev_err = 1;
3170
3171 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3172 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3173 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3174 dev->dma_mode == XFER_MW_DMA_0 &&
3175 (dev->id[63] >> 8) & 1)
3176 ign_dev_err = 1;
3177
3178 /* if the device is actually configured correctly, ignore dev err */
3179 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3180 ign_dev_err = 1;
3181
3182 if (err_mask & AC_ERR_DEV) {
3183 if (!ign_dev_err)
3184 goto fail;
3185 else
3186 dev_err_whine = " (device error ignored)";
3187 }
3188
Tejun Heo23e71c32006-03-06 04:31:57 +09003189 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3190 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Tejun Heo4055dee2008-02-07 10:34:08 +09003192 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3193 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3194 dev_err_whine);
3195
Tejun Heo83206a22006-03-24 15:25:31 +09003196 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003197
3198 fail:
3199 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3200 "(err_mask=0x%x)\n", err_mask);
3201 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202}
3203
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204/**
Alan04351822007-03-06 02:37:52 -08003205 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003206 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003207 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 *
Alan04351822007-03-06 02:37:52 -08003209 * Standard implementation of the function used to tune and set
3210 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3211 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003212 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003213 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003215 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003216 *
3217 * RETURNS:
3218 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 */
Alan04351822007-03-06 02:37:52 -08003220
Tejun Heo02607312007-08-06 18:36:23 +09003221int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
Tejun Heo02607312007-08-06 18:36:23 +09003223 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003224 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003225 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003226
Tejun Heoa6d5a512006-03-06 04:31:57 +09003227 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003228 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003229 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003230 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003231
Tejun Heoe1211e32006-04-01 01:38:18 +09003232 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003233 continue;
3234
Alan Coxb3a70602007-10-02 12:38:26 -04003235 mode_mask = ATA_DMA_MASK_ATA;
3236 if (dev->class == ATA_DEV_ATAPI)
3237 mode_mask = ATA_DMA_MASK_ATAPI;
3238 else if (ata_id_is_cfa(dev->id))
3239 mode_mask = ATA_DMA_MASK_CFA;
3240
Tejun Heo3373efd2006-05-15 20:57:53 +09003241 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003242 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003243
Tejun Heoacf356b2006-03-24 14:07:50 +09003244 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3245 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003246
3247 if (libata_dma_mask & mode_mask)
3248 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3249 else
3250 dma_mask = 0;
3251
Tejun Heoacf356b2006-03-24 14:07:50 +09003252 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3253 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003254
Tejun Heo4f659772006-04-01 01:38:18 +09003255 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003256 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003257 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003258 }
Tejun Heo4f659772006-04-01 01:38:18 +09003259 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003260 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003261
3262 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003263 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003264 if (!ata_dev_enabled(dev))
3265 continue;
3266
Tejun Heo70cd0712007-11-27 19:43:40 +09003267 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003268 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003269 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003270 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003271 }
3272
3273 dev->xfer_mode = dev->pio_mode;
3274 dev->xfer_shift = ATA_SHIFT_PIO;
3275 if (ap->ops->set_piomode)
3276 ap->ops->set_piomode(ap, dev);
3277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Tejun Heoa6d5a512006-03-06 04:31:57 +09003279 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003280 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003281 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003282 continue;
3283
3284 dev->xfer_mode = dev->dma_mode;
3285 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3286 if (ap->ops->set_dmamode)
3287 ap->ops->set_dmamode(ap, dev);
3288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
3290 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003291 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003292 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003293 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003294 continue;
3295
Tejun Heo3373efd2006-05-15 20:57:53 +09003296 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003297 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003298 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Tejun Heoe8e06192006-04-01 01:38:18 +09003301 /* Record simplex status. If we selected DMA then the other
3302 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003303 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003304 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003305 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003306
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003307 out:
3308 if (rc)
3309 *r_failed_dev = dev;
3310 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
3313/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003314 * ata_wait_ready - wait for link to become ready
3315 * @link: link to be waited on
3316 * @deadline: deadline jiffies for the operation
3317 * @check_ready: callback to check link readiness
3318 *
3319 * Wait for @link to become ready. @check_ready should return
3320 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3321 * link doesn't seem to be occupied, other errno for other error
3322 * conditions.
3323 *
3324 * Transient -ENODEV conditions are allowed for
3325 * ATA_TMOUT_FF_WAIT.
3326 *
3327 * LOCKING:
3328 * EH context.
3329 *
3330 * RETURNS:
3331 * 0 if @linke is ready before @deadline; otherwise, -errno.
3332 */
3333int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3334 int (*check_ready)(struct ata_link *link))
3335{
3336 unsigned long start = jiffies;
3337 unsigned long nodev_deadline = start + ATA_TMOUT_FF_WAIT;
3338 int warned = 0;
3339
3340 if (time_after(nodev_deadline, deadline))
3341 nodev_deadline = deadline;
3342
3343 while (1) {
3344 unsigned long now = jiffies;
3345 int ready, tmp;
3346
3347 ready = tmp = check_ready(link);
3348 if (ready > 0)
3349 return 0;
3350
3351 /* -ENODEV could be transient. Ignore -ENODEV if link
3352 * is online. Also, some SATA devices take a long
3353 * time to clear 0xff after reset. For example,
3354 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3355 * GoVault needs even more than that. Wait for
3356 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3357 *
3358 * Note that some PATA controllers (pata_ali) explode
3359 * if status register is read more than once when
3360 * there's no device attached.
3361 */
3362 if (ready == -ENODEV) {
3363 if (ata_link_online(link))
3364 ready = 0;
3365 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3366 !ata_link_offline(link) &&
3367 time_before(now, nodev_deadline))
3368 ready = 0;
3369 }
3370
3371 if (ready)
3372 return ready;
3373 if (time_after(now, deadline))
3374 return -EBUSY;
3375
3376 if (!warned && time_after(now, start + 5 * HZ) &&
3377 (deadline - now > 3 * HZ)) {
3378 ata_link_printk(link, KERN_WARNING,
3379 "link is slow to respond, please be patient "
3380 "(ready=%d)\n", tmp);
3381 warned = 1;
3382 }
3383
3384 msleep(50);
3385 }
3386}
3387
3388/**
3389 * ata_wait_after_reset - wait for link to become ready after reset
3390 * @link: link to be waited on
3391 * @deadline: deadline jiffies for the operation
3392 * @check_ready: callback to check link readiness
3393 *
3394 * Wait for @link to become ready after reset.
3395 *
3396 * LOCKING:
3397 * EH context.
3398 *
3399 * RETURNS:
3400 * 0 if @linke is ready before @deadline; otherwise, -errno.
3401 */
3402extern int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
3403 int (*check_ready)(struct ata_link *link))
3404{
3405 msleep(ATA_WAIT_AFTER_RESET_MSECS);
3406
3407 return ata_wait_ready(link, deadline, check_ready);
3408}
3409
3410/**
Tejun Heo936fd732007-08-06 18:36:23 +09003411 * sata_link_debounce - debounce SATA phy status
3412 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003413 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003414 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003415 *
Tejun Heo936fd732007-08-06 18:36:23 +09003416* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003417 * holding the same value where DET is not 1 for @duration polled
3418 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003419 * beginning of the stable state. Because DET gets stuck at 1 on
3420 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003421 * until timeout then returns 0 if DET is stable at 1.
3422 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003423 * @timeout is further limited by @deadline. The sooner of the
3424 * two is used.
3425 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003426 * LOCKING:
3427 * Kernel thread context (may sleep)
3428 *
3429 * RETURNS:
3430 * 0 on success, -errno on failure.
3431 */
Tejun Heo936fd732007-08-06 18:36:23 +09003432int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3433 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003434{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003435 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003436 unsigned long duration = msecs_to_jiffies(params[1]);
3437 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003438 u32 last, cur;
3439 int rc;
3440
Tejun Heod4b2bab2007-02-02 16:50:52 +09003441 t = jiffies + msecs_to_jiffies(params[2]);
3442 if (time_before(t, deadline))
3443 deadline = t;
3444
Tejun Heo936fd732007-08-06 18:36:23 +09003445 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003446 return rc;
3447 cur &= 0xf;
3448
3449 last = cur;
3450 last_jiffies = jiffies;
3451
3452 while (1) {
3453 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003454 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003455 return rc;
3456 cur &= 0xf;
3457
3458 /* DET stable? */
3459 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003460 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003461 continue;
3462 if (time_after(jiffies, last_jiffies + duration))
3463 return 0;
3464 continue;
3465 }
3466
3467 /* unstable, start over */
3468 last = cur;
3469 last_jiffies = jiffies;
3470
Tejun Heof1545152007-07-16 14:29:40 +09003471 /* Check deadline. If debouncing failed, return
3472 * -EPIPE to tell upper layer to lower link speed.
3473 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003474 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003475 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003476 }
3477}
3478
3479/**
Tejun Heo936fd732007-08-06 18:36:23 +09003480 * sata_link_resume - resume SATA link
3481 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003482 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003483 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003484 *
Tejun Heo936fd732007-08-06 18:36:23 +09003485 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003486 *
3487 * LOCKING:
3488 * Kernel thread context (may sleep)
3489 *
3490 * RETURNS:
3491 * 0 on success, -errno on failure.
3492 */
Tejun Heo936fd732007-08-06 18:36:23 +09003493int sata_link_resume(struct ata_link *link, const unsigned long *params,
3494 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003495{
3496 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003497 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003498
Tejun Heo936fd732007-08-06 18:36:23 +09003499 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003500 return rc;
3501
Tejun Heo852ee162006-04-01 01:38:18 +09003502 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003503
Tejun Heo936fd732007-08-06 18:36:23 +09003504 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003505 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003506
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003507 /* Some PHYs react badly if SStatus is pounded immediately
3508 * after resuming. Delay 200ms before debouncing.
3509 */
3510 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003511
Tejun Heo936fd732007-08-06 18:36:23 +09003512 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003513}
3514
Tejun Heof5914a42006-05-31 18:27:48 +09003515/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003516 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003517 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003518 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003519 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003520 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003521 * prereset makes libata abort whole reset sequence and give up
3522 * that port, so prereset should be best-effort. It does its
3523 * best to prepare for reset sequence but if things go wrong, it
3524 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003525 *
3526 * LOCKING:
3527 * Kernel thread context (may sleep)
3528 *
3529 * RETURNS:
3530 * 0 on success, -errno otherwise.
3531 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003532int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003533{
Tejun Heocc0680a2007-08-06 18:36:23 +09003534 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003535 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003536 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003537 int rc;
3538
Tejun Heof5914a42006-05-31 18:27:48 +09003539 /* if we're about to do hardreset, nothing more to do */
3540 if (ehc->i.action & ATA_EH_HARDRESET)
3541 return 0;
3542
Tejun Heo936fd732007-08-06 18:36:23 +09003543 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003544 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003545 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003546 /* whine about phy resume failure but proceed */
3547 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003548 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003549 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003550 }
3551
Tejun Heof5914a42006-05-31 18:27:48 +09003552 return 0;
3553}
3554
Tejun Heoc2bd5802006-01-24 17:05:22 +09003555/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003556 * sata_link_hardreset - reset link via SATA phy reset
3557 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003558 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003559 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003560 * @online: optional out parameter indicating link onlineness
3561 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003562 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003563 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003564 * After hardreset, link readiness is waited upon using
3565 * ata_wait_ready() if @check_ready is specified. LLDs are
3566 * allowed to not specify @check_ready and wait itself after this
3567 * function returns. Device classification is LLD's
3568 * responsibility.
3569 *
3570 * *@online is set to one iff reset succeeded and @link is online
3571 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003572 *
3573 * LOCKING:
3574 * Kernel thread context (may sleep)
3575 *
3576 * RETURNS:
3577 * 0 on success, -errno otherwise.
3578 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003579int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003580 unsigned long deadline,
3581 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003582{
Tejun Heo852ee162006-04-01 01:38:18 +09003583 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003584 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003585
Tejun Heoc2bd5802006-01-24 17:05:22 +09003586 DPRINTK("ENTER\n");
3587
Tejun Heo9dadd452008-04-07 22:47:19 +09003588 if (online)
3589 *online = false;
3590
Tejun Heo936fd732007-08-06 18:36:23 +09003591 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003592 /* SATA spec says nothing about how to reconfigure
3593 * spd. To be on the safe side, turn off phy during
3594 * reconfiguration. This works for at least ICH7 AHCI
3595 * and Sil3124.
3596 */
Tejun Heo936fd732007-08-06 18:36:23 +09003597 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003598 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003599
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003600 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003601
Tejun Heo936fd732007-08-06 18:36:23 +09003602 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003603 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003604
Tejun Heo936fd732007-08-06 18:36:23 +09003605 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003606 }
3607
3608 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003609 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003610 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003611
Tejun Heo852ee162006-04-01 01:38:18 +09003612 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003613
Tejun Heo936fd732007-08-06 18:36:23 +09003614 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003615 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003616
Tejun Heo1c3fae42006-04-02 20:53:28 +09003617 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003618 * 10.4.2 says at least 1 ms.
3619 */
3620 msleep(1);
3621
Tejun Heo936fd732007-08-06 18:36:23 +09003622 /* bring link back */
3623 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003624 if (rc)
3625 goto out;
3626 /* if link is offline nothing more to do */
3627 if (ata_link_offline(link))
3628 goto out;
3629
3630 /* Link is online. From this point, -ENODEV too is an error. */
3631 if (online)
3632 *online = true;
3633
3634 if ((link->ap->flags & ATA_FLAG_PMP) && ata_is_host_link(link)) {
3635 /* If PMP is supported, we have to do follow-up SRST.
3636 * Some PMPs don't send D2H Reg FIS after hardreset if
3637 * the first port is empty. Wait only for
3638 * ATA_TMOUT_PMP_SRST_WAIT.
3639 */
3640 if (check_ready) {
3641 unsigned long pmp_deadline;
3642
3643 pmp_deadline = jiffies + ATA_TMOUT_PMP_SRST_WAIT;
3644 if (time_after(pmp_deadline, deadline))
3645 pmp_deadline = deadline;
3646 ata_wait_ready(link, pmp_deadline, check_ready);
3647 }
3648 rc = -EAGAIN;
3649 goto out;
3650 }
3651
3652 rc = 0;
3653 if (check_ready)
3654 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003655 out:
Tejun Heo9dadd452008-04-07 22:47:19 +09003656 if (rc && rc != -EAGAIN)
3657 ata_link_printk(link, KERN_ERR,
3658 "COMRESET failed (errno=%d)\n", rc);
Tejun Heob6103f62006-11-01 17:59:53 +09003659 DPRINTK("EXIT, rc=%d\n", rc);
3660 return rc;
3661}
3662
3663/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003664 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003665 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003666 * @classes: classes of attached devices
3667 *
3668 * This function is invoked after a successful reset. Note that
3669 * the device might have been reset more than once using
3670 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003671 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003672 * LOCKING:
3673 * Kernel thread context (may sleep)
3674 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003675void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003676{
Tejun Heodc2b3512006-05-15 20:58:00 +09003677 u32 serror;
3678
Tejun Heoc2bd5802006-01-24 17:05:22 +09003679 DPRINTK("ENTER\n");
3680
Tejun Heoc2bd5802006-01-24 17:05:22 +09003681 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003682 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003683
Tejun Heodc2b3512006-05-15 20:58:00 +09003684 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003685 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3686 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heof7fe7ad42007-12-08 08:47:01 +09003687 link->eh_info.serror = 0;
Tejun Heodc2b3512006-05-15 20:58:00 +09003688
Tejun Heoc2bd5802006-01-24 17:05:22 +09003689 DPRINTK("EXIT\n");
3690}
3691
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003692/**
Tejun Heo623a3122006-03-05 17:55:58 +09003693 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003694 * @dev: device to compare against
3695 * @new_class: class of the new device
3696 * @new_id: IDENTIFY page of the new device
3697 *
3698 * Compare @new_class and @new_id against @dev and determine
3699 * whether @dev is the device indicated by @new_class and
3700 * @new_id.
3701 *
3702 * LOCKING:
3703 * None.
3704 *
3705 * RETURNS:
3706 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3707 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003708static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3709 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003710{
3711 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003712 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3713 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003714
3715 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003716 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3717 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003718 return 0;
3719 }
3720
Tejun Heoa0cf7332007-01-02 20:18:49 +09003721 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3722 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3723 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3724 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003725
3726 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003727 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3728 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003729 return 0;
3730 }
3731
3732 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003733 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3734 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003735 return 0;
3736 }
3737
Tejun Heo623a3122006-03-05 17:55:58 +09003738 return 1;
3739}
3740
3741/**
Tejun Heofe309112007-05-15 03:28:15 +09003742 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003743 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003744 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003745 *
3746 * Re-read IDENTIFY page and make sure @dev is still attached to
3747 * the port.
3748 *
3749 * LOCKING:
3750 * Kernel thread context (may sleep)
3751 *
3752 * RETURNS:
3753 * 0 on success, negative errno otherwise
3754 */
Tejun Heofe309112007-05-15 03:28:15 +09003755int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003756{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003757 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003758 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003759 int rc;
3760
Tejun Heofe635c72006-05-15 20:57:35 +09003761 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003762 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003763 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003764 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003765
3766 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003767 if (!ata_dev_same_device(dev, class, id))
3768 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003769
Tejun Heofe635c72006-05-15 20:57:35 +09003770 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003771 return 0;
3772}
3773
3774/**
3775 * ata_dev_revalidate - Revalidate ATA device
3776 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003777 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003778 * @readid_flags: read ID flags
3779 *
3780 * Re-read IDENTIFY page, make sure @dev is still attached to the
3781 * port and reconfigure it according to the new IDENTIFY page.
3782 *
3783 * LOCKING:
3784 * Kernel thread context (may sleep)
3785 *
3786 * RETURNS:
3787 * 0 on success, negative errno otherwise
3788 */
Tejun Heo422c9da2007-09-23 13:14:12 +09003789int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3790 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09003791{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003792 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003793 int rc;
3794
3795 if (!ata_dev_enabled(dev))
3796 return -ENODEV;
3797
Tejun Heo422c9da2007-09-23 13:14:12 +09003798 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3799 if (ata_class_enabled(new_class) &&
3800 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3801 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3802 dev->class, new_class);
3803 rc = -ENODEV;
3804 goto fail;
3805 }
3806
Tejun Heofe309112007-05-15 03:28:15 +09003807 /* re-read ID */
3808 rc = ata_dev_reread_id(dev, readid_flags);
3809 if (rc)
3810 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003811
3812 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003813 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003814 if (rc)
3815 goto fail;
3816
3817 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003818 if (dev->class == ATA_DEV_ATA && n_sectors &&
3819 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003820 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3821 "%llu != %llu\n",
3822 (unsigned long long)n_sectors,
3823 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003824
3825 /* restore original n_sectors */
3826 dev->n_sectors = n_sectors;
3827
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003828 rc = -ENODEV;
3829 goto fail;
3830 }
3831
3832 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003833
3834 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003835 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003836 return rc;
3837}
3838
Alan Cox6919a0a2006-10-27 19:08:46 -07003839struct ata_blacklist_entry {
3840 const char *model_num;
3841 const char *model_rev;
3842 unsigned long horkage;
3843};
3844
3845static const struct ata_blacklist_entry ata_device_blacklist [] = {
3846 /* Devices with DMA related problems under Linux */
3847 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3848 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3849 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3850 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3851 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3852 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3853 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3854 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3855 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3856 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3857 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3858 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3859 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3860 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3861 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3862 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3863 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3864 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3865 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3866 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3867 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3868 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3869 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3870 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3871 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3872 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003873 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3874 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003875 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003876 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09003877 /* Odd clown on sil3726/4726 PMPs */
3878 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3879 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07003880
Albert Lee18d6e9d2007-04-02 11:34:15 +08003881 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003882 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003883
Alan Cox6919a0a2006-10-27 19:08:46 -07003884 /* Devices we expect to fail diagnostics */
3885
3886 /* Devices where NCQ should be avoided */
3887 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003888 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09003889 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09003890 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3891 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003892 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003893 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003894 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09003895 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09003896 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003897
Robert Hancock36e337d2007-04-02 22:05:29 -06003898 /* Blacklist entries taken from Silicon Image 3124/3132
3899 Windows driver .inf file - also several Linux problem reports */
3900 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3901 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3902 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003903
Tejun Heo16c55b02007-08-29 11:58:33 +09003904 /* devices which puke on READ_NATIVE_MAX */
3905 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3906 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3907 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3908 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003909
Alan Cox93328e12007-09-29 04:06:48 -04003910 /* Devices which report 1 sector over size HPA */
3911 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3912 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01003913 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04003914
Alan Cox6bbfd532007-11-05 22:58:58 +00003915 /* Devices which get the IVB wrong */
3916 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
3917 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01003918 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
3919 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
3920 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00003921
Alan Cox6919a0a2006-10-27 19:08:46 -07003922 /* End Marker */
3923 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003925
Adrian Bunk741b7762007-10-24 18:23:06 +02003926static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003927{
3928 const char *p;
3929 int len;
3930
3931 /*
3932 * check for trailing wildcard: *\0
3933 */
3934 p = strchr(patt, wildchar);
3935 if (p && ((*(p + 1)) == 0))
3936 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003937 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003938 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003939 if (!len) {
3940 if (!*patt)
3941 return 0;
3942 return -1;
3943 }
3944 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003945
3946 return strncmp(patt, name, len);
3947}
3948
Tejun Heo75683fe2007-07-05 13:31:27 +09003949static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003951 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3952 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003953 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003954
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003955 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3956 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Alan Cox6919a0a2006-10-27 19:08:46 -07003958 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003959 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003960 if (ad->model_rev == NULL)
3961 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003962 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003963 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003964 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003965 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 return 0;
3968}
3969
Alan Cox6919a0a2006-10-27 19:08:46 -07003970static int ata_dma_blacklisted(const struct ata_device *dev)
3971{
3972 /* We don't support polling DMA.
3973 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3974 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3975 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003976 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003977 (dev->flags & ATA_DFLAG_CDB_INTR))
3978 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003979 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003980}
3981
Tejun Heoa6d5a512006-03-06 04:31:57 +09003982/**
Alan Cox6bbfd532007-11-05 22:58:58 +00003983 * ata_is_40wire - check drive side detection
3984 * @dev: device
3985 *
3986 * Perform drive side detection decoding, allowing for device vendors
3987 * who can't follow the documentation.
3988 */
3989
3990static int ata_is_40wire(struct ata_device *dev)
3991{
3992 if (dev->horkage & ATA_HORKAGE_IVB)
3993 return ata_drive_40wire_relaxed(dev->id);
3994 return ata_drive_40wire(dev->id);
3995}
3996
3997/**
Alan Cox15a55512008-03-28 14:33:46 -07003998 * cable_is_40wire - 40/80/SATA decider
3999 * @ap: port to consider
4000 *
4001 * This function encapsulates the policy for speed management
4002 * in one place. At the moment we don't cache the result but
4003 * there is a good case for setting ap->cbl to the result when
4004 * we are called with unknown cables (and figuring out if it
4005 * impacts hotplug at all).
4006 *
4007 * Return 1 if the cable appears to be 40 wire.
4008 */
4009
4010static int cable_is_40wire(struct ata_port *ap)
4011{
4012 struct ata_link *link;
4013 struct ata_device *dev;
4014
4015 /* If the controller thinks we are 40 wire, we are */
4016 if (ap->cbl == ATA_CBL_PATA40)
4017 return 1;
4018 /* If the controller thinks we are 80 wire, we are */
4019 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4020 return 0;
4021 /* If the controller doesn't know we scan
4022
4023 - Note: We look for all 40 wire detects at this point.
4024 Any 80 wire detect is taken to be 80 wire cable
4025 because
4026 - In many setups only the one drive (slave if present)
4027 will give a valid detect
4028 - If you have a non detect capable drive you don't
4029 want it to colour the choice
4030 */
4031 ata_port_for_each_link(link, ap) {
4032 ata_link_for_each_dev(dev, link) {
4033 if (!ata_is_40wire(dev))
4034 return 0;
4035 }
4036 }
4037 return 1;
4038}
4039
4040/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004041 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004042 * @dev: Device to compute xfermask for
4043 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004044 * Compute supported xfermask of @dev and store it in
4045 * dev->*_mask. This function is responsible for applying all
4046 * known limits including host controller limits, device
4047 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004048 *
4049 * LOCKING:
4050 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004051 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004052static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004054 struct ata_link *link = dev->link;
4055 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004056 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004057 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Tejun Heo37deecb2006-08-10 16:59:07 +09004059 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004060 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4061 ap->mwdma_mask, ap->udma_mask);
4062
Robert Hancock8343f882007-03-06 02:37:51 -08004063 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004064 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4065 dev->mwdma_mask, dev->udma_mask);
4066 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004067
Alan Coxb352e572006-08-10 18:52:12 +01004068 /*
4069 * CFA Advanced TrueIDE timings are not allowed on a shared
4070 * cable
4071 */
4072 if (ata_dev_pair(dev)) {
4073 /* No PIO5 or PIO6 */
4074 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4075 /* No MWDMA3 or MWDMA 4 */
4076 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4077 }
4078
Tejun Heo37deecb2006-08-10 16:59:07 +09004079 if (ata_dma_blacklisted(dev)) {
4080 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004081 ata_dev_printk(dev, KERN_WARNING,
4082 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004083 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004084
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004085 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004086 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004087 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4088 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4089 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004090 }
Tejun Heo565083e2006-04-02 17:54:47 +09004091
Jeff Garzike4246752007-03-09 09:56:46 -05004092 if (ap->flags & ATA_FLAG_NO_IORDY)
4093 xfer_mask &= ata_pio_mask_no_iordy(dev);
4094
Alan Cox5444a6f2006-03-27 18:58:20 +01004095 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004096 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004097
Robert Hancock8343f882007-03-06 02:37:51 -08004098 /* Apply cable rule here. Don't apply it early because when
4099 * we handle hot plug the cable type can itself change.
4100 * Check this last so that we know if the transfer rate was
4101 * solely limited by the cable.
4102 * Unknown or 80 wire cables reported host side are checked
4103 * drive side as well. Cases where we know a 40wire cable
4104 * is used safely for 80 are not checked here.
4105 */
4106 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4107 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004108 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004109 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004110 "limited to UDMA/33 due to 40-wire cable\n");
4111 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4112 }
4113
Tejun Heo565083e2006-04-02 17:54:47 +09004114 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4115 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116}
4117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 * @dev: Device to which command will be sent
4121 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004122 * Issue SET FEATURES - XFER MODE command to device @dev
4123 * on port @ap.
4124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004126 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004127 *
4128 * RETURNS:
4129 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 */
4131
Tejun Heo3373efd2006-05-15 20:57:53 +09004132static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133{
Tejun Heoa0123702005-12-13 14:49:31 +09004134 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004135 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
4137 /* set up set-features taskfile */
4138 DPRINTK("set features - xfer mode\n");
4139
Tejun Heo464cf172007-05-27 15:10:40 +02004140 /* Some controllers and ATAPI devices show flaky interrupt
4141 * behavior after setting xfer mode. Use polling instead.
4142 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004143 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004144 tf.command = ATA_CMD_SET_FEATURES;
4145 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004146 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004147 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004148 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004149 if (ata_pio_need_iordy(dev))
4150 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004151 /* If the device has IORDY and the controller does not - turn it off */
4152 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004153 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004154 else /* In the ancient relic department - skip all of this */
4155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Tejun Heo2b789102007-10-09 15:05:44 +09004157 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Tejun Heo83206a22006-03-24 15:25:31 +09004159 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4160 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004163 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004164 * @dev: Device to which command will be sent
4165 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004166 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004167 *
4168 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004169 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004170 *
4171 * LOCKING:
4172 * PCI/etc. bus probe sem.
4173 *
4174 * RETURNS:
4175 * 0 on success, AC_ERR_* mask otherwise.
4176 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004177static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4178 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004179{
4180 struct ata_taskfile tf;
4181 unsigned int err_mask;
4182
4183 /* set up set-features taskfile */
4184 DPRINTK("set features - SATA features\n");
4185
4186 ata_tf_init(dev, &tf);
4187 tf.command = ATA_CMD_SET_FEATURES;
4188 tf.feature = enable;
4189 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4190 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004191 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004192
Tejun Heo2b789102007-10-09 15:05:44 +09004193 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004194
4195 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4196 return err_mask;
4197}
4198
4199/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004200 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004201 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004202 * @heads: Number of heads (taskfile parameter)
4203 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004204 *
4205 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004206 * Kernel thread context (may sleep)
4207 *
4208 * RETURNS:
4209 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004210 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004211static unsigned int ata_dev_init_params(struct ata_device *dev,
4212 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004213{
Tejun Heoa0123702005-12-13 14:49:31 +09004214 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004215 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004216
4217 /* Number of sectors per track 1-255. Number of heads 1-16 */
4218 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004219 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004220
4221 /* set up init dev params taskfile */
4222 DPRINTK("init dev params \n");
4223
Tejun Heo3373efd2006-05-15 20:57:53 +09004224 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004225 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4226 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4227 tf.protocol = ATA_PROT_NODATA;
4228 tf.nsect = sectors;
4229 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004230
Tejun Heo2b789102007-10-09 15:05:44 +09004231 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004232 /* A clean abort indicates an original or just out of spec drive
4233 and we should continue as we issue the setup based on the
4234 drive reported working geometry */
4235 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4236 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004237
Tejun Heo6aff8f12006-02-15 18:24:09 +09004238 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4239 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004240}
4241
4242/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004243 * ata_sg_clean - Unmap DMA memory associated with command
4244 * @qc: Command containing DMA memory to be released
4245 *
4246 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 *
4248 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004249 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004251void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
4253 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004254 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 int dir = qc->dma_dir;
4256
Tejun Heoa46314742006-02-11 19:11:13 +09004257 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
James Bottomleydde20202008-02-19 11:36:56 +01004259 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
James Bottomleydde20202008-02-19 11:36:56 +01004261 if (qc->n_elem)
4262 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
4264 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004265 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266}
4267
4268/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4270 * @qc: Metadata associated with taskfile to check
4271 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004272 * Allow low-level driver to filter ATA PACKET commands, returning
4273 * a status indicating whether or not it is OK to use DMA for the
4274 * supplied PACKET command.
4275 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004277 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004278 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 * RETURNS: 0 when ATAPI DMA can be used
4280 * nonzero otherwise
4281 */
4282int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4283{
4284 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
Tejun Heob9a41972007-06-27 02:48:43 +09004286 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4287 * few ATAPI devices choke on such DMA requests.
4288 */
4289 if (unlikely(qc->nbytes & 15))
4290 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004291
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004293 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Tejun Heob9a41972007-06-27 02:48:43 +09004295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296}
Tejun Heob9a41972007-06-27 02:48:43 +09004297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004299 * ata_std_qc_defer - Check whether a qc needs to be deferred
4300 * @qc: ATA command in question
4301 *
4302 * Non-NCQ commands cannot run with any other command, NCQ or
4303 * not. As upper layer only knows the queue depth, we are
4304 * responsible for maintaining exclusion. This function checks
4305 * whether a new command @qc can be issued.
4306 *
4307 * LOCKING:
4308 * spin_lock_irqsave(host lock)
4309 *
4310 * RETURNS:
4311 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4312 */
4313int ata_std_qc_defer(struct ata_queued_cmd *qc)
4314{
4315 struct ata_link *link = qc->dev->link;
4316
4317 if (qc->tf.protocol == ATA_PROT_NCQ) {
4318 if (!ata_tag_valid(link->active_tag))
4319 return 0;
4320 } else {
4321 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4322 return 0;
4323 }
4324
4325 return ATA_DEFER_LINK;
4326}
4327
Brian Kinge46834c2006-03-17 17:04:03 -06004328void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4329
Jeff Garzik0cba6322005-05-30 19:49:12 -04004330/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004331 * ata_sg_init - Associate command with scatter-gather table.
4332 * @qc: Command to be associated
4333 * @sg: Scatter-gather table.
4334 * @n_elem: Number of elements in s/g table.
4335 *
4336 * Initialize the data-related elements of queued_cmd @qc
4337 * to point to a scatter-gather table @sg, containing @n_elem
4338 * elements.
4339 *
4340 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004341 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4344 unsigned int n_elem)
4345{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004346 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004348 qc->cursg = qc->sg;
4349}
4350
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004352 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4353 * @qc: Command with scatter-gather table to be mapped.
4354 *
4355 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 *
4357 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004358 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 *
4360 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004361 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 *
4363 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364static int ata_sg_setup(struct ata_queued_cmd *qc)
4365{
4366 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004367 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Tejun Heo44877b42007-02-21 01:06:51 +09004369 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
James Bottomleydde20202008-02-19 11:36:56 +01004371 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4372 if (n_elem < 1)
4373 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004374
James Bottomleydde20202008-02-19 11:36:56 +01004375 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004376
James Bottomleydde20202008-02-19 11:36:56 +01004377 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004378 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380 return 0;
4381}
4382
4383/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004384 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004385 * @buf: Buffer to swap
4386 * @buf_words: Number of 16-bit words in buffer.
4387 *
4388 * Swap halves of 16-bit words if needed to convert from
4389 * little-endian byte order to native cpu byte order, or
4390 * vice-versa.
4391 *
4392 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004393 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395void swap_buf_le16(u16 *buf, unsigned int buf_words)
4396{
4397#ifdef __BIG_ENDIAN
4398 unsigned int i;
4399
4400 for (i = 0; i < buf_words; i++)
4401 buf[i] = le16_to_cpu(buf[i]);
4402#endif /* __BIG_ENDIAN */
4403}
4404
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004405/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 * ata_qc_new - Request an available ATA command, for queueing
4407 * @ap: Port associated with device @dev
4408 * @dev: Device from whom we request an available command structure
4409 *
4410 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004411 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 */
4413
4414static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4415{
4416 struct ata_queued_cmd *qc = NULL;
4417 unsigned int i;
4418
Tejun Heoe3180492006-05-15 20:58:09 +09004419 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004420 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004421 return NULL;
4422
Tejun Heo2ab7db12006-05-15 20:58:02 +09004423 /* the last tag is reserved for internal command. */
4424 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004425 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004426 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 break;
4428 }
4429
4430 if (qc)
4431 qc->tag = i;
4432
4433 return qc;
4434}
4435
4436/**
4437 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 * @dev: Device from whom we request an available command structure
4439 *
4440 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004441 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 */
4443
Tejun Heo3373efd2006-05-15 20:57:53 +09004444struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004446 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 struct ata_queued_cmd *qc;
4448
4449 qc = ata_qc_new(ap);
4450 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 qc->scsicmd = NULL;
4452 qc->ap = ap;
4453 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004455 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 }
4457
4458 return qc;
4459}
4460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461/**
4462 * ata_qc_free - free unused ata_queued_cmd
4463 * @qc: Command to complete
4464 *
4465 * Designed to free unused ata_queued_cmd object
4466 * in case something prevents using it.
4467 *
4468 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004469 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 */
4471void ata_qc_free(struct ata_queued_cmd *qc)
4472{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004473 struct ata_port *ap = qc->ap;
4474 unsigned int tag;
4475
Tejun Heoa46314742006-02-11 19:11:13 +09004476 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Tejun Heo4ba946e2006-01-23 13:09:36 +09004478 qc->flags = 0;
4479 tag = qc->tag;
4480 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004481 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004482 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484}
4485
Tejun Heo76014422006-02-11 15:13:49 +09004486void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004488 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004489 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004490
Tejun Heoa46314742006-02-11 19:11:13 +09004491 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4492 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493
4494 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4495 ata_sg_clean(qc);
4496
Tejun Heo7401abf2006-05-15 20:57:32 +09004497 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004498 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004499 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004500 if (!link->sactive)
4501 ap->nr_active_links--;
4502 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004503 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004504 ap->nr_active_links--;
4505 }
4506
4507 /* clear exclusive status */
4508 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4509 ap->excl_link == link))
4510 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004511
Albert Lee3f3791d2005-08-16 14:25:38 +08004512 /* atapi: mark qc as inactive to prevent the interrupt handler
4513 * from completing the command twice later, before the error handler
4514 * is called. (when rc != 0 and atapi request sense is needed)
4515 */
4516 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004517 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004520 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521}
4522
Tejun Heo39599a52006-11-14 22:37:35 +09004523static void fill_result_tf(struct ata_queued_cmd *qc)
4524{
4525 struct ata_port *ap = qc->ap;
4526
Tejun Heo39599a52006-11-14 22:37:35 +09004527 qc->result_tf.flags = qc->tf.flags;
Tejun Heo5682ed32008-04-07 22:47:16 +09004528 ap->ops->sff_tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09004529}
4530
Tejun Heo00115e02007-11-27 19:28:58 +09004531static void ata_verify_xfer(struct ata_queued_cmd *qc)
4532{
4533 struct ata_device *dev = qc->dev;
4534
4535 if (ata_tag_internal(qc->tag))
4536 return;
4537
4538 if (ata_is_nodata(qc->tf.protocol))
4539 return;
4540
4541 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4542 return;
4543
4544 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4545}
4546
Tejun Heof686bcb2006-05-15 20:58:05 +09004547/**
4548 * ata_qc_complete - Complete an active ATA command
4549 * @qc: Command to complete
4550 * @err_mask: ATA Status register contents
4551 *
4552 * Indicate to the mid and upper layers that an ATA
4553 * command has completed, with either an ok or not-ok status.
4554 *
4555 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004556 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004557 */
4558void ata_qc_complete(struct ata_queued_cmd *qc)
4559{
4560 struct ata_port *ap = qc->ap;
4561
4562 /* XXX: New EH and old EH use different mechanisms to
4563 * synchronize EH with regular execution path.
4564 *
4565 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4566 * Normal execution path is responsible for not accessing a
4567 * failed qc. libata core enforces the rule by returning NULL
4568 * from ata_qc_from_tag() for failed qcs.
4569 *
4570 * Old EH depends on ata_qc_complete() nullifying completion
4571 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4572 * not synchronize with interrupt handler. Only PIO task is
4573 * taken care of.
4574 */
4575 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004576 struct ata_device *dev = qc->dev;
4577 struct ata_eh_info *ehi = &dev->link->eh_info;
4578
Tejun Heob51e9e52006-06-29 01:29:30 +09004579 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004580
4581 if (unlikely(qc->err_mask))
4582 qc->flags |= ATA_QCFLAG_FAILED;
4583
4584 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4585 if (!ata_tag_internal(qc->tag)) {
4586 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004587 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004588 ata_qc_schedule_eh(qc);
4589 return;
4590 }
4591 }
4592
4593 /* read result TF if requested */
4594 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004595 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004596
Tejun Heo4dbfa392007-10-25 18:22:44 +09004597 /* Some commands need post-processing after successful
4598 * completion.
4599 */
4600 switch (qc->tf.command) {
4601 case ATA_CMD_SET_FEATURES:
4602 if (qc->tf.feature != SETFEATURES_WC_ON &&
4603 qc->tf.feature != SETFEATURES_WC_OFF)
4604 break;
4605 /* fall through */
4606 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4607 case ATA_CMD_SET_MULTI: /* multi_count changed */
4608 /* revalidate device */
4609 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4610 ata_port_schedule_eh(ap);
4611 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004612
4613 case ATA_CMD_SLEEP:
4614 dev->flags |= ATA_DFLAG_SLEEPING;
4615 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004616 }
4617
Tejun Heo00115e02007-11-27 19:28:58 +09004618 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4619 ata_verify_xfer(qc);
4620
Tejun Heof686bcb2006-05-15 20:58:05 +09004621 __ata_qc_complete(qc);
4622 } else {
4623 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4624 return;
4625
4626 /* read result TF if failed or requested */
4627 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004628 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004629
4630 __ata_qc_complete(qc);
4631 }
4632}
4633
Tejun Heodedaf2b2006-05-15 21:03:43 +09004634/**
4635 * ata_qc_complete_multiple - Complete multiple qcs successfully
4636 * @ap: port in question
4637 * @qc_active: new qc_active mask
4638 * @finish_qc: LLDD callback invoked before completing a qc
4639 *
4640 * Complete in-flight commands. This functions is meant to be
4641 * called from low-level driver's interrupt routine to complete
4642 * requests normally. ap->qc_active and @qc_active is compared
4643 * and commands are completed accordingly.
4644 *
4645 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004646 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004647 *
4648 * RETURNS:
4649 * Number of completed commands on success, -errno otherwise.
4650 */
4651int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4652 void (*finish_qc)(struct ata_queued_cmd *))
4653{
4654 int nr_done = 0;
4655 u32 done_mask;
4656 int i;
4657
4658 done_mask = ap->qc_active ^ qc_active;
4659
4660 if (unlikely(done_mask & qc_active)) {
4661 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4662 "(%08x->%08x)\n", ap->qc_active, qc_active);
4663 return -EINVAL;
4664 }
4665
4666 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4667 struct ata_queued_cmd *qc;
4668
4669 if (!(done_mask & (1 << i)))
4670 continue;
4671
4672 if ((qc = ata_qc_from_tag(ap, i))) {
4673 if (finish_qc)
4674 finish_qc(qc);
4675 ata_qc_complete(qc);
4676 nr_done++;
4677 }
4678 }
4679
4680 return nr_done;
4681}
4682
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683/**
4684 * ata_qc_issue - issue taskfile to device
4685 * @qc: command to issue to device
4686 *
4687 * Prepare an ATA command to submission to device.
4688 * This includes mapping the data into a DMA-able
4689 * area, filling in the S/G table, and finally
4690 * writing the taskfile to hardware, starting the command.
4691 *
4692 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004693 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004695void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696{
4697 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004698 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004699 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
Tejun Heodedaf2b2006-05-15 21:03:43 +09004701 /* Make sure only one non-NCQ command is outstanding. The
4702 * check is skipped for old EH because it reuses active qc to
4703 * request ATAPI sense.
4704 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004705 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09004706
Tejun Heo1973a022007-12-05 10:36:13 +09004707 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004708 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09004709
4710 if (!link->sactive)
4711 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004712 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004713 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004714 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09004715
4716 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004717 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004718 }
4719
Tejun Heoe4a70e72006-03-31 20:36:47 +09004720 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004721 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004722
Tejun Heof92a2632007-12-05 16:43:10 +09004723 /* We guarantee to LLDs that they will have at least one
4724 * non-zero sg if the command is a data command.
4725 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004726 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09004727
Tejun Heo405e66b2007-11-27 19:28:53 +09004728 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09004729 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09004730 if (ata_sg_setup(qc))
4731 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
Tejun Heocf480622008-01-24 00:05:14 +09004733 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09004734 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09004735 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004736 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
4737 ata_link_abort(link);
4738 return;
4739 }
4740
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 ap->ops->qc_prep(qc);
4742
Tejun Heo8e0e6942006-03-31 20:41:11 +09004743 qc->err_mask |= ap->ops->qc_issue(qc);
4744 if (unlikely(qc->err_mask))
4745 goto err;
4746 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
Tejun Heo8e436af2006-01-23 13:09:36 +09004748sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09004749 qc->err_mask |= AC_ERR_SYSTEM;
4750err:
4751 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752}
4753
4754/**
Tejun Heo34bf2172006-05-15 20:57:46 +09004755 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09004756 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09004757 *
Tejun Heo936fd732007-08-06 18:36:23 +09004758 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09004759 *
4760 * LOCKING:
4761 * None.
4762 *
4763 * RETURNS:
4764 * 1 if SCRs are accessible, 0 otherwise.
4765 */
Tejun Heo936fd732007-08-06 18:36:23 +09004766int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004767{
Tejun Heo936fd732007-08-06 18:36:23 +09004768 struct ata_port *ap = link->ap;
4769
Tejun Heoa16abc02007-05-21 18:33:47 +02004770 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09004771}
4772
4773/**
4774 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004775 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004776 * @reg: SCR to read
4777 * @val: Place to store read value
4778 *
Tejun Heo936fd732007-08-06 18:36:23 +09004779 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004780 * guaranteed to succeed if @link is ap->link, the cable type of
4781 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004782 *
4783 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004784 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004785 *
4786 * RETURNS:
4787 * 0 on success, negative errno on failure.
4788 */
Tejun Heo936fd732007-08-06 18:36:23 +09004789int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004790{
Tejun Heo633273a32007-09-23 13:19:54 +09004791 if (ata_is_host_link(link)) {
4792 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004793
Tejun Heo633273a32007-09-23 13:19:54 +09004794 if (sata_scr_valid(link))
4795 return ap->ops->scr_read(ap, reg, val);
4796 return -EOPNOTSUPP;
4797 }
4798
4799 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004800}
4801
4802/**
4803 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004804 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004805 * @reg: SCR to write
4806 * @val: value to write
4807 *
Tejun Heo936fd732007-08-06 18:36:23 +09004808 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004809 * guaranteed to succeed if @link is ap->link, the cable type of
4810 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004811 *
4812 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004813 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004814 *
4815 * RETURNS:
4816 * 0 on success, negative errno on failure.
4817 */
Tejun Heo936fd732007-08-06 18:36:23 +09004818int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004819{
Tejun Heo633273a32007-09-23 13:19:54 +09004820 if (ata_is_host_link(link)) {
4821 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004822
Tejun Heo633273a32007-09-23 13:19:54 +09004823 if (sata_scr_valid(link))
4824 return ap->ops->scr_write(ap, reg, val);
4825 return -EOPNOTSUPP;
4826 }
4827
4828 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004829}
4830
4831/**
4832 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09004833 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004834 * @reg: SCR to write
4835 * @val: value to write
4836 *
4837 * This function is identical to sata_scr_write() except that this
4838 * function performs flush after writing to the register.
4839 *
4840 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004841 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004842 *
4843 * RETURNS:
4844 * 0 on success, negative errno on failure.
4845 */
Tejun Heo936fd732007-08-06 18:36:23 +09004846int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004847{
Tejun Heo633273a32007-09-23 13:19:54 +09004848 if (ata_is_host_link(link)) {
4849 struct ata_port *ap = link->ap;
4850 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09004851
Tejun Heo633273a32007-09-23 13:19:54 +09004852 if (sata_scr_valid(link)) {
4853 rc = ap->ops->scr_write(ap, reg, val);
4854 if (rc == 0)
4855 rc = ap->ops->scr_read(ap, reg, &val);
4856 return rc;
4857 }
4858 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09004859 }
Tejun Heo633273a32007-09-23 13:19:54 +09004860
4861 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004862}
4863
4864/**
Tejun Heo936fd732007-08-06 18:36:23 +09004865 * ata_link_online - test whether the given link is online
4866 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004867 *
Tejun Heo936fd732007-08-06 18:36:23 +09004868 * Test whether @link is online. Note that this function returns
4869 * 0 if online status of @link cannot be obtained, so
4870 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004871 *
4872 * LOCKING:
4873 * None.
4874 *
4875 * RETURNS:
4876 * 1 if the port online status is available and online.
4877 */
Tejun Heo936fd732007-08-06 18:36:23 +09004878int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004879{
4880 u32 sstatus;
4881
Tejun Heo936fd732007-08-06 18:36:23 +09004882 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4883 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004884 return 1;
4885 return 0;
4886}
4887
4888/**
Tejun Heo936fd732007-08-06 18:36:23 +09004889 * ata_link_offline - test whether the given link is offline
4890 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004891 *
Tejun Heo936fd732007-08-06 18:36:23 +09004892 * Test whether @link is offline. Note that this function
4893 * returns 0 if offline status of @link cannot be obtained, so
4894 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004895 *
4896 * LOCKING:
4897 * None.
4898 *
4899 * RETURNS:
4900 * 1 if the port offline status is available and offline.
4901 */
Tejun Heo936fd732007-08-06 18:36:23 +09004902int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004903{
4904 u32 sstatus;
4905
Tejun Heo936fd732007-08-06 18:36:23 +09004906 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4907 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004908 return 1;
4909 return 0;
4910}
Edward Falk0baab862005-06-02 18:17:13 -04004911
Tejun Heo6ffa01d2007-03-02 17:32:47 +09004912#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04004913static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
4914 unsigned int action, unsigned int ehi_flags,
4915 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09004916{
4917 unsigned long flags;
4918 int i, rc;
4919
Jeff Garzikcca39742006-08-24 03:19:22 -04004920 for (i = 0; i < host->n_ports; i++) {
4921 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09004922 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09004923
4924 /* Previous resume operation might still be in
4925 * progress. Wait for PM_PENDING to clear.
4926 */
4927 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
4928 ata_port_wait_eh(ap);
4929 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4930 }
4931
4932 /* request PM ops to EH */
4933 spin_lock_irqsave(ap->lock, flags);
4934
4935 ap->pm_mesg = mesg;
4936 if (wait) {
4937 rc = 0;
4938 ap->pm_result = &rc;
4939 }
4940
4941 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09004942 __ata_port_for_each_link(link, ap) {
4943 link->eh_info.action |= action;
4944 link->eh_info.flags |= ehi_flags;
4945 }
Tejun Heo500530f2006-07-03 16:07:27 +09004946
4947 ata_port_schedule_eh(ap);
4948
4949 spin_unlock_irqrestore(ap->lock, flags);
4950
4951 /* wait and check result */
4952 if (wait) {
4953 ata_port_wait_eh(ap);
4954 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4955 if (rc)
4956 return rc;
4957 }
4958 }
4959
4960 return 0;
4961}
4962
4963/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004964 * ata_host_suspend - suspend host
4965 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09004966 * @mesg: PM message
4967 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004968 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004969 * function requests EH to perform PM operations and waits for EH
4970 * to finish.
4971 *
4972 * LOCKING:
4973 * Kernel thread context (may sleep).
4974 *
4975 * RETURNS:
4976 * 0 on success, -errno on failure.
4977 */
Jeff Garzikcca39742006-08-24 03:19:22 -04004978int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09004979{
Tejun Heo9666f402007-05-04 21:27:47 +02004980 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09004981
Kristen Carlson Accardica773292007-10-25 00:58:59 -04004982 /*
4983 * disable link pm on all ports before requesting
4984 * any pm activity
4985 */
4986 ata_lpm_enable(host);
4987
Jeff Garzikcca39742006-08-24 03:19:22 -04004988 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05004989 if (rc == 0)
4990 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09004991 return rc;
4992}
4993
4994/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004995 * ata_host_resume - resume host
4996 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09004997 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004998 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004999 * function requests EH to perform PM operations and returns.
5000 * Note that all resume operations are performed parallely.
5001 *
5002 * LOCKING:
5003 * Kernel thread context (may sleep).
5004 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005005void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005006{
Tejun Heocf480622008-01-24 00:05:14 +09005007 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005008 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005009 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005010
5011 /* reenable link pm */
5012 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005013}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005014#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005015
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005016/**
5017 * ata_port_start - Set port up for dma.
5018 * @ap: Port to initialize
5019 *
5020 * Called just after data structures for each port are
5021 * initialized. Allocates space for PRD table.
5022 *
5023 * May be used as the port_start() entry in ata_port_operations.
5024 *
5025 * LOCKING:
5026 * Inherited from caller.
5027 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005028int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029{
Brian King2f1f6102006-03-23 17:30:15 -06005030 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Tejun Heof0d36ef2007-01-20 16:00:28 +09005032 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5033 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 if (!ap->prd)
5035 return -ENOMEM;
5036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 return 0;
5038}
5039
Edward Falk0baab862005-06-02 18:17:13 -04005040/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005041 * ata_dev_init - Initialize an ata_device structure
5042 * @dev: Device structure to initialize
5043 *
5044 * Initialize @dev in preparation for probing.
5045 *
5046 * LOCKING:
5047 * Inherited from caller.
5048 */
5049void ata_dev_init(struct ata_device *dev)
5050{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005051 struct ata_link *link = dev->link;
5052 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005053 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005054
Tejun Heo5a04bf42006-05-31 18:27:38 +09005055 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005056 link->sata_spd_limit = link->hw_sata_spd_limit;
5057 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005058
Tejun Heo72fa4b72006-05-31 18:27:32 +09005059 /* High bits of dev->flags are used to record warm plug
5060 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005061 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005062 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005063 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005064 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005065 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005066 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005067
5068 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5069 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005070 dev->pio_mask = UINT_MAX;
5071 dev->mwdma_mask = UINT_MAX;
5072 dev->udma_mask = UINT_MAX;
5073}
5074
5075/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005076 * ata_link_init - Initialize an ata_link structure
5077 * @ap: ATA port link is attached to
5078 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005079 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005080 *
5081 * Initialize @link.
5082 *
5083 * LOCKING:
5084 * Kernel thread context (may sleep)
5085 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005086void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005087{
5088 int i;
5089
5090 /* clear everything except for devices */
5091 memset(link, 0, offsetof(struct ata_link, device[0]));
5092
5093 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005094 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005095 link->active_tag = ATA_TAG_POISON;
5096 link->hw_sata_spd_limit = UINT_MAX;
5097
5098 /* can't use iterator, ap isn't initialized yet */
5099 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5100 struct ata_device *dev = &link->device[i];
5101
5102 dev->link = link;
5103 dev->devno = dev - link->device;
5104 ata_dev_init(dev);
5105 }
5106}
5107
5108/**
5109 * sata_link_init_spd - Initialize link->sata_spd_limit
5110 * @link: Link to configure sata_spd_limit for
5111 *
5112 * Initialize @link->[hw_]sata_spd_limit to the currently
5113 * configured value.
5114 *
5115 * LOCKING:
5116 * Kernel thread context (may sleep).
5117 *
5118 * RETURNS:
5119 * 0 on success, -errno on failure.
5120 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005121int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005122{
Tejun Heo33267322008-02-13 09:15:09 +09005123 u32 scontrol;
5124 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005125 int rc;
5126
5127 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
5128 if (rc)
5129 return rc;
5130
5131 spd = (scontrol >> 4) & 0xf;
5132 if (spd)
5133 link->hw_sata_spd_limit &= (1 << spd) - 1;
5134
Tejun Heo33267322008-02-13 09:15:09 +09005135 ata_force_spd_limit(link);
5136
Tejun Heo4fb37a22007-08-06 18:36:23 +09005137 link->sata_spd_limit = link->hw_sata_spd_limit;
5138
5139 return 0;
5140}
5141
5142/**
Tejun Heof3187192007-04-17 23:44:07 +09005143 * ata_port_alloc - allocate and initialize basic ATA port resources
5144 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 *
Tejun Heof3187192007-04-17 23:44:07 +09005146 * Allocate and initialize basic ATA port resources.
5147 *
5148 * RETURNS:
5149 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005150 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005152 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 */
Tejun Heof3187192007-04-17 23:44:07 +09005154struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155{
Tejun Heof3187192007-04-17 23:44:07 +09005156 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Tejun Heof3187192007-04-17 23:44:07 +09005158 DPRINTK("ENTER\n");
5159
5160 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5161 if (!ap)
5162 return NULL;
5163
Tejun Heof4d6d002007-05-01 11:50:15 +02005164 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005165 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005166 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005167 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005169 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005170 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005172
5173#if defined(ATA_VERBOSE_DEBUG)
5174 /* turn on all debugging levels */
5175 ap->msg_enable = 0x00FF;
5176#elif defined(ATA_DEBUG)
5177 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 +09005178#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005179 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
Jeff Garzik442eacc2007-12-19 04:25:10 -05005182 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
David Howells65f27f32006-11-22 14:55:48 +00005183 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5184 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005185 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005186 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005187 init_timer_deferrable(&ap->fastdrain_timer);
5188 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5189 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Tejun Heo838df622006-05-15 20:57:44 +09005191 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005192
Tejun Heo89898052007-08-06 18:36:23 +09005193 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
5195#ifdef ATA_IRQ_TRAP
5196 ap->stats.unhandled_irq = 1;
5197 ap->stats.idle_irq = 1;
5198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200}
5201
Tejun Heof0d36ef2007-01-20 16:00:28 +09005202static void ata_host_release(struct device *gendev, void *res)
5203{
5204 struct ata_host *host = dev_get_drvdata(gendev);
5205 int i;
5206
5207 for (i = 0; i < host->n_ports; i++) {
5208 struct ata_port *ap = host->ports[i];
5209
Tejun Heoecef7252007-04-17 23:44:06 +09005210 if (!ap)
5211 continue;
5212
Tejun Heo49114872007-04-17 23:44:06 +09005213 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005214 scsi_host_put(ap->scsi_host);
5215
Tejun Heo633273a32007-09-23 13:19:54 +09005216 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09005217 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005218 host->ports[i] = NULL;
5219 }
5220
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005221 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005222}
5223
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224/**
Tejun Heof3187192007-04-17 23:44:07 +09005225 * ata_host_alloc - allocate and init basic ATA host resources
5226 * @dev: generic device this host is associated with
5227 * @max_ports: maximum number of ATA ports associated with this host
5228 *
5229 * Allocate and initialize basic ATA host resources. LLD calls
5230 * this function to allocate a host, initializes it fully and
5231 * attaches it using ata_host_register().
5232 *
5233 * @max_ports ports are allocated and host->n_ports is
5234 * initialized to @max_ports. The caller is allowed to decrease
5235 * host->n_ports before calling ata_host_register(). The unused
5236 * ports will be automatically freed on registration.
5237 *
5238 * RETURNS:
5239 * Allocate ATA host on success, NULL on failure.
5240 *
5241 * LOCKING:
5242 * Inherited from calling layer (may sleep).
5243 */
5244struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5245{
5246 struct ata_host *host;
5247 size_t sz;
5248 int i;
5249
5250 DPRINTK("ENTER\n");
5251
5252 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5253 return NULL;
5254
5255 /* alloc a container for our list of ATA ports (buses) */
5256 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5257 /* alloc a container for our list of ATA ports (buses) */
5258 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5259 if (!host)
5260 goto err_out;
5261
5262 devres_add(dev, host);
5263 dev_set_drvdata(dev, host);
5264
5265 spin_lock_init(&host->lock);
5266 host->dev = dev;
5267 host->n_ports = max_ports;
5268
5269 /* allocate ports bound to this host */
5270 for (i = 0; i < max_ports; i++) {
5271 struct ata_port *ap;
5272
5273 ap = ata_port_alloc(host);
5274 if (!ap)
5275 goto err_out;
5276
5277 ap->port_no = i;
5278 host->ports[i] = ap;
5279 }
5280
5281 devres_remove_group(dev, NULL);
5282 return host;
5283
5284 err_out:
5285 devres_release_group(dev, NULL);
5286 return NULL;
5287}
5288
5289/**
Tejun Heof5cda252007-04-17 23:44:07 +09005290 * ata_host_alloc_pinfo - alloc host and init with port_info array
5291 * @dev: generic device this host is associated with
5292 * @ppi: array of ATA port_info to initialize host with
5293 * @n_ports: number of ATA ports attached to this host
5294 *
5295 * Allocate ATA host and initialize with info from @ppi. If NULL
5296 * terminated, @ppi may contain fewer entries than @n_ports. The
5297 * last entry will be used for the remaining ports.
5298 *
5299 * RETURNS:
5300 * Allocate ATA host on success, NULL on failure.
5301 *
5302 * LOCKING:
5303 * Inherited from calling layer (may sleep).
5304 */
5305struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5306 const struct ata_port_info * const * ppi,
5307 int n_ports)
5308{
5309 const struct ata_port_info *pi;
5310 struct ata_host *host;
5311 int i, j;
5312
5313 host = ata_host_alloc(dev, n_ports);
5314 if (!host)
5315 return NULL;
5316
5317 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5318 struct ata_port *ap = host->ports[i];
5319
5320 if (ppi[j])
5321 pi = ppi[j++];
5322
5323 ap->pio_mask = pi->pio_mask;
5324 ap->mwdma_mask = pi->mwdma_mask;
5325 ap->udma_mask = pi->udma_mask;
5326 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005327 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005328 ap->ops = pi->port_ops;
5329
5330 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5331 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005332 }
5333
5334 return host;
5335}
5336
Tejun Heo32ebbc02007-11-08 13:09:00 +09005337static void ata_host_stop(struct device *gendev, void *res)
5338{
5339 struct ata_host *host = dev_get_drvdata(gendev);
5340 int i;
5341
5342 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5343
5344 for (i = 0; i < host->n_ports; i++) {
5345 struct ata_port *ap = host->ports[i];
5346
5347 if (ap->ops->port_stop)
5348 ap->ops->port_stop(ap);
5349 }
5350
5351 if (host->ops->host_stop)
5352 host->ops->host_stop(host);
5353}
5354
Tejun Heof5cda252007-04-17 23:44:07 +09005355/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005356 * ata_finalize_port_ops - finalize ata_port_operations
5357 * @ops: ata_port_operations to finalize
5358 *
5359 * An ata_port_operations can inherit from another ops and that
5360 * ops can again inherit from another. This can go on as many
5361 * times as necessary as long as there is no loop in the
5362 * inheritance chain.
5363 *
5364 * Ops tables are finalized when the host is started. NULL or
5365 * unspecified entries are inherited from the closet ancestor
5366 * which has the method and the entry is populated with it.
5367 * After finalization, the ops table directly points to all the
5368 * methods and ->inherits is no longer necessary and cleared.
5369 *
5370 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5371 *
5372 * LOCKING:
5373 * None.
5374 */
5375static void ata_finalize_port_ops(struct ata_port_operations *ops)
5376{
5377 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
5378 const struct ata_port_operations *cur;
5379 void **begin = (void **)ops;
5380 void **end = (void **)&ops->inherits;
5381 void **pp;
5382
5383 if (!ops || !ops->inherits)
5384 return;
5385
5386 spin_lock(&lock);
5387
5388 for (cur = ops->inherits; cur; cur = cur->inherits) {
5389 void **inherit = (void **)cur;
5390
5391 for (pp = begin; pp < end; pp++, inherit++)
5392 if (!*pp)
5393 *pp = *inherit;
5394 }
5395
5396 for (pp = begin; pp < end; pp++)
5397 if (IS_ERR(*pp))
5398 *pp = NULL;
5399
5400 ops->inherits = NULL;
5401
5402 spin_unlock(&lock);
5403}
5404
5405/**
Tejun Heoecef7252007-04-17 23:44:06 +09005406 * ata_host_start - start and freeze ports of an ATA host
5407 * @host: ATA host to start ports for
5408 *
5409 * Start and then freeze ports of @host. Started status is
5410 * recorded in host->flags, so this function can be called
5411 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005412 * once. If host->ops isn't initialized yet, its set to the
5413 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005414 *
5415 * LOCKING:
5416 * Inherited from calling layer (may sleep).
5417 *
5418 * RETURNS:
5419 * 0 if all ports are started successfully, -errno otherwise.
5420 */
5421int ata_host_start(struct ata_host *host)
5422{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005423 int have_stop = 0;
5424 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005425 int i, rc;
5426
5427 if (host->flags & ATA_HOST_STARTED)
5428 return 0;
5429
Tejun Heo029cfd62008-03-25 12:22:49 +09005430 ata_finalize_port_ops(host->ops);
5431
Tejun Heoecef7252007-04-17 23:44:06 +09005432 for (i = 0; i < host->n_ports; i++) {
5433 struct ata_port *ap = host->ports[i];
5434
Tejun Heo029cfd62008-03-25 12:22:49 +09005435 ata_finalize_port_ops(ap->ops);
5436
Tejun Heof3187192007-04-17 23:44:07 +09005437 if (!host->ops && !ata_port_is_dummy(ap))
5438 host->ops = ap->ops;
5439
Tejun Heo32ebbc02007-11-08 13:09:00 +09005440 if (ap->ops->port_stop)
5441 have_stop = 1;
5442 }
5443
5444 if (host->ops->host_stop)
5445 have_stop = 1;
5446
5447 if (have_stop) {
5448 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5449 if (!start_dr)
5450 return -ENOMEM;
5451 }
5452
5453 for (i = 0; i < host->n_ports; i++) {
5454 struct ata_port *ap = host->ports[i];
5455
Tejun Heoecef7252007-04-17 23:44:06 +09005456 if (ap->ops->port_start) {
5457 rc = ap->ops->port_start(ap);
5458 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005459 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005460 dev_printk(KERN_ERR, host->dev,
5461 "failed to start port %d "
5462 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005463 goto err_out;
5464 }
5465 }
Tejun Heoecef7252007-04-17 23:44:06 +09005466 ata_eh_freeze_port(ap);
5467 }
5468
Tejun Heo32ebbc02007-11-08 13:09:00 +09005469 if (start_dr)
5470 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005471 host->flags |= ATA_HOST_STARTED;
5472 return 0;
5473
5474 err_out:
5475 while (--i >= 0) {
5476 struct ata_port *ap = host->ports[i];
5477
5478 if (ap->ops->port_stop)
5479 ap->ops->port_stop(ap);
5480 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005481 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005482 return rc;
5483}
5484
5485/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005486 * ata_sas_host_init - Initialize a host struct
5487 * @host: host to initialize
5488 * @dev: device host is attached to
5489 * @flags: host flags
5490 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005491 *
5492 * LOCKING:
5493 * PCI/etc. bus probe sem.
5494 *
5495 */
Tejun Heof3187192007-04-17 23:44:07 +09005496/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005497void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005498 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005499{
Jeff Garzikcca39742006-08-24 03:19:22 -04005500 spin_lock_init(&host->lock);
5501 host->dev = dev;
5502 host->flags = flags;
5503 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005504}
5505
5506/**
Tejun Heof3187192007-04-17 23:44:07 +09005507 * ata_host_register - register initialized ATA host
5508 * @host: ATA host to register
5509 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005510 *
Tejun Heof3187192007-04-17 23:44:07 +09005511 * Register initialized ATA host. @host is allocated using
5512 * ata_host_alloc() and fully initialized by LLD. This function
5513 * starts ports, registers @host with ATA and SCSI layers and
5514 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 *
5516 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005517 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 *
5519 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005520 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 */
Tejun Heof3187192007-04-17 23:44:07 +09005522int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523{
Tejun Heof3187192007-04-17 23:44:07 +09005524 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Tejun Heof3187192007-04-17 23:44:07 +09005526 /* host must have been started */
5527 if (!(host->flags & ATA_HOST_STARTED)) {
5528 dev_printk(KERN_ERR, host->dev,
5529 "BUG: trying to register unstarted host\n");
5530 WARN_ON(1);
5531 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01005532 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005533
Tejun Heof3187192007-04-17 23:44:07 +09005534 /* Blow away unused ports. This happens when LLD can't
5535 * determine the exact number of ports to allocate at
5536 * allocation time.
5537 */
5538 for (i = host->n_ports; host->ports[i]; i++)
5539 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Tejun Heof3187192007-04-17 23:44:07 +09005541 /* give ports names and add SCSI hosts */
5542 for (i = 0; i < host->n_ports; i++)
5543 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09005544
Tejun Heof3187192007-04-17 23:44:07 +09005545 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09005546 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09005547 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09005548
Tejun Heofafbae82007-05-15 03:28:16 +09005549 /* associate with ACPI nodes */
5550 ata_acpi_associate(host);
5551
Tejun Heof3187192007-04-17 23:44:07 +09005552 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04005553 for (i = 0; i < host->n_ports; i++) {
5554 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005555 unsigned long xfer_mask;
5556
5557 /* set SATA cable type if still unset */
5558 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
5559 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Tejun Heo5a04bf42006-05-31 18:27:38 +09005561 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09005562 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09005563
Tejun Heocbcdd872007-08-18 13:14:55 +09005564 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09005565 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
5566 ap->udma_mask);
5567
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005568 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09005569 ata_port_printk(ap, KERN_INFO,
5570 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02005571 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09005572 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09005573 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005574 ata_ehi_clear_desc(&ap->link.eh_info);
5575 } else
Tejun Heof3187192007-04-17 23:44:07 +09005576 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5577 }
5578
5579 /* perform each probe synchronously */
5580 DPRINTK("probe begin\n");
5581 for (i = 0; i < host->n_ports; i++) {
5582 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005583
5584 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09005585 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005586 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005587 unsigned long flags;
5588
5589 ata_port_probe(ap);
5590
5591 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005592 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005593
Tejun Heob558edd2008-01-24 00:05:14 +09005594 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09005595 ehi->action |= ATA_EH_RESET;
Tejun Heo1cdaf532006-07-03 16:07:26 +09005596 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005597
Tejun Heof4d6d002007-05-01 11:50:15 +02005598 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09005599 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005600 ata_port_schedule_eh(ap);
5601
Jeff Garzikba6a1302006-06-22 23:46:10 -04005602 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005603
5604 /* wait for EH to finish */
5605 ata_port_wait_eh(ap);
5606 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09005607 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005608 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005609 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005610
5611 if (rc) {
5612 /* FIXME: do something useful here?
5613 * Current libata behavior will
5614 * tear down everything when
5615 * the module is removed
5616 * or the h/w is unplugged.
5617 */
5618 }
5619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 }
5621
5622 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005623 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005624 for (i = 0; i < host->n_ports; i++) {
5625 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Tejun Heo1ae46312007-07-16 14:29:40 +09005627 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005628 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629 }
5630
Tejun Heof3187192007-04-17 23:44:07 +09005631 return 0;
5632}
5633
5634/**
Tejun Heof5cda252007-04-17 23:44:07 +09005635 * ata_host_activate - start host, request IRQ and register it
5636 * @host: target ATA host
5637 * @irq: IRQ to request
5638 * @irq_handler: irq_handler used when requesting IRQ
5639 * @irq_flags: irq_flags used when requesting IRQ
5640 * @sht: scsi_host_template to use when registering the host
5641 *
5642 * After allocating an ATA host and initializing it, most libata
5643 * LLDs perform three steps to activate the host - start host,
5644 * request IRQ and register it. This helper takes necessasry
5645 * arguments and performs the three steps in one go.
5646 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005647 * An invalid IRQ skips the IRQ registration and expects the host to
5648 * have set polling mode on the port. In this case, @irq_handler
5649 * should be NULL.
5650 *
Tejun Heof5cda252007-04-17 23:44:07 +09005651 * LOCKING:
5652 * Inherited from calling layer (may sleep).
5653 *
5654 * RETURNS:
5655 * 0 on success, -errno otherwise.
5656 */
5657int ata_host_activate(struct ata_host *host, int irq,
5658 irq_handler_t irq_handler, unsigned long irq_flags,
5659 struct scsi_host_template *sht)
5660{
Tejun Heocbcdd872007-08-18 13:14:55 +09005661 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09005662
5663 rc = ata_host_start(host);
5664 if (rc)
5665 return rc;
5666
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005667 /* Special case for polling mode */
5668 if (!irq) {
5669 WARN_ON(irq_handler);
5670 return ata_host_register(host, sht);
5671 }
5672
Tejun Heof5cda252007-04-17 23:44:07 +09005673 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
5674 dev_driver_string(host->dev), host);
5675 if (rc)
5676 return rc;
5677
Tejun Heocbcdd872007-08-18 13:14:55 +09005678 for (i = 0; i < host->n_ports; i++)
5679 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09005680
Tejun Heof5cda252007-04-17 23:44:07 +09005681 rc = ata_host_register(host, sht);
5682 /* if failed, just free the IRQ and leave ports alone */
5683 if (rc)
5684 devm_free_irq(host->dev, irq, host);
5685
5686 return rc;
5687}
5688
5689/**
Tejun Heo720ba122006-05-31 18:28:13 +09005690 * ata_port_detach - Detach ATA port in prepration of device removal
5691 * @ap: ATA port to be detached
5692 *
5693 * Detach all ATA devices and the associated SCSI devices of @ap;
5694 * then, remove the associated SCSI host. @ap is guaranteed to
5695 * be quiescent on return from this function.
5696 *
5697 * LOCKING:
5698 * Kernel thread context (may sleep).
5699 */
Adrian Bunk741b7762007-10-24 18:23:06 +02005700static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09005701{
5702 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09005703 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09005704 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09005705
5706 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005707 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005708
5709 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005710 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005711 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005712 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005713
5714 ata_port_wait_eh(ap);
5715
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09005716 /* EH is now guaranteed to see UNLOADING - EH context belongs
5717 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09005718 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09005719 ata_port_for_each_link(link, ap) {
5720 ata_link_for_each_dev(dev, link)
5721 ata_dev_disable(dev);
5722 }
Tejun Heo720ba122006-05-31 18:28:13 +09005723
Tejun Heo720ba122006-05-31 18:28:13 +09005724 /* Final freeze & EH. All in-flight commands are aborted. EH
5725 * will be skipped and retrials will be terminated with bad
5726 * target.
5727 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005728 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005729 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005730 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005731
5732 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07005733 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09005734
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005735 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005736 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005737 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005738}
5739
5740/**
Tejun Heo0529c152007-01-20 16:00:26 +09005741 * ata_host_detach - Detach all ports of an ATA host
5742 * @host: Host to detach
5743 *
5744 * Detach all ports of @host.
5745 *
5746 * LOCKING:
5747 * Kernel thread context (may sleep).
5748 */
5749void ata_host_detach(struct ata_host *host)
5750{
5751 int i;
5752
5753 for (i = 0; i < host->n_ports; i++)
5754 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09005755
5756 /* the host is dead now, dissociate ACPI */
5757 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09005758}
5759
Jeff Garzik374b1872005-08-30 05:42:52 -04005760#ifdef CONFIG_PCI
5761
Edward Falk0baab862005-06-02 18:17:13 -04005762/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 * ata_pci_remove_one - PCI layer callback for device removal
5764 * @pdev: PCI device that was removed
5765 *
Tejun Heob878ca52007-01-20 16:00:28 +09005766 * PCI layer indicates to libata via this hook that hot-unplug or
5767 * module unload event has occurred. Detach all ports. Resource
5768 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 *
5770 * LOCKING:
5771 * Inherited from PCI layer (may sleep).
5772 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005773void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774{
Jeff Garzik28555682007-10-11 17:12:35 -04005775 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005776 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
Tejun Heob878ca52007-01-20 16:00:28 +09005778 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779}
5780
5781/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005782int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783{
5784 unsigned long tmp = 0;
5785
5786 switch (bits->width) {
5787 case 1: {
5788 u8 tmp8 = 0;
5789 pci_read_config_byte(pdev, bits->reg, &tmp8);
5790 tmp = tmp8;
5791 break;
5792 }
5793 case 2: {
5794 u16 tmp16 = 0;
5795 pci_read_config_word(pdev, bits->reg, &tmp16);
5796 tmp = tmp16;
5797 break;
5798 }
5799 case 4: {
5800 u32 tmp32 = 0;
5801 pci_read_config_dword(pdev, bits->reg, &tmp32);
5802 tmp = tmp32;
5803 break;
5804 }
5805
5806 default:
5807 return -EINVAL;
5808 }
5809
5810 tmp &= bits->mask;
5811
5812 return (tmp == bits->val) ? 1 : 0;
5813}
Jens Axboe9b847542006-01-06 09:28:07 +01005814
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005815#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09005816void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01005817{
5818 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09005819 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09005820
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01005821 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09005822 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01005823}
5824
Tejun Heo553c4aa2006-12-26 19:39:50 +09005825int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01005826{
Tejun Heo553c4aa2006-12-26 19:39:50 +09005827 int rc;
5828
Jens Axboe9b847542006-01-06 09:28:07 +01005829 pci_set_power_state(pdev, PCI_D0);
5830 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005831
Tejun Heob878ca52007-01-20 16:00:28 +09005832 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005833 if (rc) {
5834 dev_printk(KERN_ERR, &pdev->dev,
5835 "failed to enable device after resume (%d)\n", rc);
5836 return rc;
5837 }
5838
Jens Axboe9b847542006-01-06 09:28:07 +01005839 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005840 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09005841}
5842
Tejun Heo3c5100c2006-07-26 16:58:33 +09005843int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005844{
Jeff Garzikcca39742006-08-24 03:19:22 -04005845 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09005846 int rc = 0;
5847
Jeff Garzikcca39742006-08-24 03:19:22 -04005848 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005849 if (rc)
5850 return rc;
5851
Tejun Heo3c5100c2006-07-26 16:58:33 +09005852 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005853
5854 return 0;
5855}
5856
5857int ata_pci_device_resume(struct pci_dev *pdev)
5858{
Jeff Garzikcca39742006-08-24 03:19:22 -04005859 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005860 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005861
Tejun Heo553c4aa2006-12-26 19:39:50 +09005862 rc = ata_pci_device_do_resume(pdev);
5863 if (rc == 0)
5864 ata_host_resume(host);
5865 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01005866}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005867#endif /* CONFIG_PM */
5868
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869#endif /* CONFIG_PCI */
5870
Tejun Heo33267322008-02-13 09:15:09 +09005871static int __init ata_parse_force_one(char **cur,
5872 struct ata_force_ent *force_ent,
5873 const char **reason)
5874{
5875 /* FIXME: Currently, there's no way to tag init const data and
5876 * using __initdata causes build failure on some versions of
5877 * gcc. Once __initdataconst is implemented, add const to the
5878 * following structure.
5879 */
5880 static struct ata_force_param force_tbl[] __initdata = {
5881 { "40c", .cbl = ATA_CBL_PATA40 },
5882 { "80c", .cbl = ATA_CBL_PATA80 },
5883 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
5884 { "unk", .cbl = ATA_CBL_PATA_UNK },
5885 { "ign", .cbl = ATA_CBL_PATA_IGN },
5886 { "sata", .cbl = ATA_CBL_SATA },
5887 { "1.5Gbps", .spd_limit = 1 },
5888 { "3.0Gbps", .spd_limit = 2 },
5889 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
5890 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
5891 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
5892 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
5893 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
5894 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
5895 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
5896 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
5897 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
5898 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
5899 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
5900 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
5901 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
5902 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
5903 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5904 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5905 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5906 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5907 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5908 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5909 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5910 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5911 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5912 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5913 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5914 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5915 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5916 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5917 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5918 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5919 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5920 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5921 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5922 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5923 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5924 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
5925 };
5926 char *start = *cur, *p = *cur;
5927 char *id, *val, *endp;
5928 const struct ata_force_param *match_fp = NULL;
5929 int nr_matches = 0, i;
5930
5931 /* find where this param ends and update *cur */
5932 while (*p != '\0' && *p != ',')
5933 p++;
5934
5935 if (*p == '\0')
5936 *cur = p;
5937 else
5938 *cur = p + 1;
5939
5940 *p = '\0';
5941
5942 /* parse */
5943 p = strchr(start, ':');
5944 if (!p) {
5945 val = strstrip(start);
5946 goto parse_val;
5947 }
5948 *p = '\0';
5949
5950 id = strstrip(start);
5951 val = strstrip(p + 1);
5952
5953 /* parse id */
5954 p = strchr(id, '.');
5955 if (p) {
5956 *p++ = '\0';
5957 force_ent->device = simple_strtoul(p, &endp, 10);
5958 if (p == endp || *endp != '\0') {
5959 *reason = "invalid device";
5960 return -EINVAL;
5961 }
5962 }
5963
5964 force_ent->port = simple_strtoul(id, &endp, 10);
5965 if (p == endp || *endp != '\0') {
5966 *reason = "invalid port/link";
5967 return -EINVAL;
5968 }
5969
5970 parse_val:
5971 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
5972 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
5973 const struct ata_force_param *fp = &force_tbl[i];
5974
5975 if (strncasecmp(val, fp->name, strlen(val)))
5976 continue;
5977
5978 nr_matches++;
5979 match_fp = fp;
5980
5981 if (strcasecmp(val, fp->name) == 0) {
5982 nr_matches = 1;
5983 break;
5984 }
5985 }
5986
5987 if (!nr_matches) {
5988 *reason = "unknown value";
5989 return -EINVAL;
5990 }
5991 if (nr_matches > 1) {
5992 *reason = "ambigious value";
5993 return -EINVAL;
5994 }
5995
5996 force_ent->param = *match_fp;
5997
5998 return 0;
5999}
6000
6001static void __init ata_parse_force_param(void)
6002{
6003 int idx = 0, size = 1;
6004 int last_port = -1, last_device = -1;
6005 char *p, *cur, *next;
6006
6007 /* calculate maximum number of params and allocate force_tbl */
6008 for (p = ata_force_param_buf; *p; p++)
6009 if (*p == ',')
6010 size++;
6011
6012 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6013 if (!ata_force_tbl) {
6014 printk(KERN_WARNING "ata: failed to extend force table, "
6015 "libata.force ignored\n");
6016 return;
6017 }
6018
6019 /* parse and populate the table */
6020 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6021 const char *reason = "";
6022 struct ata_force_ent te = { .port = -1, .device = -1 };
6023
6024 next = cur;
6025 if (ata_parse_force_one(&next, &te, &reason)) {
6026 printk(KERN_WARNING "ata: failed to parse force "
6027 "parameter \"%s\" (%s)\n",
6028 cur, reason);
6029 continue;
6030 }
6031
6032 if (te.port == -1) {
6033 te.port = last_port;
6034 te.device = last_device;
6035 }
6036
6037 ata_force_tbl[idx++] = te;
6038
6039 last_port = te.port;
6040 last_device = te.device;
6041 }
6042
6043 ata_force_tbl_size = idx;
6044}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046static int __init ata_init(void)
6047{
Andrew Mortona8601e52006-06-25 01:36:52 -07006048 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09006049
6050 ata_parse_force_param();
6051
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 ata_wq = create_workqueue("ata");
6053 if (!ata_wq)
6054 return -ENOMEM;
6055
Tejun Heo453b07a2006-05-31 18:27:42 +09006056 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6057 if (!ata_aux_wq) {
6058 destroy_workqueue(ata_wq);
6059 return -ENOMEM;
6060 }
6061
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6063 return 0;
6064}
6065
6066static void __exit ata_exit(void)
6067{
Tejun Heo33267322008-02-13 09:15:09 +09006068 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006070 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071}
6072
Brian Kinga4625082006-11-13 16:32:36 -06006073subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074module_exit(ata_exit);
6075
Jeff Garzik67846b32005-10-05 02:58:32 -04006076static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006077static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006078
6079int ata_ratelimit(void)
6080{
6081 int rc;
6082 unsigned long flags;
6083
6084 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6085
6086 if (time_after(jiffies, ratelimit_time)) {
6087 rc = 1;
6088 ratelimit_time = jiffies + (HZ/5);
6089 } else
6090 rc = 0;
6091
6092 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6093
6094 return rc;
6095}
6096
Tejun Heoc22daff2006-04-11 22:22:29 +09006097/**
6098 * ata_wait_register - wait until register value changes
6099 * @reg: IO-mapped register
6100 * @mask: Mask to apply to read register value
6101 * @val: Wait condition
6102 * @interval_msec: polling interval in milliseconds
6103 * @timeout_msec: timeout in milliseconds
6104 *
6105 * Waiting for some bits of register to change is a common
6106 * operation for ATA controllers. This function reads 32bit LE
6107 * IO-mapped register @reg and tests for the following condition.
6108 *
6109 * (*@reg & mask) != val
6110 *
6111 * If the condition is met, it returns; otherwise, the process is
6112 * repeated after @interval_msec until timeout.
6113 *
6114 * LOCKING:
6115 * Kernel thread context (may sleep)
6116 *
6117 * RETURNS:
6118 * The final register value.
6119 */
6120u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6121 unsigned long interval_msec,
6122 unsigned long timeout_msec)
6123{
6124 unsigned long timeout;
6125 u32 tmp;
6126
6127 tmp = ioread32(reg);
6128
6129 /* Calculate timeout _after_ the first read to make sure
6130 * preceding writes reach the controller before starting to
6131 * eat away the timeout.
6132 */
6133 timeout = jiffies + (timeout_msec * HZ) / 1000;
6134
6135 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6136 msleep(interval_msec);
6137 tmp = ioread32(reg);
6138 }
6139
6140 return tmp;
6141}
6142
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006144 * Dummy port_ops
6145 */
6146static void ata_dummy_noret(struct ata_port *ap) { }
6147static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6148static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6149
6150static u8 ata_dummy_check_status(struct ata_port *ap)
6151{
6152 return ATA_DRDY;
6153}
6154
6155static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6156{
6157 return AC_ERR_SYSTEM;
6158}
6159
Tejun Heo029cfd62008-03-25 12:22:49 +09006160struct ata_port_operations ata_dummy_port_ops = {
Tejun Heo5682ed32008-04-07 22:47:16 +09006161 .sff_check_status = ata_dummy_check_status,
6162 .sff_check_altstatus = ata_dummy_check_status,
6163 .sff_dev_select = ata_noop_dev_select,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006164 .qc_prep = ata_noop_qc_prep,
6165 .qc_issue = ata_dummy_qc_issue,
6166 .freeze = ata_dummy_noret,
6167 .thaw = ata_dummy_noret,
6168 .error_handler = ata_dummy_noret,
6169 .post_internal_cmd = ata_dummy_qc_noret,
Tejun Heo5682ed32008-04-07 22:47:16 +09006170 .sff_irq_clear = ata_dummy_noret,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006171 .port_start = ata_dummy_ret0,
6172 .port_stop = ata_dummy_noret,
6173};
6174
Tejun Heo21b0ad42007-04-17 23:44:07 +09006175const struct ata_port_info ata_dummy_port_info = {
6176 .port_ops = &ata_dummy_port_ops,
6177};
6178
Tejun Heodd5b06c2006-08-10 16:59:12 +09006179/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180 * libata is essentially a library of internal helper functions for
6181 * low-level ATA host controller drivers. As such, the API/ABI is
6182 * likely to change as new drivers are added and updated.
6183 * Do not depend on ABI/API stability.
6184 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006185EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6186EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6187EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006188EXPORT_SYMBOL_GPL(ata_base_port_ops);
6189EXPORT_SYMBOL_GPL(sata_port_ops);
6190EXPORT_SYMBOL_GPL(sata_pmp_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006191EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006192EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006194EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006195EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006196EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006197EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006198EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006199EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006200EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006202EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006203EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204EXPORT_SYMBOL_GPL(ata_noop_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006205EXPORT_SYMBOL_GPL(sata_print_link_status);
Tejun Heo436d34b2008-04-02 17:28:46 +09006206EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6208EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006209EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6210EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6211EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6212EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6213EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6214EXPORT_SYMBOL_GPL(ata_mode_string);
6215EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216EXPORT_SYMBOL_GPL(ata_port_start);
Alan04351822007-03-06 02:37:52 -08006217EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006218EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006219EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006221EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006222EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heoaa2731a2008-04-07 22:47:19 +09006223EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heo936fd732007-08-06 18:36:23 +09006224EXPORT_SYMBOL_GPL(sata_link_debounce);
6225EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heo0aa11132008-04-07 22:47:18 +09006226EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006227EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heo203c75b2008-04-07 22:47:18 +09006228EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006229EXPORT_SYMBOL_GPL(ata_dev_classify);
6230EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006232EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006233EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6235EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006237EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006238EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006239EXPORT_SYMBOL_GPL(sata_scr_valid);
6240EXPORT_SYMBOL_GPL(sata_scr_read);
6241EXPORT_SYMBOL_GPL(sata_scr_write);
6242EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006243EXPORT_SYMBOL_GPL(ata_link_online);
6244EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006245#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006246EXPORT_SYMBOL_GPL(ata_host_suspend);
6247EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006248#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006249EXPORT_SYMBOL_GPL(ata_id_string);
6250EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6252
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006253EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006254EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006255EXPORT_SYMBOL_GPL(ata_timing_compute);
6256EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006257EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006258
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259#ifdef CONFIG_PCI
6260EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006262#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006263EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6264EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006265EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6266EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006267#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006269
Tejun Heo31f88382007-09-23 13:19:54 +09006270EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
Tejun Heo3af9a772007-09-23 13:19:54 +09006271EXPORT_SYMBOL_GPL(sata_pmp_std_prereset);
6272EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset);
6273EXPORT_SYMBOL_GPL(sata_pmp_std_postreset);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006274EXPORT_SYMBOL_GPL(sata_pmp_error_handler);
Tejun Heo3af9a772007-09-23 13:19:54 +09006275
Tejun Heob64bbc32007-07-16 14:29:39 +09006276EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6277EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6278EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006279EXPORT_SYMBOL_GPL(ata_port_desc);
6280#ifdef CONFIG_PCI
6281EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6282#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006283EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006284EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006285EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006286EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006287EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006288EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6289EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006290EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6291EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006292EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006293EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006294
6295EXPORT_SYMBOL_GPL(ata_cable_40wire);
6296EXPORT_SYMBOL_GPL(ata_cable_80wire);
6297EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006298EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006299EXPORT_SYMBOL_GPL(ata_cable_sata);