blob: ae2077e1e78f95bbc5ffff726c583944aa56724a [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
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 "libata.h"
18
19#include <acpi/acpi_bus.h>
20#include <acpi/acnames.h>
21#include <acpi/acnamesp.h>
22#include <acpi/acparser.h>
23#include <acpi/acexcep.h>
24#include <acpi/acmacros.h>
25#include <acpi/actypes.h>
26
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070027#define NO_PORT_MULT 0xffff
Tejun Heofafbae82007-05-15 03:28:16 +090028#define SATA_ADR(root,pmp) (((root) << 16) | (pmp))
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070029
30#define REGS_PER_GTF 7
Tejun Heo4700c4b2007-05-15 03:28:16 +090031struct ata_acpi_gtf {
32 u8 tf[REGS_PER_GTF]; /* regs. 0x1f1 - 0x1f7 */
33} __packed;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070034
Alan Coxca426632007-03-08 23:13:50 +000035/*
36 * Helper - belongs in the PCI layer somewhere eventually
37 */
38static int is_pci_dev(struct device *dev)
39{
40 return (dev->bus == &pci_bus_type);
41}
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070042
Tejun Heofafbae82007-05-15 03:28:16 +090043static void ata_acpi_associate_sata_port(struct ata_port *ap)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070044{
Tejun Heofafbae82007-05-15 03:28:16 +090045 acpi_integer adr = SATA_ADR(ap->port_no, NO_PORT_MULT);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070046
Tejun Heofafbae82007-05-15 03:28:16 +090047 ap->device->acpi_handle = acpi_get_child(ap->host->acpi_handle, adr);
48}
Alan Coxca426632007-03-08 23:13:50 +000049
Tejun Heofafbae82007-05-15 03:28:16 +090050static void ata_acpi_associate_ide_port(struct ata_port *ap)
51{
52 int max_devices, i;
53
54 ap->acpi_handle = acpi_get_child(ap->host->acpi_handle, ap->port_no);
55 if (!ap->acpi_handle)
56 return;
57
58 max_devices = 1;
59 if (ap->flags & ATA_FLAG_SLAVE_POSS)
60 max_devices++;
61
62 for (i = 0; i < max_devices; i++) {
63 struct ata_device *dev = &ap->device[i];
64
65 dev->acpi_handle = acpi_get_child(ap->acpi_handle, i);
66 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070067}
68
69/**
Tejun Heofafbae82007-05-15 03:28:16 +090070 * ata_acpi_associate - associate ATA host with ACPI objects
71 * @host: target ATA host
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070072 *
Tejun Heofafbae82007-05-15 03:28:16 +090073 * Look up ACPI objects associated with @host and initialize
74 * acpi_handle fields of @host, its ports and devices accordingly.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070075 *
Tejun Heofafbae82007-05-15 03:28:16 +090076 * LOCKING:
77 * EH context.
78 *
79 * RETURNS:
80 * 0 on success, -errno on failure.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070081 */
Tejun Heofafbae82007-05-15 03:28:16 +090082void ata_acpi_associate(struct ata_host *host)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070083{
Tejun Heofafbae82007-05-15 03:28:16 +090084 int i;
Alan Coxca426632007-03-08 23:13:50 +000085
Tejun Heofafbae82007-05-15 03:28:16 +090086 if (!is_pci_dev(host->dev) || libata_noacpi)
87 return;
Alan Coxca426632007-03-08 23:13:50 +000088
Tejun Heofafbae82007-05-15 03:28:16 +090089 host->acpi_handle = DEVICE_ACPI_HANDLE(host->dev);
90 if (!host->acpi_handle)
91 return;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070092
Tejun Heofafbae82007-05-15 03:28:16 +090093 for (i = 0; i < host->n_ports; i++) {
94 struct ata_port *ap = host->ports[i];
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -070095
Tejun Heofafbae82007-05-15 03:28:16 +090096 if (host->ports[0]->flags & ATA_FLAG_ACPI_SATA)
97 ata_acpi_associate_sata_port(ap);
98 else
99 ata_acpi_associate_ide_port(ap);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700100 }
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700101}
102
103/**
Tejun Heo4700c4b2007-05-15 03:28:16 +0900104 * ata_dev_get_GTF - get the drive bootup default taskfile settings
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900105 * @dev: target ATA device
Tejun Heo4700c4b2007-05-15 03:28:16 +0900106 * @gtf: output parameter for buffer containing _GTF taskfile arrays
107 * @ptr_to_free: pointer which should be freed
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700108 *
109 * This applies to both PATA and SATA drives.
110 *
111 * The _GTF method has no input parameters.
112 * It returns a variable number of register set values (registers
113 * hex 1F1..1F7, taskfiles).
114 * The <variable number> is not known in advance, so have ACPI-CA
115 * allocate the buffer as needed and return it, then free it later.
116 *
Tejun Heo4700c4b2007-05-15 03:28:16 +0900117 * LOCKING:
118 * EH context.
119 *
120 * RETURNS:
121 * Number of taskfiles on success, 0 if _GTF doesn't exist or doesn't
122 * contain valid data. -errno on other errors.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700123 */
Tejun Heo4700c4b2007-05-15 03:28:16 +0900124static int ata_dev_get_GTF(struct ata_device *dev, struct ata_acpi_gtf **gtf,
125 void **ptr_to_free)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700126{
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900127 struct ata_port *ap = dev->ap;
128 acpi_status status;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900129 struct acpi_buffer output;
130 union acpi_object *out_obj;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900131 int rc = 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700132
Tejun Heo4700c4b2007-05-15 03:28:16 +0900133 /* set up output buffer */
134 output.length = ACPI_ALLOCATE_BUFFER;
135 output.pointer = NULL; /* ACPI-CA sets this; save/free it later */
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700136
Tejun Heofafbae82007-05-15 03:28:16 +0900137 if (!dev->acpi_handle)
Tejun Heo4700c4b2007-05-15 03:28:16 +0900138 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700139
140 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900141 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER: port#: %d\n",
Tejun Heo878d4fe2007-02-21 16:36:33 +0900142 __FUNCTION__, ap->port_no);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700143
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900144 if (!ata_dev_enabled(dev) || (ap->flags & ATA_FLAG_DISABLED)) {
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700145 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900146 ata_dev_printk(dev, KERN_DEBUG, "%s: ERR: "
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700147 "ata_dev_present: %d, PORT_DISABLED: %lu\n",
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900148 __FUNCTION__, ata_dev_enabled(dev),
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700149 ap->flags & ATA_FLAG_DISABLED);
Tejun Heo4700c4b2007-05-15 03:28:16 +0900150 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700151 }
152
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700153 /* _GTF has no input parameters */
Tejun Heo4700c4b2007-05-15 03:28:16 +0900154 status = acpi_evaluate_object(dev->acpi_handle, "_GTF", NULL, &output);
155
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700156 if (ACPI_FAILURE(status)) {
Tejun Heo4700c4b2007-05-15 03:28:16 +0900157 if (status != AE_NOT_FOUND) {
158 ata_dev_printk(dev, KERN_WARNING,
159 "_GTF evaluation failed (AE 0x%x)\n",
160 status);
161 rc = -EIO;
162 }
163 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700164 }
165
166 if (!output.length || !output.pointer) {
167 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900168 ata_dev_printk(dev, KERN_DEBUG, "%s: Run _GTF: "
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700169 "length or ptr is NULL (0x%llx, 0x%p)\n",
170 __FUNCTION__,
171 (unsigned long long)output.length,
172 output.pointer);
Tejun Heo4700c4b2007-05-15 03:28:16 +0900173 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700174 }
175
176 out_obj = output.pointer;
177 if (out_obj->type != ACPI_TYPE_BUFFER) {
Tejun Heo69b16a52007-05-15 03:28:16 +0900178 ata_dev_printk(dev, KERN_WARNING,
179 "_GTF unexpected object type 0x%x\n",
180 out_obj->type);
Tejun Heo4700c4b2007-05-15 03:28:16 +0900181 rc = -EINVAL;
182 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700183 }
184
Tejun Heo4700c4b2007-05-15 03:28:16 +0900185 if (out_obj->buffer.length % REGS_PER_GTF) {
Tejun Heo69b16a52007-05-15 03:28:16 +0900186 ata_dev_printk(dev, KERN_WARNING,
187 "unexpected _GTF length (%d)\n",
188 out_obj->buffer.length);
Tejun Heo4700c4b2007-05-15 03:28:16 +0900189 rc = -EINVAL;
190 goto out_free;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700191 }
192
Tejun Heo4700c4b2007-05-15 03:28:16 +0900193 *ptr_to_free = out_obj;
194 *gtf = (void *)out_obj->buffer.pointer;
195 rc = out_obj->buffer.length / REGS_PER_GTF;
196
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700197 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900198 ata_dev_printk(dev, KERN_DEBUG, "%s: returning "
Tejun Heo4700c4b2007-05-15 03:28:16 +0900199 "gtf=%p, gtf_count=%d, ptr_to_free=%p\n",
200 __FUNCTION__, *gtf, rc, *ptr_to_free);
201 return rc;
202
203 out_free:
204 kfree(output.pointer);
205 return rc;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700206}
207
208/**
209 * taskfile_load_raw - send taskfile registers to host controller
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900210 * @dev: target ATA device
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700211 * @gtf: raw ATA taskfile register set (0x1f1 - 0x1f7)
212 *
213 * Outputs ATA taskfile to standard ATA host controller using MMIO
214 * or PIO as indicated by the ATA_FLAG_MMIO flag.
215 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
216 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
217 * hob_lbal, hob_lbam, and hob_lbah.
218 *
219 * This function waits for idle (!BUSY and !DRQ) after writing
220 * registers. If the control register has a new value, this
221 * function also waits for idle after writing control and before
222 * writing the remaining registers.
223 *
Tejun Heo4700c4b2007-05-15 03:28:16 +0900224 * LOCKING:
225 * EH context.
226 *
227 * RETURNS:
228 * 0 on success, -errno on failure.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700229 */
Tejun Heo4700c4b2007-05-15 03:28:16 +0900230static int taskfile_load_raw(struct ata_device *dev,
231 const struct ata_acpi_gtf *gtf)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700232{
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900233 struct ata_port *ap = dev->ap;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900234 struct ata_taskfile tf, rtf;
235 unsigned int err_mask;
Jeff Garzikfc16c252007-02-24 21:05:01 -0500236
Tejun Heo4700c4b2007-05-15 03:28:16 +0900237 if ((gtf->tf[0] == 0) && (gtf->tf[1] == 0) && (gtf->tf[2] == 0)
238 && (gtf->tf[3] == 0) && (gtf->tf[4] == 0) && (gtf->tf[5] == 0)
239 && (gtf->tf[6] == 0))
240 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700241
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900242 ata_tf_init(dev, &tf);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700243
Jeff Garzikfc16c252007-02-24 21:05:01 -0500244 /* convert gtf to tf */
245 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; /* TBD */
Tejun Heo48be6b12007-04-23 02:06:46 +0900246 tf.protocol = ATA_PROT_NODATA;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900247 tf.feature = gtf->tf[0]; /* 0x1f1 */
248 tf.nsect = gtf->tf[1]; /* 0x1f2 */
249 tf.lbal = gtf->tf[2]; /* 0x1f3 */
250 tf.lbam = gtf->tf[3]; /* 0x1f4 */
251 tf.lbah = gtf->tf[4]; /* 0x1f5 */
252 tf.device = gtf->tf[5]; /* 0x1f6 */
253 tf.command = gtf->tf[6]; /* 0x1f7 */
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700254
Tejun Heo4700c4b2007-05-15 03:28:16 +0900255 if (ata_msg_probe(ap))
256 ata_dev_printk(dev, KERN_DEBUG, "executing ACPI cmd "
257 "%02x/%02x:%02x:%02x:%02x:%02x:%02x\n",
258 tf.command, tf.feature, tf.nsect,
259 tf.lbal, tf.lbam, tf.lbah, tf.device);
260
261 rtf = tf;
262 err_mask = ata_exec_internal(dev, &rtf, NULL, DMA_NONE, NULL, 0);
263 if (err_mask) {
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900264 ata_dev_printk(dev, KERN_ERR,
Tejun Heo4700c4b2007-05-15 03:28:16 +0900265 "ACPI cmd %02x/%02x:%02x:%02x:%02x:%02x:%02x failed "
266 "(Emask=0x%x Stat=0x%02x Err=0x%02x)\n",
267 tf.command, tf.feature, tf.nsect, tf.lbal, tf.lbam,
268 tf.lbah, tf.device, err_mask, rtf.command, rtf.feature);
269 return -EIO;
270 }
271
272 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700273}
274
275/**
Tejun Heo4700c4b2007-05-15 03:28:16 +0900276 * ata_dev_set_taskfiles - write the drive taskfile settings from _GTF
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900277 * @dev: target ATA device
Tejun Heo4700c4b2007-05-15 03:28:16 +0900278 * @gtf: pointer to array of _GTF taskfiles to execute
279 * @gtf_count: number of taskfiles
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700280 *
281 * This applies to both PATA and SATA drives.
282 *
Tejun Heo4700c4b2007-05-15 03:28:16 +0900283 * Execute taskfiles in @gtf.
284 *
285 * LOCKING:
286 * EH context.
287 *
288 * RETURNS:
289 * 0 on success, -errno on failure.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700290 */
Tejun Heo4700c4b2007-05-15 03:28:16 +0900291static int ata_dev_set_taskfiles(struct ata_device *dev,
292 struct ata_acpi_gtf *gtf, int gtf_count)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700293{
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900294 struct ata_port *ap = dev->ap;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900295 int ix;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700296
297 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900298 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER: port#: %d\n",
Tejun Heo878d4fe2007-02-21 16:36:33 +0900299 __FUNCTION__, ap->port_no);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700300
Tejun Heofafbae82007-05-15 03:28:16 +0900301 if (!(ap->flags & ATA_FLAG_ACPI_SATA))
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700302 return 0;
303
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900304 if (!ata_dev_enabled(dev) || (ap->flags & ATA_FLAG_DISABLED))
Tejun Heo4700c4b2007-05-15 03:28:16 +0900305 return -ENODEV;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700306
Tejun Heo4700c4b2007-05-15 03:28:16 +0900307 /* send all TaskFile registers (0x1f1-0x1f7) *in*that*order* */
308 for (ix = 0; ix < gtf_count; ix++)
309 taskfile_load_raw(dev, gtf++);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700310
Tejun Heo4700c4b2007-05-15 03:28:16 +0900311 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700312}
313
314/**
315 * ata_acpi_exec_tfs - get then write drive taskfile settings
316 * @ap: the ata_port for the drive
317 *
318 * This applies to both PATA and SATA drives.
Tejun Heo69b16a52007-05-15 03:28:16 +0900319 *
320 * LOCKING:
321 * EH context.
322 *
323 * RETURNS:
324 * 0 on success, -errno on failure.
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700325 */
326int ata_acpi_exec_tfs(struct ata_port *ap)
327{
Tejun Heo4700c4b2007-05-15 03:28:16 +0900328 int ix, ret = 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700329
Kristen Accardidf33c772007-03-09 18:15:33 -0500330 /*
331 * TBD - implement PATA support. For now,
332 * we should not run GTF on PATA devices since some
333 * PATA require execution of GTM/STM before GTF.
334 */
Tejun Heo3cadbcc2007-05-15 03:28:15 +0900335 if (!(ap->flags & ATA_FLAG_ACPI_SATA))
Kristen Accardidf33c772007-03-09 18:15:33 -0500336 return 0;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700337
338 for (ix = 0; ix < ATA_MAX_DEVICES; ix++) {
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900339 struct ata_device *dev = &ap->device[ix];
Tejun Heo4700c4b2007-05-15 03:28:16 +0900340 struct ata_acpi_gtf *gtf = NULL;
341 int gtf_count;
342 void *ptr_to_free = NULL;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900343
344 if (!ata_dev_enabled(dev))
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700345 continue;
346
Tejun Heo4700c4b2007-05-15 03:28:16 +0900347 ret = ata_dev_get_GTF(dev, &gtf, &ptr_to_free);
348 if (ret == 0)
349 continue;
Tejun Heo69b16a52007-05-15 03:28:16 +0900350 if (ret < 0)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700351 break;
Tejun Heo4700c4b2007-05-15 03:28:16 +0900352 gtf_count = ret;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700353
Tejun Heo4700c4b2007-05-15 03:28:16 +0900354 ret = ata_dev_set_taskfiles(dev, gtf, gtf_count);
355 kfree(ptr_to_free);
Tejun Heo69b16a52007-05-15 03:28:16 +0900356 if (ret < 0)
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700357 break;
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700358 }
359
360 return ret;
361}
362
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700363/**
364 * ata_acpi_push_id - send Identify data to drive
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900365 * @dev: target ATA device
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700366 *
367 * _SDD ACPI object: for SATA mode only
368 * Must be after Identify (Packet) Device -- uses its data
369 * ATM this function never returns a failure. It is an optional
370 * method and if it fails for whatever reason, we should still
371 * just keep going.
Tejun Heo69b16a52007-05-15 03:28:16 +0900372 *
373 * LOCKING:
374 * EH context.
375 *
376 * RETURNS:
377 * 0 on success, -errno on failure.
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700378 */
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900379int ata_acpi_push_id(struct ata_device *dev)
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700380{
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900381 struct ata_port *ap = dev->ap;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900382 int err;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900383 acpi_status status;
384 struct acpi_object_list input;
385 union acpi_object in_params[1];
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700386
Tejun Heofafbae82007-05-15 03:28:16 +0900387 if (!dev->acpi_handle)
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700388 return 0;
389
390 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900391 ata_dev_printk(dev, KERN_DEBUG, "%s: ix = %d, port#: %d\n",
392 __FUNCTION__, dev->devno, ap->port_no);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700393
394 /* Don't continue if not a SATA device. */
Tejun Heo3cadbcc2007-05-15 03:28:15 +0900395 if (!(ap->flags & ATA_FLAG_ACPI_SATA)) {
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700396 if (ata_msg_probe(ap))
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900397 ata_dev_printk(dev, KERN_DEBUG,
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700398 "%s: Not a SATA device\n", __FUNCTION__);
399 goto out;
400 }
401
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700402 /* Give the drive Identify data to the drive via the _SDD method */
403 /* _SDD: set up input parameters */
404 input.count = 1;
405 input.pointer = in_params;
406 in_params[0].type = ACPI_TYPE_BUFFER;
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900407 in_params[0].buffer.length = sizeof(dev->id[0]) * ATA_ID_WORDS;
408 in_params[0].buffer.pointer = (u8 *)dev->id;
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700409 /* Output buffer: _SDD has no output */
410
411 /* It's OK for _SDD to be missing too. */
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900412 swap_buf_le16(dev->id, ATA_ID_WORDS);
Tejun Heofafbae82007-05-15 03:28:16 +0900413 status = acpi_evaluate_object(dev->acpi_handle, "_SDD", &input, NULL);
Tejun Heo3a32a8e2007-05-05 23:50:38 +0900414 swap_buf_le16(dev->id, ATA_ID_WORDS);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700415
416 err = ACPI_FAILURE(status) ? -EIO : 0;
Tejun Heo69b16a52007-05-15 03:28:16 +0900417 if (err < 0)
418 ata_dev_printk(dev, KERN_WARNING,
419 "ACPI _SDD failed (AE 0x%x)\n", status);
Kristen Carlson Accardi7ea1fbc2006-09-28 11:29:12 -0700420
421 /* always return success */
422out:
423 return 0;
424}
425
426