blob: f104577f73e09f7daac4c3523e04b280b28fc779 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pnpacpi -- PnP ACPI driver
3 *
4 * Copyright (c) 2004 Matthieu Castet <castet.matthieu@free.fr>
5 * Copyright (c) 2004 Li Shaohua <shaohua.li@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Bjorn Helgaase139aa52005-09-06 15:17:05 -070022#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/acpi.h>
24#include <linux/pnp.h>
25#include <acpi/acpi_bus.h>
26#include "pnpacpi.h"
27
28static int num = 0;
29
matthieu castetc4bb6f52006-01-06 01:31:00 -050030/* We need only to blacklist devices that have already an acpi driver that
31 * can't use pnp layer. We don't need to blacklist device that are directly
32 * used by the kernel (PCI root, ...), as it is harmless and there were
33 * already present in pnpbios. But there is an exception for devices that
34 * have irqs (PIC, Timer) because we call acpi_register_gsi.
35 * Finaly only devices that have a CRS method need to be in this list.
36 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static char __initdata excluded_id_list[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 "PNP0C09," /* EC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 "PNP0C0F," /* Link device */
40 "PNP0000," /* PIC */
41 "PNP0100," /* Timer */
42 ;
43static inline int is_exclusive_device(struct acpi_device *dev)
44{
45 return (!acpi_match_ids(dev, excluded_id_list));
46}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * Compatible Device IDs
50 */
51#define TEST_HEX(c) \
52 if (!(('0' <= (c) && (c) <= '9') || ('A' <= (c) && (c) <= 'F'))) \
53 return 0
54#define TEST_ALPHA(c) \
55 if (!('@' <= (c) || (c) <= 'Z')) \
56 return 0
57static int __init ispnpidacpi(char *id)
58{
59 TEST_ALPHA(id[0]);
60 TEST_ALPHA(id[1]);
61 TEST_ALPHA(id[2]);
62 TEST_HEX(id[3]);
63 TEST_HEX(id[4]);
64 TEST_HEX(id[5]);
65 TEST_HEX(id[6]);
66 if (id[7] != '\0')
67 return 0;
68 return 1;
69}
70
71static void __init pnpidacpi_to_pnpid(char *id, char *str)
72{
73 str[0] = id[0];
74 str[1] = id[1];
75 str[2] = id[2];
76 str[3] = tolower(id[3]);
77 str[4] = tolower(id[4]);
78 str[5] = tolower(id[5]);
79 str[6] = tolower(id[6]);
80 str[7] = '\0';
81}
82
83static int pnpacpi_get_resources(struct pnp_dev * dev, struct pnp_resource_table * res)
84{
85 acpi_status status;
86 status = pnpacpi_parse_allocated_resource((acpi_handle)dev->data,
87 &dev->res);
88 return ACPI_FAILURE(status) ? -ENODEV : 0;
89}
90
91static int pnpacpi_set_resources(struct pnp_dev * dev, struct pnp_resource_table * res)
92{
93 acpi_handle handle = dev->data;
94 struct acpi_buffer buffer;
95 int ret = 0;
96 acpi_status status;
97
98 ret = pnpacpi_build_resource_template(handle, &buffer);
99 if (ret)
100 return ret;
101 ret = pnpacpi_encode_resources(res, &buffer);
102 if (ret) {
103 kfree(buffer.pointer);
104 return ret;
105 }
106 status = acpi_set_current_resources(handle, &buffer);
107 if (ACPI_FAILURE(status))
108 ret = -EINVAL;
109 kfree(buffer.pointer);
110 return ret;
111}
112
113static int pnpacpi_disable_resources(struct pnp_dev *dev)
114{
115 acpi_status status;
116
117 /* acpi_unregister_gsi(pnp_irq(dev, 0)); */
118 status = acpi_evaluate_object((acpi_handle)dev->data,
119 "_DIS", NULL, NULL);
120 return ACPI_FAILURE(status) ? -ENODEV : 0;
121}
122
Adrian Bunkb449f632005-11-07 01:01:48 -0800123static struct pnp_protocol pnpacpi_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .name = "Plug and Play ACPI",
125 .get = pnpacpi_get_resources,
126 .set = pnpacpi_set_resources,
127 .disable = pnpacpi_disable_resources,
128};
129
130static int __init pnpacpi_add_device(struct acpi_device *device)
131{
132 acpi_handle temp = NULL;
133 acpi_status status;
134 struct pnp_id *dev_id;
135 struct pnp_dev *dev;
136
matthieu castet07b01202006-01-06 01:31:00 -0500137 status = acpi_get_handle(device->handle, "_CRS", &temp);
138 if (ACPI_FAILURE(status) || !ispnpidacpi(acpi_device_hid(device)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 is_exclusive_device(device))
140 return 0;
141
142 pnp_dbg("ACPI device : hid %s", acpi_device_hid(device));
Bjorn Helgaasa2822e72005-09-06 15:16:51 -0700143 dev = kcalloc(1, sizeof(struct pnp_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!dev) {
145 pnp_err("Out of memory");
146 return -ENOMEM;
147 }
148 dev->data = device->handle;
149 /* .enabled means if the device can decode the resources */
150 dev->active = device->status.enabled;
151 status = acpi_get_handle(device->handle, "_SRS", &temp);
152 if (ACPI_SUCCESS(status))
153 dev->capabilities |= PNP_CONFIGURABLE;
154 dev->capabilities |= PNP_READ;
155 if (device->flags.dynamic_status)
156 dev->capabilities |= PNP_WRITE;
157 if (device->flags.removable)
158 dev->capabilities |= PNP_REMOVABLE;
159 status = acpi_get_handle(device->handle, "_DIS", &temp);
160 if (ACPI_SUCCESS(status))
161 dev->capabilities |= PNP_DISABLE;
162
163 dev->protocol = &pnpacpi_protocol;
164
165 if (strlen(acpi_device_name(device)))
166 strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
167 else
168 strncpy(dev->name, acpi_device_bid(device), sizeof(dev->name));
169
170 dev->number = num;
171
172 /* set the initial values for the PnP device */
Bjorn Helgaasa2822e72005-09-06 15:16:51 -0700173 dev_id = kcalloc(1, sizeof(struct pnp_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!dev_id)
175 goto err;
176 pnpidacpi_to_pnpid(acpi_device_hid(device), dev_id->id);
177 pnp_add_id(dev_id, dev);
178
179 if(dev->active) {
180 /* parse allocated resource */
181 status = pnpacpi_parse_allocated_resource(device->handle, &dev->res);
182 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
183 pnp_err("PnPACPI: METHOD_NAME__CRS failure for %s", dev_id->id);
184 goto err1;
185 }
186 }
187
188 if(dev->capabilities & PNP_CONFIGURABLE) {
189 status = pnpacpi_parse_resource_option_data(device->handle,
190 dev);
191 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
192 pnp_err("PnPACPI: METHOD_NAME__PRS failure for %s", dev_id->id);
193 goto err1;
194 }
195 }
196
197 /* parse compatible ids */
198 if (device->flags.compatible_ids) {
199 struct acpi_compatible_id_list *cid_list = device->pnp.cid_list;
200 int i;
201
202 for (i = 0; i < cid_list->count; i++) {
203 if (!ispnpidacpi(cid_list->id[i].value))
204 continue;
Bjorn Helgaasa2822e72005-09-06 15:16:51 -0700205 dev_id = kcalloc(1, sizeof(struct pnp_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (!dev_id)
207 continue;
208
209 pnpidacpi_to_pnpid(cid_list->id[i].value, dev_id->id);
210 pnp_add_id(dev_id, dev);
211 }
212 }
213
214 /* clear out the damaged flags */
215 if (!dev->active)
216 pnp_init_resource_table(&dev->res);
217 pnp_add_device(dev);
218 num ++;
219
220 return AE_OK;
221err1:
222 kfree(dev_id);
223err:
224 kfree(dev);
225 return -EINVAL;
226}
227
228static acpi_status __init pnpacpi_add_device_handler(acpi_handle handle,
229 u32 lvl, void *context, void **rv)
230{
231 struct acpi_device *device;
232
233 if (!acpi_bus_get_device(handle, &device))
234 pnpacpi_add_device(device);
235 else
236 return AE_CTRL_DEPTH;
237 return AE_OK;
238}
239
240int pnpacpi_disabled __initdata;
Adrian Bunkb449f632005-11-07 01:01:48 -0800241static int __init pnpacpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 if (acpi_disabled || pnpacpi_disabled) {
244 pnp_info("PnP ACPI: disabled");
245 return 0;
246 }
247 pnp_info("PnP ACPI init");
248 pnp_register_protocol(&pnpacpi_protocol);
249 acpi_get_devices(NULL, pnpacpi_add_device_handler, NULL, NULL);
250 pnp_info("PnP ACPI: found %d devices", num);
251 return 0;
252}
253subsys_initcall(pnpacpi_init);
254
255static int __init pnpacpi_setup(char *str)
256{
257 if (str == NULL)
258 return 1;
259 if (!strncmp(str, "off", 3))
260 pnpacpi_disabled = 1;
261 return 1;
262}
263__setup("pnpacpi=", pnpacpi_setup);
264
Adrian Bunkb449f632005-11-07 01:01:48 -0800265#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266EXPORT_SYMBOL(pnpacpi_protocol);
Adrian Bunkb449f632005-11-07 01:01:48 -0800267#endif