1 /******************************************************************************
3 * Module Name: utids - support for device Ids - HID, UID, CID, SUB, CLS
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
48 #define _COMPONENT ACPI_UTILITIES
49 ACPI_MODULE_NAME("utids")
51 /*******************************************************************************
53 * FUNCTION: acpi_ut_execute_HID
55 * PARAMETERS: device_node - Node for the device
56 * return_id - Where the string HID is returned
60 * DESCRIPTION: Executes the _HID control method that returns the hardware
61 * ID of the device. The HID is either an 32-bit encoded EISAID
62 * Integer or a String. A string is always returned. An EISAID
63 * is converted to a string.
65 * NOTE: Internal function, no parameter validation
67 ******************************************************************************/
69 acpi_ut_execute_HID(struct acpi_namespace_node
*device_node
,
70 struct acpi_pnp_device_id
**return_id
)
72 union acpi_operand_object
*obj_desc
;
73 struct acpi_pnp_device_id
*hid
;
77 ACPI_FUNCTION_TRACE(ut_execute_HID
);
79 status
= acpi_ut_evaluate_object(device_node
, METHOD_NAME__HID
,
80 ACPI_BTYPE_INTEGER
| ACPI_BTYPE_STRING
,
82 if (ACPI_FAILURE(status
)) {
83 return_ACPI_STATUS(status
);
86 /* Get the size of the String to be returned, includes null terminator */
88 if (obj_desc
->common
.type
== ACPI_TYPE_INTEGER
) {
89 length
= ACPI_EISAID_STRING_SIZE
;
91 length
= obj_desc
->string
.length
+ 1;
94 /* Allocate a buffer for the HID */
97 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pnp_device_id
) +
100 status
= AE_NO_MEMORY
;
104 /* Area for the string starts after PNP_DEVICE_ID struct */
107 ACPI_ADD_PTR(char, hid
, sizeof(struct acpi_pnp_device_id
));
109 /* Convert EISAID to a string or simply copy existing string */
111 if (obj_desc
->common
.type
== ACPI_TYPE_INTEGER
) {
112 acpi_ex_eisa_id_to_string(hid
->string
, obj_desc
->integer
.value
);
114 strcpy(hid
->string
, obj_desc
->string
.pointer
);
117 hid
->length
= length
;
122 /* On exit, we must delete the return object */
124 acpi_ut_remove_reference(obj_desc
);
125 return_ACPI_STATUS(status
);
128 /*******************************************************************************
130 * FUNCTION: acpi_ut_execute_UID
132 * PARAMETERS: device_node - Node for the device
133 * return_id - Where the string UID is returned
137 * DESCRIPTION: Executes the _UID control method that returns the unique
138 * ID of the device. The UID is either a 64-bit Integer (NOT an
139 * EISAID) or a string. Always returns a string. A 64-bit integer
140 * is converted to a decimal string.
142 * NOTE: Internal function, no parameter validation
144 ******************************************************************************/
147 acpi_ut_execute_UID(struct acpi_namespace_node
*device_node
,
148 struct acpi_pnp_device_id
**return_id
)
150 union acpi_operand_object
*obj_desc
;
151 struct acpi_pnp_device_id
*uid
;
155 ACPI_FUNCTION_TRACE(ut_execute_UID
);
157 status
= acpi_ut_evaluate_object(device_node
, METHOD_NAME__UID
,
158 ACPI_BTYPE_INTEGER
| ACPI_BTYPE_STRING
,
160 if (ACPI_FAILURE(status
)) {
161 return_ACPI_STATUS(status
);
164 /* Get the size of the String to be returned, includes null terminator */
166 if (obj_desc
->common
.type
== ACPI_TYPE_INTEGER
) {
167 length
= ACPI_MAX64_DECIMAL_DIGITS
+ 1;
169 length
= obj_desc
->string
.length
+ 1;
172 /* Allocate a buffer for the UID */
175 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pnp_device_id
) +
178 status
= AE_NO_MEMORY
;
182 /* Area for the string starts after PNP_DEVICE_ID struct */
185 ACPI_ADD_PTR(char, uid
, sizeof(struct acpi_pnp_device_id
));
187 /* Convert an Integer to string, or just copy an existing string */
189 if (obj_desc
->common
.type
== ACPI_TYPE_INTEGER
) {
190 acpi_ex_integer_to_string(uid
->string
, obj_desc
->integer
.value
);
192 strcpy(uid
->string
, obj_desc
->string
.pointer
);
195 uid
->length
= length
;
200 /* On exit, we must delete the return object */
202 acpi_ut_remove_reference(obj_desc
);
203 return_ACPI_STATUS(status
);
206 /*******************************************************************************
208 * FUNCTION: acpi_ut_execute_CID
210 * PARAMETERS: device_node - Node for the device
211 * return_cid_list - Where the CID list is returned
213 * RETURN: Status, list of CID strings
215 * DESCRIPTION: Executes the _CID control method that returns one or more
216 * compatible hardware IDs for the device.
218 * NOTE: Internal function, no parameter validation
220 * A _CID method can return either a single compatible ID or a package of
221 * compatible IDs. Each compatible ID can be one of the following:
222 * 1) Integer (32 bit compressed EISA ID) or
223 * 2) String (PCI ID format, e.g. "PCI\VEN_vvvv&DEV_dddd&SUBSYS_ssssssss")
225 * The Integer CIDs are converted to string format by this function.
227 ******************************************************************************/
230 acpi_ut_execute_CID(struct acpi_namespace_node
*device_node
,
231 struct acpi_pnp_device_id_list
**return_cid_list
)
233 union acpi_operand_object
**cid_objects
;
234 union acpi_operand_object
*obj_desc
;
235 struct acpi_pnp_device_id_list
*cid_list
;
236 char *next_id_string
;
237 u32 string_area_size
;
244 ACPI_FUNCTION_TRACE(ut_execute_CID
);
246 /* Evaluate the _CID method for this device */
248 status
= acpi_ut_evaluate_object(device_node
, METHOD_NAME__CID
,
249 ACPI_BTYPE_INTEGER
| ACPI_BTYPE_STRING
250 | ACPI_BTYPE_PACKAGE
, &obj_desc
);
251 if (ACPI_FAILURE(status
)) {
252 return_ACPI_STATUS(status
);
256 * Get the count and size of the returned _CIDs. _CID can return either
257 * a Package of Integers/Strings or a single Integer or String.
258 * Note: This section also validates that all CID elements are of the
259 * correct type (Integer or String).
261 if (obj_desc
->common
.type
== ACPI_TYPE_PACKAGE
) {
262 count
= obj_desc
->package
.count
;
263 cid_objects
= obj_desc
->package
.elements
;
264 } else { /* Single Integer or String CID */
267 cid_objects
= &obj_desc
;
270 string_area_size
= 0;
271 for (i
= 0; i
< count
; i
++) {
273 /* String lengths include null terminator */
275 switch (cid_objects
[i
]->common
.type
) {
276 case ACPI_TYPE_INTEGER
:
278 string_area_size
+= ACPI_EISAID_STRING_SIZE
;
281 case ACPI_TYPE_STRING
:
283 string_area_size
+= cid_objects
[i
]->string
.length
+ 1;
294 * Now that we know the length of the CIDs, allocate return buffer:
295 * 1) Size of the base structure +
296 * 2) Size of the CID PNP_DEVICE_ID array +
297 * 3) Size of the actual CID strings
299 cid_list_size
= sizeof(struct acpi_pnp_device_id_list
) +
300 ((count
- 1) * sizeof(struct acpi_pnp_device_id
)) +
303 cid_list
= ACPI_ALLOCATE_ZEROED(cid_list_size
);
305 status
= AE_NO_MEMORY
;
309 /* Area for CID strings starts after the CID PNP_DEVICE_ID array */
311 next_id_string
= ACPI_CAST_PTR(char, cid_list
->ids
) +
312 ((acpi_size
)count
* sizeof(struct acpi_pnp_device_id
));
314 /* Copy/convert the CIDs to the return buffer */
316 for (i
= 0; i
< count
; i
++) {
317 if (cid_objects
[i
]->common
.type
== ACPI_TYPE_INTEGER
) {
319 /* Convert the Integer (EISAID) CID to a string */
321 acpi_ex_eisa_id_to_string(next_id_string
,
322 cid_objects
[i
]->integer
.
324 length
= ACPI_EISAID_STRING_SIZE
;
325 } else { /* ACPI_TYPE_STRING */
327 /* Copy the String CID from the returned object */
329 strcpy(next_id_string
, cid_objects
[i
]->string
.pointer
);
330 length
= cid_objects
[i
]->string
.length
+ 1;
333 cid_list
->ids
[i
].string
= next_id_string
;
334 cid_list
->ids
[i
].length
= length
;
335 next_id_string
+= length
;
338 /* Finish the CID list */
340 cid_list
->count
= count
;
341 cid_list
->list_size
= cid_list_size
;
342 *return_cid_list
= cid_list
;
346 /* On exit, we must delete the _CID return object */
348 acpi_ut_remove_reference(obj_desc
);
349 return_ACPI_STATUS(status
);
352 /*******************************************************************************
354 * FUNCTION: acpi_ut_execute_CLS
356 * PARAMETERS: device_node - Node for the device
357 * return_id - Where the _CLS is returned
361 * DESCRIPTION: Executes the _CLS control method that returns PCI-defined
362 * class code of the device. The _CLS value is always a package
363 * containing PCI class information as a list of integers.
364 * The returned string has format "BBSSPP", where:
365 * BB = Base-class code
366 * SS = Sub-class code
367 * PP = Programming Interface code
369 ******************************************************************************/
372 acpi_ut_execute_CLS(struct acpi_namespace_node
*device_node
,
373 struct acpi_pnp_device_id
**return_id
)
375 union acpi_operand_object
*obj_desc
;
376 union acpi_operand_object
**cls_objects
;
378 struct acpi_pnp_device_id
*cls
;
381 u8 class_code
[3] = { 0, 0, 0 };
383 ACPI_FUNCTION_TRACE(ut_execute_CLS
);
385 status
= acpi_ut_evaluate_object(device_node
, METHOD_NAME__CLS
,
386 ACPI_BTYPE_PACKAGE
, &obj_desc
);
387 if (ACPI_FAILURE(status
)) {
388 return_ACPI_STATUS(status
);
391 /* Get the size of the String to be returned, includes null terminator */
393 length
= ACPI_PCICLS_STRING_SIZE
;
394 cls_objects
= obj_desc
->package
.elements
;
395 count
= obj_desc
->package
.count
;
397 if (obj_desc
->common
.type
== ACPI_TYPE_PACKAGE
) {
399 && cls_objects
[0]->common
.type
== ACPI_TYPE_INTEGER
) {
400 class_code
[0] = (u8
)cls_objects
[0]->integer
.value
;
403 && cls_objects
[1]->common
.type
== ACPI_TYPE_INTEGER
) {
404 class_code
[1] = (u8
)cls_objects
[1]->integer
.value
;
407 && cls_objects
[2]->common
.type
== ACPI_TYPE_INTEGER
) {
408 class_code
[2] = (u8
)cls_objects
[2]->integer
.value
;
412 /* Allocate a buffer for the CLS */
415 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pnp_device_id
) +
418 status
= AE_NO_MEMORY
;
422 /* Area for the string starts after PNP_DEVICE_ID struct */
425 ACPI_ADD_PTR(char, cls
, sizeof(struct acpi_pnp_device_id
));
427 /* Simply copy existing string */
429 acpi_ex_pci_cls_to_string(cls
->string
, class_code
);
430 cls
->length
= length
;
435 /* On exit, we must delete the return object */
437 acpi_ut_remove_reference(obj_desc
);
438 return_ACPI_STATUS(status
);