1 // SPDX-License-Identifier: GPL-2.0
3 * dev-path-parser.c - EFI Device Path parser
4 * Copyright (C) 2016 Lukas Wunner <lukas@wunner.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2) as
8 * published by the Free Software Foundation.
11 #include <linux/acpi.h>
12 #include <linux/efi.h>
13 #include <linux/pci.h>
16 struct acpi_device_id hid
[2];
17 char uid
[11]; /* UINT_MAX + null byte */
20 static int __init
match_acpi_dev(struct device
*dev
, void *data
)
22 struct acpi_hid_uid hid_uid
= *(struct acpi_hid_uid
*)data
;
23 struct acpi_device
*adev
= to_acpi_device(dev
);
25 if (acpi_match_device_ids(adev
, hid_uid
.hid
))
28 if (adev
->pnp
.unique_id
)
29 return !strcmp(adev
->pnp
.unique_id
, hid_uid
.uid
);
31 return !strcmp("0", hid_uid
.uid
);
34 static long __init
parse_acpi_path(struct efi_dev_path
*node
,
35 struct device
*parent
, struct device
**child
)
37 struct acpi_hid_uid hid_uid
= {};
38 struct device
*phys_dev
;
40 if (node
->length
!= 12)
43 sprintf(hid_uid
.hid
[0].id
, "%c%c%c%04X",
44 'A' + ((node
->acpi
.hid
>> 10) & 0x1f) - 1,
45 'A' + ((node
->acpi
.hid
>> 5) & 0x1f) - 1,
46 'A' + ((node
->acpi
.hid
>> 0) & 0x1f) - 1,
47 node
->acpi
.hid
>> 16);
48 sprintf(hid_uid
.uid
, "%u", node
->acpi
.uid
);
50 *child
= bus_find_device(&acpi_bus_type
, NULL
, &hid_uid
,
55 phys_dev
= acpi_get_first_physical_node(to_acpi_device(*child
));
65 static int __init
match_pci_dev(struct device
*dev
, void *data
)
67 unsigned int devfn
= *(unsigned int *)data
;
69 return dev_is_pci(dev
) && to_pci_dev(dev
)->devfn
== devfn
;
72 static long __init
parse_pci_path(struct efi_dev_path
*node
,
73 struct device
*parent
, struct device
**child
)
77 if (node
->length
!= 6)
82 devfn
= PCI_DEVFN(node
->pci
.dev
, node
->pci
.fn
);
84 *child
= device_find_child(parent
, &devfn
, match_pci_dev
);
92 * Insert parsers for further node types here.
94 * Each parser takes a pointer to the @node and to the @parent (will be NULL
95 * for the first device path node). If a device corresponding to @node was
96 * found below @parent, its reference count should be incremented and the
97 * device returned in @child.
99 * The return value should be 0 on success or a negative int on failure.
100 * The special return values 0x01 (EFI_DEV_END_INSTANCE) and 0xFF
101 * (EFI_DEV_END_ENTIRE) signal the end of the device path, only
102 * parse_end_path() is supposed to return this.
104 * Be sure to validate the node length and contents before commencing the
105 * search for a device.
108 static long __init
parse_end_path(struct efi_dev_path
*node
,
109 struct device
*parent
, struct device
**child
)
111 if (node
->length
!= 4)
113 if (node
->sub_type
!= EFI_DEV_END_INSTANCE
&&
114 node
->sub_type
!= EFI_DEV_END_ENTIRE
)
119 *child
= get_device(parent
);
120 return node
->sub_type
;
124 * efi_get_device_by_path - find device by EFI Device Path
125 * @node: EFI Device Path
126 * @len: maximum length of EFI Device Path in bytes
128 * Parse a series of EFI Device Path nodes at @node and find the corresponding
129 * device. If the device was found, its reference count is incremented and a
130 * pointer to it is returned. The caller needs to drop the reference with
131 * put_device() after use. The @node pointer is updated to point to the
132 * location immediately after the "End of Hardware Device Path" node.
134 * If another Device Path instance follows, @len is decremented by the number
135 * of bytes consumed. Otherwise @len is set to %0.
137 * If a Device Path node is malformed or its corresponding device is not found,
138 * @node is updated to point to this offending node and an ERR_PTR is returned.
140 * If @len is initially %0, the function returns %NULL. Thus, to iterate over
141 * all instances in a path, the following idiom may be used:
143 * while (!IS_ERR_OR_NULL(dev = efi_get_device_by_path(&node, &len))) {
144 * // do something with dev
150 * Devices can only be found if they're already instantiated. Most buses
151 * instantiate devices in the "subsys" initcall level, hence the earliest
152 * initcall level in which this function should be called is "fs".
154 * Returns the device on success or
155 * %ERR_PTR(-ENODEV) if no device was found,
156 * %ERR_PTR(-EINVAL) if a node is malformed or exceeds @len,
157 * %ERR_PTR(-ENOTSUPP) if support for a node type is not yet implemented.
159 struct device
* __init
efi_get_device_by_path(struct efi_dev_path
**node
,
162 struct device
*parent
= NULL
, *child
;
169 if (*len
< 4 || *len
< (*node
)->length
)
171 else if ((*node
)->type
== EFI_DEV_ACPI
&&
172 (*node
)->sub_type
== EFI_DEV_BASIC_ACPI
)
173 ret
= parse_acpi_path(*node
, parent
, &child
);
174 else if ((*node
)->type
== EFI_DEV_HW
&&
175 (*node
)->sub_type
== EFI_DEV_PCI
)
176 ret
= parse_pci_path(*node
, parent
, &child
);
177 else if (((*node
)->type
== EFI_DEV_END_PATH
||
178 (*node
)->type
== EFI_DEV_END_PATH2
))
179 ret
= parse_end_path(*node
, parent
, &child
);
188 *node
= (void *)*node
+ (*node
)->length
;
189 *len
-= (*node
)->length
;
192 if (ret
== EFI_DEV_END_ENTIRE
)