blob: 2b62219c5bf118c01e69cb7f824d2b43a091c52b [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2017 Heinrich Schuchardt
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +01006 */
7
8#ifndef _EFI_DRIVER_H
9#define _EFI_DRIVER_H 1
10
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010011#include <efi_loader.h>
12
Heinrich Schuchardt0850d7f2018-02-12 12:55:28 +010013/*
14 * Operations supported by an EFI driver with respect to the EFI uclass
15 *
16 * @protocol The GUID of the protocol which is consumed by the
17 * driver. This GUID is used by the EFI uclass in the
18 * supports() and start() methods of the
19 * EFI_DRIVER_BINDING_PROTOCOL.
20 * @child_protocol Protocol supported by the child handles generated by
21 * the EFI driver.
22 * @bind Function called by the EFI uclass to attach the
23 * driver to EFI driver to a handle.
24 */
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010025struct efi_driver_ops {
26 const efi_guid_t *protocol;
27 const efi_guid_t *child_protocol;
28 int (*bind)(efi_handle_t handle, void *interface);
29};
30
31/*
32 * This structure adds internal fields to the driver binding protocol.
33 */
34struct efi_driver_binding_extended_protocol {
35 struct efi_driver_binding_protocol bp;
36 const struct efi_driver_ops *ops;
37};
38
39#endif /* _EFI_DRIVER_H */