2 * pnpacpi -- PnP ACPI driver
4 * Copyright (c) 2004 Matthieu Castet <castet.matthieu@free.fr>
5 * Copyright (c) 2004 Li Shaohua <shaohua.li@intel.com>
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
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.
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
22 #include <linux/acpi.h>
23 #include <linux/pnp.h>
24 #include <acpi/acpi_bus.h>
29 /* We need only to blacklist devices that have already an acpi driver that
30 * can't use pnp layer. We don't need to blacklist device that are directly
31 * used by the kernel (PCI root, ...), as it is harmless and there were
32 * already present in pnpbios. But there is an exception for devices that
33 * have irqs (PIC, Timer) because we call acpi_register_gsi.
34 * Finaly only devices that have a CRS method need to be in this list.
36 static char __initdata excluded_id_list
[] =
38 "PNP0C0F," /* Link device */
40 "PNP0100," /* Timer */
42 static inline int is_exclusive_device(struct acpi_device
*dev
)
44 return (!acpi_match_ids(dev
, excluded_id_list
));
48 * Compatible Device IDs
51 if (!(('0' <= (c) && (c) <= '9') || ('A' <= (c) && (c) <= 'F'))) \
53 #define TEST_ALPHA(c) \
54 if (!('@' <= (c) || (c) <= 'Z')) \
56 static int __init
ispnpidacpi(char *id
)
70 static void __init
pnpidacpi_to_pnpid(char *id
, char *str
)
75 str
[3] = tolower(id
[3]);
76 str
[4] = tolower(id
[4]);
77 str
[5] = tolower(id
[5]);
78 str
[6] = tolower(id
[6]);
82 static int pnpacpi_get_resources(struct pnp_dev
* dev
, struct pnp_resource_table
* res
)
85 status
= pnpacpi_parse_allocated_resource((acpi_handle
)dev
->data
,
87 return ACPI_FAILURE(status
) ? -ENODEV
: 0;
90 static int pnpacpi_set_resources(struct pnp_dev
* dev
, struct pnp_resource_table
* res
)
92 acpi_handle handle
= dev
->data
;
93 struct acpi_buffer buffer
;
97 ret
= pnpacpi_build_resource_template(handle
, &buffer
);
100 ret
= pnpacpi_encode_resources(res
, &buffer
);
102 kfree(buffer
.pointer
);
105 status
= acpi_set_current_resources(handle
, &buffer
);
106 if (ACPI_FAILURE(status
))
108 kfree(buffer
.pointer
);
112 static int pnpacpi_disable_resources(struct pnp_dev
*dev
)
116 /* acpi_unregister_gsi(pnp_irq(dev, 0)); */
117 status
= acpi_evaluate_object((acpi_handle
)dev
->data
,
119 return ACPI_FAILURE(status
) ? -ENODEV
: 0;
122 static struct pnp_protocol pnpacpi_protocol
= {
123 .name
= "Plug and Play ACPI",
124 .get
= pnpacpi_get_resources
,
125 .set
= pnpacpi_set_resources
,
126 .disable
= pnpacpi_disable_resources
,
129 static int __init
pnpacpi_add_device(struct acpi_device
*device
)
131 acpi_handle temp
= NULL
;
133 struct pnp_id
*dev_id
;
136 status
= acpi_get_handle(device
->handle
, "_CRS", &temp
);
137 if (ACPI_FAILURE(status
) || !ispnpidacpi(acpi_device_hid(device
)) ||
138 is_exclusive_device(device
))
141 pnp_dbg("ACPI device : hid %s", acpi_device_hid(device
));
142 dev
= kzalloc(sizeof(struct pnp_dev
), GFP_KERNEL
);
144 pnp_err("Out of memory");
147 dev
->data
= device
->handle
;
148 /* .enabled means if the device can decode the resources */
149 dev
->active
= device
->status
.enabled
;
150 status
= acpi_get_handle(device
->handle
, "_SRS", &temp
);
151 if (ACPI_SUCCESS(status
))
152 dev
->capabilities
|= PNP_CONFIGURABLE
;
153 dev
->capabilities
|= PNP_READ
;
154 if (device
->flags
.dynamic_status
)
155 dev
->capabilities
|= PNP_WRITE
;
156 if (device
->flags
.removable
)
157 dev
->capabilities
|= PNP_REMOVABLE
;
158 status
= acpi_get_handle(device
->handle
, "_DIS", &temp
);
159 if (ACPI_SUCCESS(status
))
160 dev
->capabilities
|= PNP_DISABLE
;
162 dev
->protocol
= &pnpacpi_protocol
;
164 if (strlen(acpi_device_name(device
)))
165 strncpy(dev
->name
, acpi_device_name(device
), sizeof(dev
->name
));
167 strncpy(dev
->name
, acpi_device_bid(device
), sizeof(dev
->name
));
171 /* set the initial values for the PnP device */
172 dev_id
= kzalloc(sizeof(struct pnp_id
), GFP_KERNEL
);
175 pnpidacpi_to_pnpid(acpi_device_hid(device
), dev_id
->id
);
176 pnp_add_id(dev_id
, dev
);
179 /* parse allocated resource */
180 status
= pnpacpi_parse_allocated_resource(device
->handle
, &dev
->res
);
181 if (ACPI_FAILURE(status
) && (status
!= AE_NOT_FOUND
)) {
182 pnp_err("PnPACPI: METHOD_NAME__CRS failure for %s", dev_id
->id
);
187 if(dev
->capabilities
& PNP_CONFIGURABLE
) {
188 status
= pnpacpi_parse_resource_option_data(device
->handle
,
190 if (ACPI_FAILURE(status
) && (status
!= AE_NOT_FOUND
)) {
191 pnp_err("PnPACPI: METHOD_NAME__PRS failure for %s", dev_id
->id
);
196 /* parse compatible ids */
197 if (device
->flags
.compatible_ids
) {
198 struct acpi_compatible_id_list
*cid_list
= device
->pnp
.cid_list
;
201 for (i
= 0; i
< cid_list
->count
; i
++) {
202 if (!ispnpidacpi(cid_list
->id
[i
].value
))
204 dev_id
= kzalloc(sizeof(struct pnp_id
), GFP_KERNEL
);
208 pnpidacpi_to_pnpid(cid_list
->id
[i
].value
, dev_id
->id
);
209 pnp_add_id(dev_id
, dev
);
213 /* clear out the damaged flags */
215 pnp_init_resource_table(&dev
->res
);
227 static acpi_status __init
pnpacpi_add_device_handler(acpi_handle handle
,
228 u32 lvl
, void *context
, void **rv
)
230 struct acpi_device
*device
;
232 if (!acpi_bus_get_device(handle
, &device
))
233 pnpacpi_add_device(device
);
235 return AE_CTRL_DEPTH
;
239 static int __init
acpi_pnp_match(struct device
*dev
, void *_pnp
)
241 struct acpi_device
*acpi
= to_acpi_device(dev
);
242 struct pnp_dev
*pnp
= _pnp
;
244 /* true means it matched */
245 return acpi
->flags
.hardware_id
246 && !acpi_get_physical_device(acpi
->handle
)
247 && compare_pnp_id(pnp
->id
, acpi
->pnp
.hardware_id
);
250 static int __init
acpi_pnp_find_device(struct device
*dev
, acpi_handle
*handle
)
253 struct acpi_device
*acpi
;
255 adev
= bus_find_device(&acpi_bus_type
, NULL
,
261 acpi
= to_acpi_device(adev
);
262 *handle
= acpi
->handle
;
267 /* complete initialization of a PNPACPI device includes having
268 * pnpdev->dev.archdata.acpi_handle point to its ACPI sibling.
270 static struct acpi_bus_type __initdata acpi_pnp_bus
= {
271 .bus
= &pnp_bus_type
,
272 .find_device
= acpi_pnp_find_device
,
275 int pnpacpi_disabled __initdata
;
276 static int __init
pnpacpi_init(void)
278 if (acpi_disabled
|| pnpacpi_disabled
) {
279 pnp_info("PnP ACPI: disabled");
282 pnp_info("PnP ACPI init");
283 pnp_register_protocol(&pnpacpi_protocol
);
284 register_acpi_bus_type(&acpi_pnp_bus
);
285 acpi_get_devices(NULL
, pnpacpi_add_device_handler
, NULL
, NULL
);
286 pnp_info("PnP ACPI: found %d devices", num
);
287 unregister_acpi_bus_type(&acpi_pnp_bus
);
288 pnp_platform_devices
= 1;
291 subsys_initcall(pnpacpi_init
);
293 static int __init
pnpacpi_setup(char *str
)
297 if (!strncmp(str
, "off", 3))
298 pnpacpi_disabled
= 1;
301 __setup("pnpacpi=", pnpacpi_setup
);
304 EXPORT_SYMBOL(pnpacpi_protocol
);