blob: 97727be7e158bba16884145f733252593a8097dc [file] [log] [blame]
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -07001/*
2 * libata-acpi.c
3 * Provides ACPI support for PATA/SATA.
4 *
5 * Copyright (C) 2006 Intel Corp.
6 * Copyright (C) 2006 Randy Dunlap
7 */
8
Tejun Heo3264a8d2007-12-15 15:05:06 +09009#include <linux/module.h>
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070010#include <linux/ata.h>
11#include <linux/delay.h>
12#include <linux/device.h>
13#include <linux/errno.h>
14#include <linux/kernel.h>
15#include <linux/acpi.h>
16#include <linux/libata.h>
17#include <linux/pci.h>
Matthew Garrett237d8442007-10-03 01:24:16 +010018#include <scsi/scsi_device.h>
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070019#include "libata.h"
20
21#include <acpi/acpi_bus.h>
22#include <acpi/acnames.h>
23#include <acpi/acnamesp.h>
24#include <acpi/acparser.h>
25#include <acpi/acexcep.h>
26#include <acpi/acmacros.h>
27#include <acpi/actypes.h>
28
Tejun Heo3264a8d2007-12-15 15:05:06 +090029enum {
30 ATA_ACPI_FILTER_SETXFER = 1 << 0,
31 ATA_ACPI_FILTER_LOCK = 1 << 1,
Tejun Heob3449912008-07-06 23:15:03 +090032 ATA_ACPI_FILTER_DIPM = 1 << 2,
Tejun Heo3264a8d2007-12-15 15:05:06 +090033
34 ATA_ACPI_FILTER_DEFAULT = ATA_ACPI_FILTER_SETXFER |
Tejun Heob3449912008-07-06 23:15:03 +090035 ATA_ACPI_FILTER_LOCK |
36 ATA_ACPI_FILTER_DIPM,
Tejun Heo3264a8d2007-12-15 15:05:06 +090037};
38
39static unsigned int ata_acpi_gtf_filter = ATA_ACPI_FILTER_DEFAULT;
40module_param_named(acpi_gtf_filter, ata_acpi_gtf_filter, int, 0644);
Tejun Heob3449912008-07-06 23:15:03 +090041MODULE_PARM_DESC(acpi_gtf_filter, "filter mask for ACPI _GTF commands, set to filter out (0x1=set xfermode, 0x2=lock/freeze lock, 0x4=DIPM)");
Tejun Heo3264a8d2007-12-15 15:05:06 +090042
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070043#define NO_PORT_MULT 0xffff
Jeff Garzik2dcb4072007-10-19 06:42:56 -040044#define SATA_ADR(root, pmp) (((root) << 16) | (pmp))
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070045
46#define REGS_PER_GTF 7
Tejun Heo4700c4b2007-05-15 03:28:16 +090047struct ata_acpi_gtf {
48 u8 tf[REGS_PER_GTF]; /* regs. 0x1f1 - 0x1f7 */
49} __packed;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070050
Alan Coxca426632007-03-08 23:13:50 +000051/*
52 * Helper - belongs in the PCI layer somewhere eventually
53 */
54static int is_pci_dev(struct device *dev)
55{
56 return (dev->bus == &pci_bus_type);
57}
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070058
Tejun Heo398e0782007-12-15 15:05:03 +090059static void ata_acpi_clear_gtf(struct ata_device *dev)
60{
61 kfree(dev->gtf_cache);
62 dev->gtf_cache = NULL;
63}
64
Tejun Heod0df8b5d2007-09-23 13:19:54 +090065/**
66 * ata_acpi_associate_sata_port - associate SATA port with ACPI objects
67 * @ap: target SATA port
68 *
69 * Look up ACPI objects associated with @ap and initialize acpi_handle
70 * fields of @ap, the port and devices accordingly.
71 *
72 * LOCKING:
73 * EH context.
74 *
75 * RETURNS:
76 * 0 on success, -errno on failure.
77 */
78void ata_acpi_associate_sata_port(struct ata_port *ap)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070079{
Tejun Heod0df8b5d2007-09-23 13:19:54 +090080 WARN_ON(!(ap->flags & ATA_FLAG_ACPI_SATA));
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070081
Tejun Heo071f44b2008-04-07 22:47:22 +090082 if (!sata_pmp_attached(ap)) {
Tejun Heod0df8b5d2007-09-23 13:19:54 +090083 acpi_integer adr = SATA_ADR(ap->port_no, NO_PORT_MULT);
84
85 ap->link.device->acpi_handle =
86 acpi_get_child(ap->host->acpi_handle, adr);
87 } else {
88 struct ata_link *link;
89
90 ap->link.device->acpi_handle = NULL;
91
92 ata_port_for_each_link(link, ap) {
93 acpi_integer adr = SATA_ADR(ap->port_no, link->pmp);
94
95 link->device->acpi_handle =
96 acpi_get_child(ap->host->acpi_handle, adr);
97 }
98 }
Tejun Heofafbae82007-05-15 03:28:16 +090099}
Alan Coxca426632007-03-08 23:13:50 +0000100
Tejun Heofafbae82007-05-15 03:28:16 +0900101static void ata_acpi_associate_ide_port(struct ata_port *ap)
102{
103 int max_devices, i;
104
105 ap->acpi_handle = acpi_get_child(ap->host->acpi_handle, ap->port_no);
106 if (!ap->acpi_handle)
107 return;
108
109 max_devices = 1;
110 if (ap->flags & ATA_FLAG_SLAVE_POSS)
111 max_devices++;
112
113 for (i = 0; i < max_devices; i++) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900114 struct ata_device *dev = &ap->link.device[i];
Tejun Heofafbae82007-05-15 03:28:16 +0900115
116 dev->acpi_handle = acpi_get_child(ap->acpi_handle, i);
117 }
Tejun Heoc05e6ff2007-12-15 15:05:02 +0900118
119 if (ata_acpi_gtm(ap, &ap->__acpi_init_gtm) == 0)
120 ap->pflags |= ATA_PFLAG_INIT_GTM_VALID;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700121}
122
Holger Macht664d0802008-06-03 20:27:59 +0200123/* @ap and @dev are the same as ata_acpi_handle_hotplug() */
124static void ata_acpi_detach_device(struct ata_port *ap, struct ata_device *dev)
125{
126 if (dev)
127 dev->flags |= ATA_DFLAG_DETACH;
128 else {
129 struct ata_link *tlink;
130 struct ata_device *tdev;
131
132 ata_port_for_each_link(tlink, ap)
133 ata_link_for_each_dev(tdev, tlink)
134 tdev->flags |= ATA_DFLAG_DETACH;
135 }
136
137 ata_port_schedule_eh(ap);
138}
139
140/**
141 * ata_acpi_handle_hotplug - ACPI event handler backend
142 * @ap: ATA port ACPI event occurred
143 * @dev: ATA device ACPI event occurred (can be NULL)
144 * @event: ACPI event which occurred
Holger Macht664d0802008-06-03 20:27:59 +0200145 *
146 * All ACPI bay / device realted events end up in this function. If
147 * the event is port-wide @dev is NULL. If the event is specific to a
148 * device, @dev points to it.
149 *
150 * Hotplug (as opposed to unplug) notification is always handled as
151 * port-wide while unplug only kills the target device on device-wide
152 * event.
153 *
154 * LOCKING:
155 * ACPI notify handler context. May sleep.
156 */
157static void ata_acpi_handle_hotplug(struct ata_port *ap, struct ata_device *dev,
Shaohua Lif730ae12008-08-28 10:05:45 +0800158 u32 event)
Matthew Garrett237d8442007-10-03 01:24:16 +0100159{
Holger Macht664d0802008-06-03 20:27:59 +0200160 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo233f1122008-03-12 14:24:43 +0900161 int wait = 0;
162 unsigned long flags;
Shaohua Lif730ae12008-08-28 10:05:45 +0800163 acpi_handle handle;
Jeff Garzikc85665f2008-05-19 17:56:10 -0400164
Shaohua Lif730ae12008-08-28 10:05:45 +0800165 if (dev)
Matthew Garrettae6c23c2008-05-19 17:29:34 +0100166 handle = dev->acpi_handle;
Shaohua Lif730ae12008-08-28 10:05:45 +0800167 else
Matthew Garrettae6c23c2008-05-19 17:29:34 +0100168 handle = ap->acpi_handle;
Zhang Rui3c1e3892008-07-11 09:42:03 -0400169
Holger Macht664d0802008-06-03 20:27:59 +0200170 spin_lock_irqsave(ap->lock, flags);
Shaohua Lif730ae12008-08-28 10:05:45 +0800171 /*
172 * When dock driver calls into the routine, it will always use
173 * ACPI_NOTIFY_BUS_CHECK/ACPI_NOTIFY_DEVICE_CHECK for add and
174 * ACPI_NOTIFY_EJECT_REQUEST for remove
175 */
Tejun Heo233f1122008-03-12 14:24:43 +0900176 switch (event) {
177 case ACPI_NOTIFY_BUS_CHECK:
178 case ACPI_NOTIFY_DEVICE_CHECK:
179 ata_ehi_push_desc(ehi, "ACPI event");
Jeff Garzikc85665f2008-05-19 17:56:10 -0400180
Shaohua Lif730ae12008-08-28 10:05:45 +0800181 ata_ehi_hotplugged(ehi);
182 ata_port_freeze(ap);
Holger Macht664d0802008-06-03 20:27:59 +0200183 break;
184 case ACPI_NOTIFY_EJECT_REQUEST:
185 ata_ehi_push_desc(ehi, "ACPI event");
186
Holger Macht664d0802008-06-03 20:27:59 +0200187 ata_acpi_detach_device(ap, dev);
188 wait = 1;
189 break;
Matthew Garrett237d8442007-10-03 01:24:16 +0100190 }
191
Matthew Garrettae6c23c2008-05-19 17:29:34 +0100192 spin_unlock_irqrestore(ap->lock, flags);
193
Shaohua Lif730ae12008-08-28 10:05:45 +0800194 if (wait)
Matthew Garrettae6c23c2008-05-19 17:29:34 +0100195 ata_port_wait_eh(ap);
Holger Macht664d0802008-06-03 20:27:59 +0200196}
197
198static void ata_acpi_dev_notify_dock(acpi_handle handle, u32 event, void *data)
199{
200 struct ata_device *dev = data;
201
Shaohua Lif730ae12008-08-28 10:05:45 +0800202 ata_acpi_handle_hotplug(dev->link->ap, dev, event);
Holger Macht664d0802008-06-03 20:27:59 +0200203}
204
205static void ata_acpi_ap_notify_dock(acpi_handle handle, u32 event, void *data)
206{
207 struct ata_port *ap = data;
208
Shaohua Lif730ae12008-08-28 10:05:45 +0800209 ata_acpi_handle_hotplug(ap, NULL, event);
Matthew Garrett237d8442007-10-03 01:24:16 +0100210}
211
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700212/**
Tejun Heofafbae82007-05-15 03:28:16 +0900213 * ata_acpi_associate - associate ATA host with ACPI objects
214 * @host: target ATA host
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700215 *
Tejun Heofafbae82007-05-15 03:28:16 +0900216 * Look up ACPI objects associated with @host and initialize
217 * acpi_handle fields of @host, its ports and devices accordingly.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700218 *
Tejun Heofafbae82007-05-15 03:28:16 +0900219 * LOCKING:
220 * EH context.
221 *
222 * RETURNS:
223 * 0 on success, -errno on failure.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700224 */
Tejun Heofafbae82007-05-15 03:28:16 +0900225void ata_acpi_associate(struct ata_host *host)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700226{
Matthew Garrett237d8442007-10-03 01:24:16 +0100227 int i, j;
Alan Coxca426632007-03-08 23:13:50 +0000228
Tejun Heofafbae82007-05-15 03:28:16 +0900229 if (!is_pci_dev(host->dev) || libata_noacpi)
230 return;
Alan Coxca426632007-03-08 23:13:50 +0000231
Tejun Heofafbae82007-05-15 03:28:16 +0900232 host->acpi_handle = DEVICE_ACPI_HANDLE(host->dev);
233 if (!host->acpi_handle)
234 return;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700235
Tejun Heofafbae82007-05-15 03:28:16 +0900236 for (i = 0; i < host->n_ports; i++) {
237 struct ata_port *ap = host->ports[i];
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700238
Tejun Heofafbae82007-05-15 03:28:16 +0900239 if (host->ports[0]->flags & ATA_FLAG_ACPI_SATA)
240 ata_acpi_associate_sata_port(ap);
241 else
242 ata_acpi_associate_ide_port(ap);
Matthew Garrett237d8442007-10-03 01:24:16 +0100243
Tejun Heo233f1122008-03-12 14:24:43 +0900244 if (ap->acpi_handle) {
Tejun Heo233f1122008-03-12 14:24:43 +0900245 /* we might be on a docking station */
246 register_hotplug_dock_device(ap->acpi_handle,
Holger Macht664d0802008-06-03 20:27:59 +0200247 ata_acpi_ap_notify_dock, ap);
Tejun Heo233f1122008-03-12 14:24:43 +0900248 }
Matthew Garrett237d8442007-10-03 01:24:16 +0100249
250 for (j = 0; j < ata_link_max_devices(&ap->link); j++) {
251 struct ata_device *dev = &ap->link.device[j];
252
Tejun Heo233f1122008-03-12 14:24:43 +0900253 if (dev->acpi_handle) {
Tejun Heo233f1122008-03-12 14:24:43 +0900254 /* we might be on a docking station */
255 register_hotplug_dock_device(dev->acpi_handle,
Holger Macht664d0802008-06-03 20:27:59 +0200256 ata_acpi_dev_notify_dock, dev);
Tejun Heo233f1122008-03-12 14:24:43 +0900257 }
Matthew Garrett237d8442007-10-03 01:24:16 +0100258 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700259 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700260}
261
262/**
Tejun Heo562f0c22007-12-15 15:05:01 +0900263 * ata_acpi_dissociate - dissociate ATA host from ACPI objects
264 * @host: target ATA host
265 *
266 * This function is called during driver detach after the whole host
267 * is shut down.
268 *
269 * LOCKING:
270 * EH context.
271 */
272void ata_acpi_dissociate(struct ata_host *host)
273{
Tejun Heoc05e6ff2007-12-15 15:05:02 +0900274 int i;
275
276 /* Restore initial _GTM values so that driver which attaches
277 * afterward can use them too.
278 */
279 for (i = 0; i < host->n_ports; i++) {
280 struct ata_port *ap = host->ports[i];
281 const struct ata_acpi_gtm *gtm = ata_acpi_init_gtm(ap);
282
283 if (ap->acpi_handle && gtm)
284 ata_acpi_stm(ap, gtm);
285 }
Tejun Heo562f0c22007-12-15 15:05:01 +0900286}
287
288/**
Tejun Heo64578a32007-05-15 03:28:16 +0900289 * ata_acpi_gtm - execute _GTM
290 * @ap: target ATA port
291 * @gtm: out parameter for _GTM result
292 *
293 * Evaluate _GTM and store the result in @gtm.
294 *
295 * LOCKING:
296 * EH context.
297 *
298 * RETURNS:
299 * 0 on success, -ENOENT if _GTM doesn't exist, -errno on failure.
300 */
Tejun Heo0d02f0b2007-12-15 15:04:57 +0900301int ata_acpi_gtm(struct ata_port *ap, struct ata_acpi_gtm *gtm)
Tejun Heo64578a32007-05-15 03:28:16 +0900302{
303 struct acpi_buffer output = { .length = ACPI_ALLOCATE_BUFFER };
304 union acpi_object *out_obj;
305 acpi_status status;
306 int rc = 0;
307
308 status = acpi_evaluate_object(ap->acpi_handle, "_GTM", NULL, &output);
309
310 rc = -ENOENT;
311 if (status == AE_NOT_FOUND)
312 goto out_free;
313
314 rc = -EINVAL;
315 if (ACPI_FAILURE(status)) {
316 ata_port_printk(ap, KERN_ERR,
317 "ACPI get timing mode failed (AE 0x%x)\n",
318 status);
319 goto out_free;
320 }
321
322 out_obj = output.pointer;
323 if (out_obj->type != ACPI_TYPE_BUFFER) {
324 ata_port_printk(ap, KERN_WARNING,
325 "_GTM returned unexpected object type 0x%x\n",
326 out_obj->type);
327
328 goto out_free;
329 }
330
331 if (out_obj->buffer.length != sizeof(struct ata_acpi_gtm)) {
332 ata_port_printk(ap, KERN_ERR,
333 "_GTM returned invalid length %d\n",
334 out_obj->buffer.length);
335 goto out_free;
336 }
337
338 memcpy(gtm, out_obj->buffer.pointer, sizeof(struct ata_acpi_gtm));
339 rc = 0;
340 out_free:
341 kfree(output.pointer);
342 return rc;
343}
344
Alan Coxbadff032007-10-04 21:28:18 +0100345EXPORT_SYMBOL_GPL(ata_acpi_gtm);
346
Tejun Heo64578a32007-05-15 03:28:16 +0900347/**
348 * ata_acpi_stm - execute _STM
349 * @ap: target ATA port
350 * @stm: timing parameter to _STM
351 *
352 * Evaluate _STM with timing parameter @stm.
353 *
354 * LOCKING:
355 * EH context.
356 *
357 * RETURNS:
358 * 0 on success, -ENOENT if _STM doesn't exist, -errno on failure.
359 */
Tejun Heo0d02f0b2007-12-15 15:04:57 +0900360int ata_acpi_stm(struct ata_port *ap, const struct ata_acpi_gtm *stm)
Tejun Heo64578a32007-05-15 03:28:16 +0900361{
362 acpi_status status;
Tejun Heo0d02f0b2007-12-15 15:04:57 +0900363 struct ata_acpi_gtm stm_buf = *stm;
Tejun Heo64578a32007-05-15 03:28:16 +0900364 struct acpi_object_list input;
365 union acpi_object in_params[3];
366
367 in_params[0].type = ACPI_TYPE_BUFFER;
368 in_params[0].buffer.length = sizeof(struct ata_acpi_gtm);
Tejun Heo0d02f0b2007-12-15 15:04:57 +0900369 in_params[0].buffer.pointer = (u8 *)&stm_buf;
Tejun Heo64578a32007-05-15 03:28:16 +0900370 /* Buffers for id may need byteswapping ? */
371 in_params[1].type = ACPI_TYPE_BUFFER;
372 in_params[1].buffer.length = 512;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900373 in_params[1].buffer.pointer = (u8 *)ap->link.device[0].id;
Tejun Heo64578a32007-05-15 03:28:16 +0900374 in_params[2].type = ACPI_TYPE_BUFFER;
375 in_params[2].buffer.length = 512;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900376 in_params[2].buffer.pointer = (u8 *)ap->link.device[1].id;
Tejun Heo64578a32007-05-15 03:28:16 +0900377
378 input.count = 3;
379 input.pointer = in_params;
380
381 status = acpi_evaluate_object(ap->acpi_handle, "_STM", &input, NULL);
382
383 if (status == AE_NOT_FOUND)
384 return -ENOENT;
385 if (ACPI_FAILURE(status)) {
386 ata_port_printk(ap, KERN_ERR,
387 "ACPI set timing mode failed (status=0x%x)\n", status);
388 return -EINVAL;
389 }
390 return 0;
391}
392
Alan Coxbadff032007-10-04 21:28:18 +0100393EXPORT_SYMBOL_GPL(ata_acpi_stm);
394
Tejun Heo64578a32007-05-15 03:28:16 +0900395/**
Tejun Heo4700c4b2007-05-15 03:28:16 +0900396 * ata_dev_get_GTF - get the drive bootup default taskfile settings
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900397 * @dev: target ATA device
Tejun Heo4700c4b2007-05-15 03:28:16 +0900398 * @gtf: output parameter for buffer containing _GTF taskfile arrays
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700399 *
400 * This applies to both PATA and SATA drives.
401 *
402 * The _GTF method has no input parameters.
403 * It returns a variable number of register set values (registers
404 * hex 1F1..1F7, taskfiles).
405 * The <variable number> is not known in advance, so have ACPI-CA
406 * allocate the buffer as needed and return it, then free it later.
407 *
Tejun Heo4700c4b2007-05-15 03:28:16 +0900408 * LOCKING:
409 * EH context.
410 *
411 * RETURNS:
Tejun Heo66fa7f22007-12-15 15:05:04 +0900412 * Number of taskfiles on success, 0 if _GTF doesn't exist. -EINVAL
413 * if _GTF is invalid.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700414 */
Tejun Heo398e0782007-12-15 15:05:03 +0900415static int ata_dev_get_GTF(struct ata_device *dev, struct ata_acpi_gtf **gtf)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700416{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900417 struct ata_port *ap = dev->link->ap;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900418 acpi_status status;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900419 struct acpi_buffer output;
420 union acpi_object *out_obj;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900421 int rc = 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700422
Tejun Heo398e0782007-12-15 15:05:03 +0900423 /* if _GTF is cached, use the cached value */
424 if (dev->gtf_cache) {
425 out_obj = dev->gtf_cache;
426 goto done;
427 }
428
Tejun Heo4700c4b2007-05-15 03:28:16 +0900429 /* set up output buffer */
430 output.length = ACPI_ALLOCATE_BUFFER;
431 output.pointer = NULL; /* ACPI-CA sets this; save/free it later */
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700432
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700433 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900434 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER: port#: %d\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -0800435 __func__, ap->port_no);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700436
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700437 /* _GTF has no input parameters */
Tejun Heo4700c4b2007-05-15 03:28:16 +0900438 status = acpi_evaluate_object(dev->acpi_handle, "_GTF", NULL, &output);
Tejun Heo398e0782007-12-15 15:05:03 +0900439 out_obj = dev->gtf_cache = output.pointer;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900440
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700441 if (ACPI_FAILURE(status)) {
Tejun Heo4700c4b2007-05-15 03:28:16 +0900442 if (status != AE_NOT_FOUND) {
443 ata_dev_printk(dev, KERN_WARNING,
444 "_GTF evaluation failed (AE 0x%x)\n",
445 status);
Tejun Heo66fa7f22007-12-15 15:05:04 +0900446 rc = -EINVAL;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900447 }
448 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700449 }
450
451 if (!output.length || !output.pointer) {
452 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900453 ata_dev_printk(dev, KERN_DEBUG, "%s: Run _GTF: "
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700454 "length or ptr is NULL (0x%llx, 0x%p)\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -0800455 __func__,
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700456 (unsigned long long)output.length,
457 output.pointer);
Tejun Heo66fa7f22007-12-15 15:05:04 +0900458 rc = -EINVAL;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900459 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700460 }
461
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700462 if (out_obj->type != ACPI_TYPE_BUFFER) {
Tejun Heo69b16a52007-05-15 03:28:16 +0900463 ata_dev_printk(dev, KERN_WARNING,
464 "_GTF unexpected object type 0x%x\n",
465 out_obj->type);
Tejun Heo66fa7f22007-12-15 15:05:04 +0900466 rc = -EINVAL;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900467 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700468 }
469
Tejun Heo4700c4b2007-05-15 03:28:16 +0900470 if (out_obj->buffer.length % REGS_PER_GTF) {
Tejun Heo69b16a52007-05-15 03:28:16 +0900471 ata_dev_printk(dev, KERN_WARNING,
472 "unexpected _GTF length (%d)\n",
473 out_obj->buffer.length);
Tejun Heo66fa7f22007-12-15 15:05:04 +0900474 rc = -EINVAL;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900475 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700476 }
477
Tejun Heo398e0782007-12-15 15:05:03 +0900478 done:
Tejun Heo4700c4b2007-05-15 03:28:16 +0900479 rc = out_obj->buffer.length / REGS_PER_GTF;
Tejun Heo398e0782007-12-15 15:05:03 +0900480 if (gtf) {
481 *gtf = (void *)out_obj->buffer.pointer;
482 if (ata_msg_probe(ap))
483 ata_dev_printk(dev, KERN_DEBUG,
484 "%s: returning gtf=%p, gtf_count=%d\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -0800485 __func__, *gtf, rc);
Tejun Heo398e0782007-12-15 15:05:03 +0900486 }
Tejun Heo4700c4b2007-05-15 03:28:16 +0900487 return rc;
488
489 out_free:
Tejun Heo398e0782007-12-15 15:05:03 +0900490 ata_acpi_clear_gtf(dev);
Tejun Heo4700c4b2007-05-15 03:28:16 +0900491 return rc;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700492}
493
Tejun Heo7c77fa42007-12-18 16:33:03 +0900494/**
495 * ata_acpi_gtm_xfermode - determine xfermode from GTM parameter
496 * @dev: target device
497 * @gtm: GTM parameter to use
498 *
499 * Determine xfermask for @dev from @gtm.
500 *
501 * LOCKING:
502 * None.
503 *
504 * RETURNS:
505 * Determined xfermask.
506 */
507unsigned long ata_acpi_gtm_xfermask(struct ata_device *dev,
508 const struct ata_acpi_gtm *gtm)
509{
Tejun Heoa0f79b92007-12-18 16:33:05 +0900510 unsigned long xfer_mask = 0;
511 unsigned int type;
512 int unit;
513 u8 mode;
Tejun Heo7c77fa42007-12-18 16:33:03 +0900514
515 /* we always use the 0 slot for crap hardware */
516 unit = dev->devno;
517 if (!(gtm->flags & 0x10))
518 unit = 0;
519
Tejun Heoa0f79b92007-12-18 16:33:05 +0900520 /* PIO */
521 mode = ata_timing_cycle2mode(ATA_SHIFT_PIO, gtm->drive[unit].pio);
522 xfer_mask |= ata_xfer_mode2mask(mode);
Tejun Heo7c77fa42007-12-18 16:33:03 +0900523
524 /* See if we have MWDMA or UDMA data. We don't bother with
525 * MWDMA if UDMA is available as this means the BIOS set UDMA
526 * and our error changedown if it works is UDMA to PIO anyway.
527 */
Tejun Heoa0f79b92007-12-18 16:33:05 +0900528 if (!(gtm->flags & (1 << (2 * unit))))
529 type = ATA_SHIFT_MWDMA;
530 else
531 type = ATA_SHIFT_UDMA;
Tejun Heo7c77fa42007-12-18 16:33:03 +0900532
Tejun Heoa0f79b92007-12-18 16:33:05 +0900533 mode = ata_timing_cycle2mode(type, gtm->drive[unit].dma);
534 xfer_mask |= ata_xfer_mode2mask(mode);
535
536 return xfer_mask;
Tejun Heo7c77fa42007-12-18 16:33:03 +0900537}
538EXPORT_SYMBOL_GPL(ata_acpi_gtm_xfermask);
539
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700540/**
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400541 * ata_acpi_cbl_80wire - Check for 80 wire cable
542 * @ap: Port to check
Tejun Heo021ee9a2007-12-18 16:33:06 +0900543 * @gtm: GTM data to use
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400544 *
Tejun Heo021ee9a2007-12-18 16:33:06 +0900545 * Return 1 if the @gtm indicates the BIOS selected an 80wire mode.
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400546 */
Tejun Heo021ee9a2007-12-18 16:33:06 +0900547int ata_acpi_cbl_80wire(struct ata_port *ap, const struct ata_acpi_gtm *gtm)
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400548{
Tejun Heo021ee9a2007-12-18 16:33:06 +0900549 struct ata_device *dev;
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400550
Tejun Heo021ee9a2007-12-18 16:33:06 +0900551 ata_link_for_each_dev(dev, &ap->link) {
552 unsigned long xfer_mask, udma_mask;
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400553
Tejun Heo021ee9a2007-12-18 16:33:06 +0900554 if (!ata_dev_enabled(dev))
555 continue;
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400556
Tejun Heo021ee9a2007-12-18 16:33:06 +0900557 xfer_mask = ata_acpi_gtm_xfermask(dev, gtm);
558 ata_unpack_xfermask(xfer_mask, NULL, NULL, &udma_mask);
559
560 if (udma_mask & ~ATA_UDMA_MASK_40C)
561 return 1;
562 }
563
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400564 return 0;
565}
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400566EXPORT_SYMBOL_GPL(ata_acpi_cbl_80wire);
567
Tejun Heo3264a8d2007-12-15 15:05:06 +0900568static void ata_acpi_gtf_to_tf(struct ata_device *dev,
569 const struct ata_acpi_gtf *gtf,
570 struct ata_taskfile *tf)
571{
572 ata_tf_init(dev, tf);
573
574 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
575 tf->protocol = ATA_PROT_NODATA;
576 tf->feature = gtf->tf[0]; /* 0x1f1 */
577 tf->nsect = gtf->tf[1]; /* 0x1f2 */
578 tf->lbal = gtf->tf[2]; /* 0x1f3 */
579 tf->lbam = gtf->tf[3]; /* 0x1f4 */
580 tf->lbah = gtf->tf[4]; /* 0x1f5 */
581 tf->device = gtf->tf[5]; /* 0x1f6 */
582 tf->command = gtf->tf[6]; /* 0x1f7 */
583}
584
585static int ata_acpi_filter_tf(const struct ata_taskfile *tf,
586 const struct ata_taskfile *ptf)
587{
588 if (ata_acpi_gtf_filter & ATA_ACPI_FILTER_SETXFER) {
589 /* libata doesn't use ACPI to configure transfer mode.
590 * It will only confuse device configuration. Skip.
591 */
592 if (tf->command == ATA_CMD_SET_FEATURES &&
593 tf->feature == SETFEATURES_XFER)
594 return 1;
595 }
596
597 if (ata_acpi_gtf_filter & ATA_ACPI_FILTER_LOCK) {
598 /* BIOS writers, sorry but we don't wanna lock
599 * features unless the user explicitly said so.
600 */
601
602 /* DEVICE CONFIGURATION FREEZE LOCK */
603 if (tf->command == ATA_CMD_CONF_OVERLAY &&
604 tf->feature == ATA_DCO_FREEZE_LOCK)
605 return 1;
606
607 /* SECURITY FREEZE LOCK */
608 if (tf->command == ATA_CMD_SEC_FREEZE_LOCK)
609 return 1;
610
611 /* SET MAX LOCK and SET MAX FREEZE LOCK */
612 if ((!ptf || ptf->command != ATA_CMD_READ_NATIVE_MAX) &&
613 tf->command == ATA_CMD_SET_MAX &&
614 (tf->feature == ATA_SET_MAX_LOCK ||
615 tf->feature == ATA_SET_MAX_FREEZE_LOCK))
616 return 1;
617 }
618
Tejun Heob3449912008-07-06 23:15:03 +0900619 if (ata_acpi_gtf_filter & ATA_ACPI_FILTER_DIPM) {
620 /* inhibit enabling DIPM */
621 if (tf->command == ATA_CMD_SET_FEATURES &&
622 tf->feature == SETFEATURES_SATA_ENABLE &&
623 tf->nsect == SATA_DIPM)
624 return 1;
625 }
626
Tejun Heo3264a8d2007-12-15 15:05:06 +0900627 return 0;
628}
629
Alan Coxe1ddb4b2007-08-16 02:33:36 -0400630/**
Tejun Heo0e8634b2007-12-15 15:05:05 +0900631 * ata_acpi_run_tf - send taskfile registers to host controller
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900632 * @dev: target ATA device
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700633 * @gtf: raw ATA taskfile register set (0x1f1 - 0x1f7)
634 *
635 * Outputs ATA taskfile to standard ATA host controller using MMIO
636 * or PIO as indicated by the ATA_FLAG_MMIO flag.
637 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
638 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
639 * hob_lbal, hob_lbam, and hob_lbah.
640 *
641 * This function waits for idle (!BUSY and !DRQ) after writing
642 * registers. If the control register has a new value, this
643 * function also waits for idle after writing control and before
644 * writing the remaining registers.
645 *
Tejun Heo4700c4b2007-05-15 03:28:16 +0900646 * LOCKING:
647 * EH context.
648 *
649 * RETURNS:
Tejun Heo3264a8d2007-12-15 15:05:06 +0900650 * 1 if command is executed successfully. 0 if ignored, rejected or
651 * filtered out, -errno on other errors.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700652 */
Tejun Heo0e8634b2007-12-15 15:05:05 +0900653static int ata_acpi_run_tf(struct ata_device *dev,
Tejun Heo3264a8d2007-12-15 15:05:06 +0900654 const struct ata_acpi_gtf *gtf,
655 const struct ata_acpi_gtf *prev_gtf)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700656{
Tejun Heo3264a8d2007-12-15 15:05:06 +0900657 struct ata_taskfile *pptf = NULL;
658 struct ata_taskfile tf, ptf, rtf;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900659 unsigned int err_mask;
Tejun Heo0e8634b2007-12-15 15:05:05 +0900660 const char *level;
661 char msg[60];
662 int rc;
Jeff Garzikfc16c252007-02-24 21:05:01 -0500663
Tejun Heo4700c4b2007-05-15 03:28:16 +0900664 if ((gtf->tf[0] == 0) && (gtf->tf[1] == 0) && (gtf->tf[2] == 0)
665 && (gtf->tf[3] == 0) && (gtf->tf[4] == 0) && (gtf->tf[5] == 0)
666 && (gtf->tf[6] == 0))
667 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700668
Tejun Heo3264a8d2007-12-15 15:05:06 +0900669 ata_acpi_gtf_to_tf(dev, gtf, &tf);
670 if (prev_gtf) {
671 ata_acpi_gtf_to_tf(dev, prev_gtf, &ptf);
672 pptf = &ptf;
673 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700674
Tejun Heo3264a8d2007-12-15 15:05:06 +0900675 if (!ata_acpi_filter_tf(&tf, pptf)) {
676 rtf = tf;
677 err_mask = ata_exec_internal(dev, &rtf, NULL,
678 DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700679
Tejun Heo3264a8d2007-12-15 15:05:06 +0900680 switch (err_mask) {
681 case 0:
682 level = KERN_DEBUG;
683 snprintf(msg, sizeof(msg), "succeeded");
684 rc = 1;
685 break;
Tejun Heo0e8634b2007-12-15 15:05:05 +0900686
Tejun Heo3264a8d2007-12-15 15:05:06 +0900687 case AC_ERR_DEV:
688 level = KERN_INFO;
689 snprintf(msg, sizeof(msg),
690 "rejected by device (Stat=0x%02x Err=0x%02x)",
691 rtf.command, rtf.feature);
692 rc = 0;
693 break;
Tejun Heo0e8634b2007-12-15 15:05:05 +0900694
Tejun Heo3264a8d2007-12-15 15:05:06 +0900695 default:
696 level = KERN_ERR;
697 snprintf(msg, sizeof(msg),
698 "failed (Emask=0x%x Stat=0x%02x Err=0x%02x)",
699 err_mask, rtf.command, rtf.feature);
700 rc = -EIO;
701 break;
702 }
703 } else {
Tejun Heo0e8634b2007-12-15 15:05:05 +0900704 level = KERN_INFO;
Tejun Heo3264a8d2007-12-15 15:05:06 +0900705 snprintf(msg, sizeof(msg), "filtered out");
Tejun Heo0e8634b2007-12-15 15:05:05 +0900706 rc = 0;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900707 }
708
Tejun Heo0e8634b2007-12-15 15:05:05 +0900709 ata_dev_printk(dev, level,
710 "ACPI cmd %02x/%02x:%02x:%02x:%02x:%02x:%02x %s\n",
711 tf.command, tf.feature, tf.nsect, tf.lbal,
712 tf.lbam, tf.lbah, tf.device, msg);
713
714 return rc;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700715}
716
717/**
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700718 * ata_acpi_exec_tfs - get then write drive taskfile settings
Tejun Heo67465442007-05-15 03:28:16 +0900719 * @dev: target ATA device
Tejun Heo66fa7f22007-12-15 15:05:04 +0900720 * @nr_executed: out paramter for the number of executed commands
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700721 *
Tejun Heo67465442007-05-15 03:28:16 +0900722 * Evaluate _GTF and excute returned taskfiles.
Tejun Heo69b16a52007-05-15 03:28:16 +0900723 *
724 * LOCKING:
725 * EH context.
726 *
727 * RETURNS:
Tejun Heo66fa7f22007-12-15 15:05:04 +0900728 * Number of executed taskfiles on success, 0 if _GTF doesn't exist.
729 * -errno on other errors.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700730 */
Tejun Heo66fa7f22007-12-15 15:05:04 +0900731static int ata_acpi_exec_tfs(struct ata_device *dev, int *nr_executed)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700732{
Tejun Heo3264a8d2007-12-15 15:05:06 +0900733 struct ata_acpi_gtf *gtf = NULL, *pgtf = NULL;
Tejun Heo67465442007-05-15 03:28:16 +0900734 int gtf_count, i, rc;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700735
Tejun Heo67465442007-05-15 03:28:16 +0900736 /* get taskfiles */
Tejun Heo66fa7f22007-12-15 15:05:04 +0900737 rc = ata_dev_get_GTF(dev, &gtf);
738 if (rc < 0)
739 return rc;
740 gtf_count = rc;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700741
Tejun Heo67465442007-05-15 03:28:16 +0900742 /* execute them */
Tejun Heo3264a8d2007-12-15 15:05:06 +0900743 for (i = 0; i < gtf_count; i++, gtf++) {
744 rc = ata_acpi_run_tf(dev, gtf, pgtf);
Tejun Heo0e8634b2007-12-15 15:05:05 +0900745 if (rc < 0)
746 break;
Tejun Heo3264a8d2007-12-15 15:05:06 +0900747 if (rc) {
Tejun Heo0e8634b2007-12-15 15:05:05 +0900748 (*nr_executed)++;
Tejun Heo3264a8d2007-12-15 15:05:06 +0900749 pgtf = gtf;
750 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700751 }
752
Tejun Heo398e0782007-12-15 15:05:03 +0900753 ata_acpi_clear_gtf(dev);
Tejun Heo67465442007-05-15 03:28:16 +0900754
Tejun Heo0e8634b2007-12-15 15:05:05 +0900755 if (rc < 0)
756 return rc;
757 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700758}
759
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700760/**
761 * ata_acpi_push_id - send Identify data to drive
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900762 * @dev: target ATA device
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700763 *
764 * _SDD ACPI object: for SATA mode only
765 * Must be after Identify (Packet) Device -- uses its data
766 * ATM this function never returns a failure. It is an optional
767 * method and if it fails for whatever reason, we should still
768 * just keep going.
Tejun Heo69b16a52007-05-15 03:28:16 +0900769 *
770 * LOCKING:
771 * EH context.
772 *
773 * RETURNS:
774 * 0 on success, -errno on failure.
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700775 */
Tejun Heo67465442007-05-15 03:28:16 +0900776static int ata_acpi_push_id(struct ata_device *dev)
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700777{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900778 struct ata_port *ap = dev->link->ap;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900779 int err;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900780 acpi_status status;
781 struct acpi_object_list input;
782 union acpi_object in_params[1];
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700783
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700784 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900785 ata_dev_printk(dev, KERN_DEBUG, "%s: ix = %d, port#: %d\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -0800786 __func__, dev->devno, ap->port_no);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700787
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700788 /* Give the drive Identify data to the drive via the _SDD method */
789 /* _SDD: set up input parameters */
790 input.count = 1;
791 input.pointer = in_params;
792 in_params[0].type = ACPI_TYPE_BUFFER;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900793 in_params[0].buffer.length = sizeof(dev->id[0]) * ATA_ID_WORDS;
794 in_params[0].buffer.pointer = (u8 *)dev->id;
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700795 /* Output buffer: _SDD has no output */
796
797 /* It's OK for _SDD to be missing too. */
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900798 swap_buf_le16(dev->id, ATA_ID_WORDS);
Tejun Heofafbae82007-05-15 03:28:16 +0900799 status = acpi_evaluate_object(dev->acpi_handle, "_SDD", &input, NULL);
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900800 swap_buf_le16(dev->id, ATA_ID_WORDS);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700801
802 err = ACPI_FAILURE(status) ? -EIO : 0;
Tejun Heo69b16a52007-05-15 03:28:16 +0900803 if (err < 0)
804 ata_dev_printk(dev, KERN_WARNING,
805 "ACPI _SDD failed (AE 0x%x)\n", status);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700806
Tejun Heo67465442007-05-15 03:28:16 +0900807 return err;
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700808}
809
Tejun Heo67465442007-05-15 03:28:16 +0900810/**
Tejun Heo64578a32007-05-15 03:28:16 +0900811 * ata_acpi_on_suspend - ATA ACPI hook called on suspend
812 * @ap: target ATA port
813 *
814 * This function is called when @ap is about to be suspended. All
815 * devices are already put to sleep but the port_suspend() callback
816 * hasn't been executed yet. Error return from this function aborts
817 * suspend.
818 *
819 * LOCKING:
820 * EH context.
821 *
822 * RETURNS:
823 * 0 on success, -errno on failure.
824 */
825int ata_acpi_on_suspend(struct ata_port *ap)
826{
Tejun Heoc05e6ff2007-12-15 15:05:02 +0900827 /* nada */
828 return 0;
Tejun Heo64578a32007-05-15 03:28:16 +0900829}
830
831/**
Tejun Heo67465442007-05-15 03:28:16 +0900832 * ata_acpi_on_resume - ATA ACPI hook called on resume
833 * @ap: target ATA port
834 *
835 * This function is called when @ap is resumed - right after port
836 * itself is resumed but before any EH action is taken.
837 *
838 * LOCKING:
839 * EH context.
840 */
841void ata_acpi_on_resume(struct ata_port *ap)
842{
Tejun Heoc05e6ff2007-12-15 15:05:02 +0900843 const struct ata_acpi_gtm *gtm = ata_acpi_init_gtm(ap);
Tejun Heof58229f2007-08-06 18:36:23 +0900844 struct ata_device *dev;
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700845
Tejun Heo398e0782007-12-15 15:05:03 +0900846 if (ap->acpi_handle && gtm) {
847 /* _GTM valid */
848
849 /* restore timing parameters */
Tejun Heoc05e6ff2007-12-15 15:05:02 +0900850 ata_acpi_stm(ap, gtm);
Tejun Heo64578a32007-05-15 03:28:16 +0900851
Tejun Heo398e0782007-12-15 15:05:03 +0900852 /* _GTF should immediately follow _STM so that it can
853 * use values set by _STM. Cache _GTF result and
854 * schedule _GTF.
855 */
856 ata_link_for_each_dev(dev, &ap->link) {
857 ata_acpi_clear_gtf(dev);
Shaohua Li48feb3c2008-03-25 16:50:45 +0800858 if (ata_dev_enabled(dev) &&
859 ata_dev_get_GTF(dev, NULL) >= 0)
Tejun Heo398e0782007-12-15 15:05:03 +0900860 dev->flags |= ATA_DFLAG_ACPI_PENDING;
861 }
862 } else {
863 /* SATA _GTF needs to be evaulated after _SDD and
864 * there's no reason to evaluate IDE _GTF early
865 * without _STM. Clear cache and schedule _GTF.
866 */
867 ata_link_for_each_dev(dev, &ap->link) {
868 ata_acpi_clear_gtf(dev);
Shaohua Li48feb3c2008-03-25 16:50:45 +0800869 if (ata_dev_enabled(dev))
870 dev->flags |= ATA_DFLAG_ACPI_PENDING;
Tejun Heo398e0782007-12-15 15:05:03 +0900871 }
872 }
Tejun Heo67465442007-05-15 03:28:16 +0900873}
874
875/**
Shaohua Libd3adca2007-11-02 09:32:38 +0800876 * ata_acpi_set_state - set the port power state
877 * @ap: target ATA port
878 * @state: state, on/off
879 *
880 * This function executes the _PS0/_PS3 ACPI method to set the power state.
881 * ACPI spec requires _PS0 when IDE power on and _PS3 when power off
882 */
883void ata_acpi_set_state(struct ata_port *ap, pm_message_t state)
884{
885 struct ata_device *dev;
886
887 if (!ap->acpi_handle || (ap->flags & ATA_FLAG_ACPI_SATA))
888 return;
889
890 /* channel first and then drives for power on and vica versa
891 for power off */
892 if (state.event == PM_EVENT_ON)
893 acpi_bus_set_power(ap->acpi_handle, ACPI_STATE_D0);
894
895 ata_link_for_each_dev(dev, &ap->link) {
896 if (dev->acpi_handle && ata_dev_enabled(dev))
897 acpi_bus_set_power(dev->acpi_handle,
898 state.event == PM_EVENT_ON ?
899 ACPI_STATE_D0 : ACPI_STATE_D3);
900 }
901 if (state.event != PM_EVENT_ON)
902 acpi_bus_set_power(ap->acpi_handle, ACPI_STATE_D3);
903}
904
905/**
Tejun Heo67465442007-05-15 03:28:16 +0900906 * ata_acpi_on_devcfg - ATA ACPI hook called on device donfiguration
907 * @dev: target ATA device
908 *
909 * This function is called when @dev is about to be configured.
910 * IDENTIFY data might have been modified after this hook is run.
911 *
912 * LOCKING:
913 * EH context.
914 *
915 * RETURNS:
916 * Positive number if IDENTIFY data needs to be refreshed, 0 if not,
917 * -errno on failure.
918 */
919int ata_acpi_on_devcfg(struct ata_device *dev)
920{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900921 struct ata_port *ap = dev->link->ap;
922 struct ata_eh_context *ehc = &ap->link.eh_context;
Tejun Heo67465442007-05-15 03:28:16 +0900923 int acpi_sata = ap->flags & ATA_FLAG_ACPI_SATA;
Tejun Heo66fa7f22007-12-15 15:05:04 +0900924 int nr_executed = 0;
Tejun Heo67465442007-05-15 03:28:16 +0900925 int rc;
926
Tejun Heo67465442007-05-15 03:28:16 +0900927 if (!dev->acpi_handle)
928 return 0;
929
930 /* do we need to do _GTF? */
931 if (!(dev->flags & ATA_DFLAG_ACPI_PENDING) &&
932 !(acpi_sata && (ehc->i.flags & ATA_EHI_DID_HARDRESET)))
933 return 0;
934
935 /* do _SDD if SATA */
936 if (acpi_sata) {
937 rc = ata_acpi_push_id(dev);
938 if (rc)
939 goto acpi_err;
940 }
941
942 /* do _GTF */
Tejun Heo66fa7f22007-12-15 15:05:04 +0900943 rc = ata_acpi_exec_tfs(dev, &nr_executed);
944 if (rc)
Tejun Heo67465442007-05-15 03:28:16 +0900945 goto acpi_err;
946
947 dev->flags &= ~ATA_DFLAG_ACPI_PENDING;
948
949 /* refresh IDENTIFY page if any _GTF command has been executed */
Tejun Heo66fa7f22007-12-15 15:05:04 +0900950 if (nr_executed) {
Tejun Heo67465442007-05-15 03:28:16 +0900951 rc = ata_dev_reread_id(dev, 0);
952 if (rc < 0) {
953 ata_dev_printk(dev, KERN_ERR, "failed to IDENTIFY "
954 "after ACPI commands\n");
955 return rc;
956 }
957 }
958
959 return 0;
960
961 acpi_err:
Tejun Heo66fa7f22007-12-15 15:05:04 +0900962 /* ignore evaluation failure if we can continue safely */
963 if (rc == -EINVAL && !nr_executed && !(ap->pflags & ATA_PFLAG_FROZEN))
964 return 0;
Tejun Heo67465442007-05-15 03:28:16 +0900965
Tejun Heo66fa7f22007-12-15 15:05:04 +0900966 /* fail and let EH retry once more for unknown IO errors */
967 if (!(dev->flags & ATA_DFLAG_ACPI_FAILED)) {
968 dev->flags |= ATA_DFLAG_ACPI_FAILED;
969 return rc;
Tejun Heo67465442007-05-15 03:28:16 +0900970 }
Tejun Heo66fa7f22007-12-15 15:05:04 +0900971
972 ata_dev_printk(dev, KERN_WARNING,
973 "ACPI: failed the second time, disabled\n");
974 dev->acpi_handle = NULL;
975
976 /* We can safely continue if no _GTF command has been executed
977 * and port is not frozen.
978 */
979 if (!nr_executed && !(ap->pflags & ATA_PFLAG_FROZEN))
980 return 0;
981
Tejun Heo67465442007-05-15 03:28:16 +0900982 return rc;
983}
Tejun Heo562f0c22007-12-15 15:05:01 +0900984
985/**
986 * ata_acpi_on_disable - ATA ACPI hook called when a device is disabled
987 * @dev: target ATA device
988 *
989 * This function is called when @dev is about to be disabled.
990 *
991 * LOCKING:
992 * EH context.
993 */
994void ata_acpi_on_disable(struct ata_device *dev)
995{
Tejun Heo398e0782007-12-15 15:05:03 +0900996 ata_acpi_clear_gtf(dev);
Tejun Heo562f0c22007-12-15 15:05:01 +0900997}