1 // SPDX-License-Identifier: GPL-2.0+
3 * Uclass for EFI drivers
5 * Copyright (c) 2017 Heinrich Schuchardt
7 * For each EFI driver the uclass
9 * - installs the driver binding protocol
11 * The uclass provides the bind, start, and stop entry points for the driver
14 * In supported() and bind() it checks if the controller implements the protocol
15 * supported by the EFI driver. In the start() function it calls the bind()
16 * function of the EFI driver. In the stop() function it destroys the child
20 #define LOG_CATEGORY LOGC_EFI
23 #include <efi_driver.h>
28 * check_node_type() - check node type
30 * We do not support partitions as controller handles.
32 * @handle: handle to be checked
35 static efi_status_t check_node_type(efi_handle_t handle)
37 efi_status_t r, ret = EFI_SUCCESS;
38 const struct efi_device_path *dp;
40 /* Open the device path protocol */
41 r = EFI_CALL(systab.boottime->open_protocol(
42 handle, &efi_guid_device_path, (void **)&dp,
43 NULL, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL));
44 if (r == EFI_SUCCESS && dp) {
45 /* Get the last node */
46 const struct efi_device_path *node = efi_dp_last_node(dp);
47 /* We do not support partitions as controller */
48 if (!node || node->type == DEVICE_PATH_TYPE_MEDIA_DEVICE)
49 ret = EFI_UNSUPPORTED;
55 * efi_uc_supported() - check if the driver supports the controller
57 * @this: driver binding protocol
58 * @controller_handle: handle of the controller
59 * @remaining_device_path: path specifying the child controller
62 static efi_status_t EFIAPI efi_uc_supported(
63 struct efi_driver_binding_protocol *this,
64 efi_handle_t controller_handle,
65 struct efi_device_path *remaining_device_path)
69 struct efi_driver_binding_extended_protocol *bp =
70 (struct efi_driver_binding_extended_protocol *)this;
72 EFI_ENTRY("%p, %p, %ls", this, controller_handle,
73 efi_dp_str(remaining_device_path));
76 * U-Boot internal devices install protocols interfaces without calling
77 * ConnectController(). Hence we should not bind an extra driver.
79 if (controller_handle->dev) {
80 ret = EFI_UNSUPPORTED;
84 ret = EFI_CALL(systab.boottime->open_protocol(
85 controller_handle, bp->ops->protocol,
86 &interface, this->driver_binding_handle,
87 controller_handle, EFI_OPEN_PROTOCOL_BY_DRIVER));
89 case EFI_ACCESS_DENIED:
90 case EFI_ALREADY_STARTED:
95 ret = EFI_UNSUPPORTED;
99 ret = check_node_type(controller_handle);
101 r = efi_close_protocol(controller_handle, bp->ops->protocol,
102 this->driver_binding_handle,
104 if (r != EFI_SUCCESS)
105 ret = EFI_UNSUPPORTED;
107 return EFI_EXIT(ret);
111 * efi_uc_start() - create child controllers and attach driver
113 * @this: driver binding protocol
114 * @controller_handle: handle of the controller
115 * @remaining_device_path: path specifying the child controller
116 * Return: status code
118 static efi_status_t EFIAPI efi_uc_start(
119 struct efi_driver_binding_protocol *this,
120 efi_handle_t controller_handle,
121 struct efi_device_path *remaining_device_path)
124 void *interface = NULL;
125 struct efi_driver_binding_extended_protocol *bp =
126 (struct efi_driver_binding_extended_protocol *)this;
128 EFI_ENTRY("%p, %p, %ls", this, controller_handle,
129 efi_dp_str(remaining_device_path));
131 /* Attach driver to controller */
132 ret = EFI_CALL(systab.boottime->open_protocol(
133 controller_handle, bp->ops->protocol,
134 &interface, this->driver_binding_handle,
135 controller_handle, EFI_OPEN_PROTOCOL_BY_DRIVER));
137 case EFI_ACCESS_DENIED:
138 case EFI_ALREADY_STARTED:
143 ret = EFI_UNSUPPORTED;
146 ret = check_node_type(controller_handle);
147 if (ret != EFI_SUCCESS)
149 ret = bp->ops->bind(bp, controller_handle, interface);
150 if (ret == EFI_SUCCESS)
154 r = efi_close_protocol(controller_handle, bp->ops->protocol,
155 this->driver_binding_handle,
157 if (r != EFI_SUCCESS)
158 EFI_PRINT("Failure to close handle\n");
161 return EFI_EXIT(ret);
165 * disconnect_child() - remove a single child controller from the parent
168 * @controller_handle: parent controller
169 * @child_handle: child controller
170 * Return: status code
172 static efi_status_t disconnect_child(efi_handle_t controller_handle,
173 efi_handle_t child_handle)
176 efi_guid_t *guid_controller = NULL;
177 efi_guid_t *guid_child_controller = NULL;
179 ret = efi_close_protocol(controller_handle, guid_controller,
180 child_handle, child_handle);
181 if (ret != EFI_SUCCESS) {
182 EFI_PRINT("Cannot close protocol\n");
185 ret = EFI_CALL(systab.boottime->uninstall_protocol_interface(
186 child_handle, guid_child_controller, NULL));
187 if (ret != EFI_SUCCESS) {
188 EFI_PRINT("Cannot uninstall protocol interface\n");
195 * efi_uc_stop() - Remove child controllers and disconnect the controller
197 * @this: driver binding protocol
198 * @controller_handle: handle of the controller
199 * @number_of_children: number of child controllers to remove
200 * @child_handle_buffer: handles of the child controllers to remove
201 * Return: status code
203 static efi_status_t EFIAPI efi_uc_stop(
204 struct efi_driver_binding_protocol *this,
205 efi_handle_t controller_handle,
206 size_t number_of_children,
207 efi_handle_t *child_handle_buffer)
211 struct efi_open_protocol_info_entry *entry_buffer;
212 struct efi_driver_binding_extended_protocol *bp =
213 (struct efi_driver_binding_extended_protocol *)this;
215 EFI_ENTRY("%p, %p, %zu, %p", this, controller_handle,
216 number_of_children, child_handle_buffer);
218 /* Destroy provided child controllers */
219 if (number_of_children) {
222 for (i = 0; i < number_of_children; ++i) {
223 ret = disconnect_child(controller_handle,
224 child_handle_buffer[i]);
225 if (ret != EFI_SUCCESS)
232 /* Destroy all children */
233 ret = EFI_CALL(systab.boottime->open_protocol_information(
234 controller_handle, bp->ops->protocol,
235 &entry_buffer, &count));
236 if (ret != EFI_SUCCESS)
239 if (entry_buffer[--count].attributes &
240 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
241 ret = disconnect_child(
243 entry_buffer[count].agent_handle);
244 if (ret != EFI_SUCCESS)
248 ret = efi_free_pool(entry_buffer);
249 if (ret != EFI_SUCCESS)
250 log_err("Cannot free EFI memory pool\n");
252 /* Detach driver from controller */
253 ret = efi_close_protocol(controller_handle, bp->ops->protocol,
254 this->driver_binding_handle,
257 return EFI_EXIT(ret);
261 * efi_add_driver() - add driver
263 * @drv: driver to add
264 * Return: status code
266 static efi_status_t efi_add_driver(struct driver *drv)
269 const struct efi_driver_ops *ops = drv->ops;
270 struct efi_driver_binding_extended_protocol *bp;
272 log_debug("Adding EFI driver '%s'\n", drv->name);
273 if (!ops->protocol) {
274 log_err("EFI protocol GUID missing for driver '%s'\n",
276 return EFI_INVALID_PARAMETER;
278 bp = calloc(1, sizeof(struct efi_driver_binding_extended_protocol));
280 return EFI_OUT_OF_RESOURCES;
282 bp->bp.supported = efi_uc_supported;
283 bp->bp.start = efi_uc_start;
284 bp->bp.stop = efi_uc_stop;
285 bp->bp.version = 0xffffffff;
288 ret = efi_create_handle(&bp->bp.driver_binding_handle);
289 if (ret != EFI_SUCCESS)
291 bp->bp.image_handle = bp->bp.driver_binding_handle;
292 ret = efi_add_protocol(bp->bp.driver_binding_handle,
293 &efi_guid_driver_binding_protocol, bp);
294 if (ret != EFI_SUCCESS)
298 if (ret != EFI_SUCCESS)
304 if (bp->bp.driver_binding_handle)
305 efi_delete_handle(bp->bp.driver_binding_handle);
311 * efi_driver_init() - initialize the EFI drivers
313 * Called by efi_init_obj_list().
315 * Return: 0 = success, any other value will stop further execution
317 efi_status_t efi_driver_init(void)
320 efi_status_t ret = EFI_SUCCESS;
322 log_debug("Initializing EFI driver framework\n");
323 for (drv = ll_entry_start(struct driver, driver);
324 drv < ll_entry_end(struct driver, driver); ++drv) {
325 if (drv->id == UCLASS_EFI_LOADER) {
326 ret = efi_add_driver(drv);
327 if (ret != EFI_SUCCESS) {
328 log_err("Failed to add EFI driver %s\n",
338 * efi_uc_init() - initialize the EFI uclass
340 * @class: the EFI uclass
341 * Return: 0 = success
343 static int efi_uc_init(struct uclass *class)
345 log_debug("Initializing UCLASS_EFI_LOADER\n");
350 * efi_uc_destroy() - destroy the EFI uclass
352 * @class: the EFI uclass
353 * Return: 0 = success
355 static int efi_uc_destroy(struct uclass *class)
357 log_debug("Destroying UCLASS_EFI_LOADER\n");
361 UCLASS_DRIVER(efi) = {
363 .id = UCLASS_EFI_LOADER,
365 .destroy = efi_uc_destroy,