libefi: Move EFI ZFS functions to libefi
[unleashed.git] / usr / src / boot / sys / boot / efi / boot1 / boot_module.h
blob30ecd30d9ca06d33e8095721e97859b2202adb77
1 /*-
2 * Copyright (c) 2015 Eric McCorkle
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
26 * $FreeBSD$
29 #ifndef _BOOT_MODULE_H_
30 #define _BOOT_MODULE_H_
32 #include <stdbool.h>
34 #include <efi.h>
35 #include <efilib.h>
36 #include <eficonsctl.h>
38 #ifdef EFI_DEBUG
39 #define DPRINTF(fmt, args...) printf(fmt, ##args)
40 #define DSTALL(d) BS->Stall(d)
41 #else
42 #define DPRINTF(fmt, ...) {}
43 #define DSTALL(d) {}
44 #endif
46 /* EFI device info */
47 typedef struct dev_info
49 EFI_BLOCK_IO *dev;
50 EFI_DEVICE_PATH *devpath;
51 EFI_HANDLE *devhandle;
52 void *devdata;
53 BOOLEAN preferred;
54 struct dev_info *next;
55 } dev_info_t;
58 * A boot loader module.
60 * This is a standard interface for filesystem modules in the EFI system.
62 typedef struct boot_module_t
64 const char *name;
66 /* init is the optional initialiser for the module. */
67 void (*init)(void);
70 * probe checks to see if the module can handle dev.
72 * Return codes:
73 * EFI_SUCCESS = The module can handle the device.
74 * EFI_NOT_FOUND = The module can not handle the device.
75 * Other = The module encountered an error.
77 EFI_STATUS (*probe)(dev_info_t* dev);
80 * load should select the best out of a set of devices that probe
81 * indicated were loadable and load the specified file.
83 * Return codes:
84 * EFI_SUCCESS = The module can handle the device.
85 * EFI_NOT_FOUND = The module can not handle the device.
86 * Other = The module encountered an error.
88 EFI_STATUS (*load)(const char *filepath, dev_info_t *devinfo,
89 void **buf, size_t *bufsize);
91 /* status outputs information about the probed devices. */
92 void (*status)(void);
94 /* valid devices as found by probe. */
95 dev_info_t *(*devices)(void);
96 } boot_module_t;
98 /* Standard boot modules. */
99 extern const boot_module_t ufs_module;
100 extern const boot_module_t zfs_module;
102 /* Functions available to modules. */
103 extern void add_device(dev_info_t **devinfop, dev_info_t *devinfo);
105 extern int devpath_strlcat(char *buf, size_t size, EFI_DEVICE_PATH *devpath);
106 extern char *devpath_str(EFI_DEVICE_PATH *devpath);
107 #endif