libata-acpi: implement and use ata_acpi_init_gtm()
[linux-2.6/kmemtrace.git] / drivers / ata / libata-acpi.c
blobb3aeca368774685bb2e747d94c6f2feee7f4fb02
1 /*
2 * libata-acpi.c
3 * Provides ACPI support for PATA/SATA.
5 * Copyright (C) 2006 Intel Corp.
6 * Copyright (C) 2006 Randy Dunlap
7 */
9 #include <linux/ata.h>
10 #include <linux/delay.h>
11 #include <linux/device.h>
12 #include <linux/errno.h>
13 #include <linux/kernel.h>
14 #include <linux/acpi.h>
15 #include <linux/libata.h>
16 #include <linux/pci.h>
17 #include <scsi/scsi_device.h>
18 #include "libata.h"
20 #include <acpi/acpi_bus.h>
21 #include <acpi/acnames.h>
22 #include <acpi/acnamesp.h>
23 #include <acpi/acparser.h>
24 #include <acpi/acexcep.h>
25 #include <acpi/acmacros.h>
26 #include <acpi/actypes.h>
28 #define NO_PORT_MULT 0xffff
29 #define SATA_ADR(root, pmp) (((root) << 16) | (pmp))
31 #define REGS_PER_GTF 7
32 struct ata_acpi_gtf {
33 u8 tf[REGS_PER_GTF]; /* regs. 0x1f1 - 0x1f7 */
34 } __packed;
37 * Helper - belongs in the PCI layer somewhere eventually
39 static int is_pci_dev(struct device *dev)
41 return (dev->bus == &pci_bus_type);
44 /**
45 * ata_acpi_associate_sata_port - associate SATA port with ACPI objects
46 * @ap: target SATA port
48 * Look up ACPI objects associated with @ap and initialize acpi_handle
49 * fields of @ap, the port and devices accordingly.
51 * LOCKING:
52 * EH context.
54 * RETURNS:
55 * 0 on success, -errno on failure.
57 void ata_acpi_associate_sata_port(struct ata_port *ap)
59 WARN_ON(!(ap->flags & ATA_FLAG_ACPI_SATA));
61 if (!ap->nr_pmp_links) {
62 acpi_integer adr = SATA_ADR(ap->port_no, NO_PORT_MULT);
64 ap->link.device->acpi_handle =
65 acpi_get_child(ap->host->acpi_handle, adr);
66 } else {
67 struct ata_link *link;
69 ap->link.device->acpi_handle = NULL;
71 ata_port_for_each_link(link, ap) {
72 acpi_integer adr = SATA_ADR(ap->port_no, link->pmp);
74 link->device->acpi_handle =
75 acpi_get_child(ap->host->acpi_handle, adr);
80 static void ata_acpi_associate_ide_port(struct ata_port *ap)
82 int max_devices, i;
84 ap->acpi_handle = acpi_get_child(ap->host->acpi_handle, ap->port_no);
85 if (!ap->acpi_handle)
86 return;
88 max_devices = 1;
89 if (ap->flags & ATA_FLAG_SLAVE_POSS)
90 max_devices++;
92 for (i = 0; i < max_devices; i++) {
93 struct ata_device *dev = &ap->link.device[i];
95 dev->acpi_handle = acpi_get_child(ap->acpi_handle, i);
98 if (ata_acpi_gtm(ap, &ap->__acpi_init_gtm) == 0)
99 ap->pflags |= ATA_PFLAG_INIT_GTM_VALID;
102 static void ata_acpi_handle_hotplug(struct ata_port *ap, struct kobject *kobj,
103 u32 event)
105 char event_string[12];
106 char *envp[] = { event_string, NULL };
107 struct ata_eh_info *ehi = &ap->link.eh_info;
109 if (event == 0 || event == 1) {
110 unsigned long flags;
111 spin_lock_irqsave(ap->lock, flags);
112 ata_ehi_clear_desc(ehi);
113 ata_ehi_push_desc(ehi, "ACPI event");
114 ata_ehi_hotplugged(ehi);
115 ata_port_freeze(ap);
116 spin_unlock_irqrestore(ap->lock, flags);
119 if (kobj) {
120 sprintf(event_string, "BAY_EVENT=%d", event);
121 kobject_uevent_env(kobj, KOBJ_CHANGE, envp);
125 static void ata_acpi_dev_notify(acpi_handle handle, u32 event, void *data)
127 struct ata_device *dev = data;
128 struct kobject *kobj = NULL;
130 if (dev->sdev)
131 kobj = &dev->sdev->sdev_gendev.kobj;
133 ata_acpi_handle_hotplug(dev->link->ap, kobj, event);
136 static void ata_acpi_ap_notify(acpi_handle handle, u32 event, void *data)
138 struct ata_port *ap = data;
140 ata_acpi_handle_hotplug(ap, &ap->dev->kobj, event);
144 * ata_acpi_associate - associate ATA host with ACPI objects
145 * @host: target ATA host
147 * Look up ACPI objects associated with @host and initialize
148 * acpi_handle fields of @host, its ports and devices accordingly.
150 * LOCKING:
151 * EH context.
153 * RETURNS:
154 * 0 on success, -errno on failure.
156 void ata_acpi_associate(struct ata_host *host)
158 int i, j;
160 if (!is_pci_dev(host->dev) || libata_noacpi)
161 return;
163 host->acpi_handle = DEVICE_ACPI_HANDLE(host->dev);
164 if (!host->acpi_handle)
165 return;
167 for (i = 0; i < host->n_ports; i++) {
168 struct ata_port *ap = host->ports[i];
170 if (host->ports[0]->flags & ATA_FLAG_ACPI_SATA)
171 ata_acpi_associate_sata_port(ap);
172 else
173 ata_acpi_associate_ide_port(ap);
175 if (ap->acpi_handle)
176 acpi_install_notify_handler (ap->acpi_handle,
177 ACPI_SYSTEM_NOTIFY,
178 ata_acpi_ap_notify,
179 ap);
181 for (j = 0; j < ata_link_max_devices(&ap->link); j++) {
182 struct ata_device *dev = &ap->link.device[j];
184 if (dev->acpi_handle)
185 acpi_install_notify_handler (dev->acpi_handle,
186 ACPI_SYSTEM_NOTIFY,
187 ata_acpi_dev_notify,
188 dev);
194 * ata_acpi_dissociate - dissociate ATA host from ACPI objects
195 * @host: target ATA host
197 * This function is called during driver detach after the whole host
198 * is shut down.
200 * LOCKING:
201 * EH context.
203 void ata_acpi_dissociate(struct ata_host *host)
205 int i;
207 /* Restore initial _GTM values so that driver which attaches
208 * afterward can use them too.
210 for (i = 0; i < host->n_ports; i++) {
211 struct ata_port *ap = host->ports[i];
212 const struct ata_acpi_gtm *gtm = ata_acpi_init_gtm(ap);
214 if (ap->acpi_handle && gtm)
215 ata_acpi_stm(ap, gtm);
220 * ata_acpi_gtm - execute _GTM
221 * @ap: target ATA port
222 * @gtm: out parameter for _GTM result
224 * Evaluate _GTM and store the result in @gtm.
226 * LOCKING:
227 * EH context.
229 * RETURNS:
230 * 0 on success, -ENOENT if _GTM doesn't exist, -errno on failure.
232 int ata_acpi_gtm(struct ata_port *ap, struct ata_acpi_gtm *gtm)
234 struct acpi_buffer output = { .length = ACPI_ALLOCATE_BUFFER };
235 union acpi_object *out_obj;
236 acpi_status status;
237 int rc = 0;
239 status = acpi_evaluate_object(ap->acpi_handle, "_GTM", NULL, &output);
241 rc = -ENOENT;
242 if (status == AE_NOT_FOUND)
243 goto out_free;
245 rc = -EINVAL;
246 if (ACPI_FAILURE(status)) {
247 ata_port_printk(ap, KERN_ERR,
248 "ACPI get timing mode failed (AE 0x%x)\n",
249 status);
250 goto out_free;
253 out_obj = output.pointer;
254 if (out_obj->type != ACPI_TYPE_BUFFER) {
255 ata_port_printk(ap, KERN_WARNING,
256 "_GTM returned unexpected object type 0x%x\n",
257 out_obj->type);
259 goto out_free;
262 if (out_obj->buffer.length != sizeof(struct ata_acpi_gtm)) {
263 ata_port_printk(ap, KERN_ERR,
264 "_GTM returned invalid length %d\n",
265 out_obj->buffer.length);
266 goto out_free;
269 memcpy(gtm, out_obj->buffer.pointer, sizeof(struct ata_acpi_gtm));
270 rc = 0;
271 out_free:
272 kfree(output.pointer);
273 return rc;
276 EXPORT_SYMBOL_GPL(ata_acpi_gtm);
279 * ata_acpi_stm - execute _STM
280 * @ap: target ATA port
281 * @stm: timing parameter to _STM
283 * Evaluate _STM with timing parameter @stm.
285 * LOCKING:
286 * EH context.
288 * RETURNS:
289 * 0 on success, -ENOENT if _STM doesn't exist, -errno on failure.
291 int ata_acpi_stm(struct ata_port *ap, const struct ata_acpi_gtm *stm)
293 acpi_status status;
294 struct ata_acpi_gtm stm_buf = *stm;
295 struct acpi_object_list input;
296 union acpi_object in_params[3];
298 in_params[0].type = ACPI_TYPE_BUFFER;
299 in_params[0].buffer.length = sizeof(struct ata_acpi_gtm);
300 in_params[0].buffer.pointer = (u8 *)&stm_buf;
301 /* Buffers for id may need byteswapping ? */
302 in_params[1].type = ACPI_TYPE_BUFFER;
303 in_params[1].buffer.length = 512;
304 in_params[1].buffer.pointer = (u8 *)ap->link.device[0].id;
305 in_params[2].type = ACPI_TYPE_BUFFER;
306 in_params[2].buffer.length = 512;
307 in_params[2].buffer.pointer = (u8 *)ap->link.device[1].id;
309 input.count = 3;
310 input.pointer = in_params;
312 status = acpi_evaluate_object(ap->acpi_handle, "_STM", &input, NULL);
314 if (status == AE_NOT_FOUND)
315 return -ENOENT;
316 if (ACPI_FAILURE(status)) {
317 ata_port_printk(ap, KERN_ERR,
318 "ACPI set timing mode failed (status=0x%x)\n", status);
319 return -EINVAL;
321 return 0;
324 EXPORT_SYMBOL_GPL(ata_acpi_stm);
327 * ata_dev_get_GTF - get the drive bootup default taskfile settings
328 * @dev: target ATA device
329 * @gtf: output parameter for buffer containing _GTF taskfile arrays
330 * @ptr_to_free: pointer which should be freed
332 * This applies to both PATA and SATA drives.
334 * The _GTF method has no input parameters.
335 * It returns a variable number of register set values (registers
336 * hex 1F1..1F7, taskfiles).
337 * The <variable number> is not known in advance, so have ACPI-CA
338 * allocate the buffer as needed and return it, then free it later.
340 * LOCKING:
341 * EH context.
343 * RETURNS:
344 * Number of taskfiles on success, 0 if _GTF doesn't exist or doesn't
345 * contain valid data.
347 static int ata_dev_get_GTF(struct ata_device *dev, struct ata_acpi_gtf **gtf,
348 void **ptr_to_free)
350 struct ata_port *ap = dev->link->ap;
351 acpi_status status;
352 struct acpi_buffer output;
353 union acpi_object *out_obj;
354 int rc = 0;
356 /* set up output buffer */
357 output.length = ACPI_ALLOCATE_BUFFER;
358 output.pointer = NULL; /* ACPI-CA sets this; save/free it later */
360 if (ata_msg_probe(ap))
361 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER: port#: %d\n",
362 __FUNCTION__, ap->port_no);
364 /* _GTF has no input parameters */
365 status = acpi_evaluate_object(dev->acpi_handle, "_GTF", NULL, &output);
367 if (ACPI_FAILURE(status)) {
368 if (status != AE_NOT_FOUND) {
369 ata_dev_printk(dev, KERN_WARNING,
370 "_GTF evaluation failed (AE 0x%x)\n",
371 status);
373 goto out_free;
376 if (!output.length || !output.pointer) {
377 if (ata_msg_probe(ap))
378 ata_dev_printk(dev, KERN_DEBUG, "%s: Run _GTF: "
379 "length or ptr is NULL (0x%llx, 0x%p)\n",
380 __FUNCTION__,
381 (unsigned long long)output.length,
382 output.pointer);
383 goto out_free;
386 out_obj = output.pointer;
387 if (out_obj->type != ACPI_TYPE_BUFFER) {
388 ata_dev_printk(dev, KERN_WARNING,
389 "_GTF unexpected object type 0x%x\n",
390 out_obj->type);
391 goto out_free;
394 if (out_obj->buffer.length % REGS_PER_GTF) {
395 ata_dev_printk(dev, KERN_WARNING,
396 "unexpected _GTF length (%d)\n",
397 out_obj->buffer.length);
398 goto out_free;
401 *ptr_to_free = out_obj;
402 *gtf = (void *)out_obj->buffer.pointer;
403 rc = out_obj->buffer.length / REGS_PER_GTF;
405 if (ata_msg_probe(ap))
406 ata_dev_printk(dev, KERN_DEBUG, "%s: returning "
407 "gtf=%p, gtf_count=%d, ptr_to_free=%p\n",
408 __FUNCTION__, *gtf, rc, *ptr_to_free);
409 return rc;
411 out_free:
412 kfree(output.pointer);
413 return rc;
417 * ata_acpi_cbl_80wire - Check for 80 wire cable
418 * @ap: Port to check
420 * Return 1 if the ACPI mode data for this port indicates the BIOS selected
421 * an 80wire mode.
424 int ata_acpi_cbl_80wire(struct ata_port *ap)
426 const struct ata_acpi_gtm *gtm = ata_acpi_init_gtm(ap);
427 int valid = 0;
429 if (!gtm)
430 return 0;
432 /* Split timing, DMA enabled */
433 if ((gtm->flags & 0x11) == 0x11 && gtm->drive[0].dma < 55)
434 valid |= 1;
435 if ((gtm->flags & 0x14) == 0x14 && gtm->drive[1].dma < 55)
436 valid |= 2;
437 /* Shared timing, DMA enabled */
438 if ((gtm->flags & 0x11) == 0x01 && gtm->drive[0].dma < 55)
439 valid |= 1;
440 if ((gtm->flags & 0x14) == 0x04 && gtm->drive[0].dma < 55)
441 valid |= 2;
443 /* Drive check */
444 if ((valid & 1) && ata_dev_enabled(&ap->link.device[0]))
445 return 1;
446 if ((valid & 2) && ata_dev_enabled(&ap->link.device[1]))
447 return 1;
448 return 0;
451 EXPORT_SYMBOL_GPL(ata_acpi_cbl_80wire);
454 * taskfile_load_raw - send taskfile registers to host controller
455 * @dev: target ATA device
456 * @gtf: raw ATA taskfile register set (0x1f1 - 0x1f7)
458 * Outputs ATA taskfile to standard ATA host controller using MMIO
459 * or PIO as indicated by the ATA_FLAG_MMIO flag.
460 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
461 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
462 * hob_lbal, hob_lbam, and hob_lbah.
464 * This function waits for idle (!BUSY and !DRQ) after writing
465 * registers. If the control register has a new value, this
466 * function also waits for idle after writing control and before
467 * writing the remaining registers.
469 * LOCKING:
470 * EH context.
472 * RETURNS:
473 * 0 on success, -errno on failure.
475 static int taskfile_load_raw(struct ata_device *dev,
476 const struct ata_acpi_gtf *gtf)
478 struct ata_port *ap = dev->link->ap;
479 struct ata_taskfile tf, rtf;
480 unsigned int err_mask;
482 if ((gtf->tf[0] == 0) && (gtf->tf[1] == 0) && (gtf->tf[2] == 0)
483 && (gtf->tf[3] == 0) && (gtf->tf[4] == 0) && (gtf->tf[5] == 0)
484 && (gtf->tf[6] == 0))
485 return 0;
487 ata_tf_init(dev, &tf);
489 /* convert gtf to tf */
490 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; /* TBD */
491 tf.protocol = ATA_PROT_NODATA;
492 tf.feature = gtf->tf[0]; /* 0x1f1 */
493 tf.nsect = gtf->tf[1]; /* 0x1f2 */
494 tf.lbal = gtf->tf[2]; /* 0x1f3 */
495 tf.lbam = gtf->tf[3]; /* 0x1f4 */
496 tf.lbah = gtf->tf[4]; /* 0x1f5 */
497 tf.device = gtf->tf[5]; /* 0x1f6 */
498 tf.command = gtf->tf[6]; /* 0x1f7 */
500 if (ata_msg_probe(ap))
501 ata_dev_printk(dev, KERN_DEBUG, "executing ACPI cmd "
502 "%02x/%02x:%02x:%02x:%02x:%02x:%02x\n",
503 tf.command, tf.feature, tf.nsect,
504 tf.lbal, tf.lbam, tf.lbah, tf.device);
506 rtf = tf;
507 err_mask = ata_exec_internal(dev, &rtf, NULL, DMA_NONE, NULL, 0, 0);
508 if (err_mask) {
509 ata_dev_printk(dev, KERN_ERR,
510 "ACPI cmd %02x/%02x:%02x:%02x:%02x:%02x:%02x failed "
511 "(Emask=0x%x Stat=0x%02x Err=0x%02x)\n",
512 tf.command, tf.feature, tf.nsect, tf.lbal, tf.lbam,
513 tf.lbah, tf.device, err_mask, rtf.command, rtf.feature);
514 return -EIO;
517 return 0;
521 * ata_acpi_exec_tfs - get then write drive taskfile settings
522 * @dev: target ATA device
524 * Evaluate _GTF and excute returned taskfiles.
526 * LOCKING:
527 * EH context.
529 * RETURNS:
530 * Number of executed taskfiles on success, 0 if _GTF doesn't exist or
531 * doesn't contain valid data. -errno on other errors.
533 static int ata_acpi_exec_tfs(struct ata_device *dev)
535 struct ata_acpi_gtf *gtf = NULL;
536 void *ptr_to_free = NULL;
537 int gtf_count, i, rc;
539 /* get taskfiles */
540 gtf_count = ata_dev_get_GTF(dev, &gtf, &ptr_to_free);
542 /* execute them */
543 for (i = 0, rc = 0; i < gtf_count; i++) {
544 int tmp;
546 /* ACPI errors are eventually ignored. Run till the
547 * end even after errors.
549 tmp = taskfile_load_raw(dev, gtf++);
550 if (!rc)
551 rc = tmp;
554 kfree(ptr_to_free);
556 if (rc == 0)
557 return gtf_count;
558 return rc;
562 * ata_acpi_push_id - send Identify data to drive
563 * @dev: target ATA device
565 * _SDD ACPI object: for SATA mode only
566 * Must be after Identify (Packet) Device -- uses its data
567 * ATM this function never returns a failure. It is an optional
568 * method and if it fails for whatever reason, we should still
569 * just keep going.
571 * LOCKING:
572 * EH context.
574 * RETURNS:
575 * 0 on success, -errno on failure.
577 static int ata_acpi_push_id(struct ata_device *dev)
579 struct ata_port *ap = dev->link->ap;
580 int err;
581 acpi_status status;
582 struct acpi_object_list input;
583 union acpi_object in_params[1];
585 if (ata_msg_probe(ap))
586 ata_dev_printk(dev, KERN_DEBUG, "%s: ix = %d, port#: %d\n",
587 __FUNCTION__, dev->devno, ap->port_no);
589 /* Give the drive Identify data to the drive via the _SDD method */
590 /* _SDD: set up input parameters */
591 input.count = 1;
592 input.pointer = in_params;
593 in_params[0].type = ACPI_TYPE_BUFFER;
594 in_params[0].buffer.length = sizeof(dev->id[0]) * ATA_ID_WORDS;
595 in_params[0].buffer.pointer = (u8 *)dev->id;
596 /* Output buffer: _SDD has no output */
598 /* It's OK for _SDD to be missing too. */
599 swap_buf_le16(dev->id, ATA_ID_WORDS);
600 status = acpi_evaluate_object(dev->acpi_handle, "_SDD", &input, NULL);
601 swap_buf_le16(dev->id, ATA_ID_WORDS);
603 err = ACPI_FAILURE(status) ? -EIO : 0;
604 if (err < 0)
605 ata_dev_printk(dev, KERN_WARNING,
606 "ACPI _SDD failed (AE 0x%x)\n", status);
608 return err;
612 * ata_acpi_on_suspend - ATA ACPI hook called on suspend
613 * @ap: target ATA port
615 * This function is called when @ap is about to be suspended. All
616 * devices are already put to sleep but the port_suspend() callback
617 * hasn't been executed yet. Error return from this function aborts
618 * suspend.
620 * LOCKING:
621 * EH context.
623 * RETURNS:
624 * 0 on success, -errno on failure.
626 int ata_acpi_on_suspend(struct ata_port *ap)
628 /* nada */
629 return 0;
633 * ata_acpi_on_resume - ATA ACPI hook called on resume
634 * @ap: target ATA port
636 * This function is called when @ap is resumed - right after port
637 * itself is resumed but before any EH action is taken.
639 * LOCKING:
640 * EH context.
642 void ata_acpi_on_resume(struct ata_port *ap)
644 const struct ata_acpi_gtm *gtm = ata_acpi_init_gtm(ap);
645 struct ata_device *dev;
647 /* restore timing parameters */
648 if (ap->acpi_handle && gtm)
649 ata_acpi_stm(ap, gtm);
651 /* schedule _GTF */
652 ata_link_for_each_dev(dev, &ap->link)
653 dev->flags |= ATA_DFLAG_ACPI_PENDING;
657 * ata_acpi_on_devcfg - ATA ACPI hook called on device donfiguration
658 * @dev: target ATA device
660 * This function is called when @dev is about to be configured.
661 * IDENTIFY data might have been modified after this hook is run.
663 * LOCKING:
664 * EH context.
666 * RETURNS:
667 * Positive number if IDENTIFY data needs to be refreshed, 0 if not,
668 * -errno on failure.
670 int ata_acpi_on_devcfg(struct ata_device *dev)
672 struct ata_port *ap = dev->link->ap;
673 struct ata_eh_context *ehc = &ap->link.eh_context;
674 int acpi_sata = ap->flags & ATA_FLAG_ACPI_SATA;
675 int rc;
677 if (!dev->acpi_handle)
678 return 0;
680 /* do we need to do _GTF? */
681 if (!(dev->flags & ATA_DFLAG_ACPI_PENDING) &&
682 !(acpi_sata && (ehc->i.flags & ATA_EHI_DID_HARDRESET)))
683 return 0;
685 /* do _SDD if SATA */
686 if (acpi_sata) {
687 rc = ata_acpi_push_id(dev);
688 if (rc)
689 goto acpi_err;
692 /* do _GTF */
693 rc = ata_acpi_exec_tfs(dev);
694 if (rc < 0)
695 goto acpi_err;
697 dev->flags &= ~ATA_DFLAG_ACPI_PENDING;
699 /* refresh IDENTIFY page if any _GTF command has been executed */
700 if (rc > 0) {
701 rc = ata_dev_reread_id(dev, 0);
702 if (rc < 0) {
703 ata_dev_printk(dev, KERN_ERR, "failed to IDENTIFY "
704 "after ACPI commands\n");
705 return rc;
709 return 0;
711 acpi_err:
712 /* let EH retry on the first failure, disable ACPI on the second */
713 if (dev->flags & ATA_DFLAG_ACPI_FAILED) {
714 ata_dev_printk(dev, KERN_WARNING, "ACPI on devcfg failed the "
715 "second time, disabling (errno=%d)\n", rc);
717 dev->acpi_handle = NULL;
719 /* if port is working, request IDENTIFY reload and continue */
720 if (!(ap->pflags & ATA_PFLAG_FROZEN))
721 rc = 1;
723 dev->flags |= ATA_DFLAG_ACPI_FAILED;
724 return rc;
728 * ata_acpi_on_disable - ATA ACPI hook called when a device is disabled
729 * @dev: target ATA device
731 * This function is called when @dev is about to be disabled.
733 * LOCKING:
734 * EH context.
736 void ata_acpi_on_disable(struct ata_device *dev)