uefi_raw/protocol/
device_path.rs1mod device_path_gen;
4
5use crate::{guid, Char16, Guid};
6
7pub use device_path_gen::{acpi, bios_boot_spec, end, hardware, media, messaging};
8
9#[derive(Debug)]
17#[repr(C)]
18pub struct DevicePathProtocol {
19 pub major_type: DeviceType,
20 pub sub_type: DeviceSubType,
21 pub length: [u8; 2],
22 }
24
25impl DevicePathProtocol {
26 pub const GUID: Guid = guid!("09576e91-6d3f-11d2-8e39-00a0c969723b");
27}
28
29newtype_enum! {
30pub enum DeviceType: u8 => {
32 HARDWARE = 0x01,
37 ACPI = 0x02,
43 MESSAGING = 0x03,
49 MEDIA = 0x04,
54 BIOS_BOOT_SPEC = 0x05,
59 END = 0x7F,
64}}
65
66#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
68#[repr(transparent)]
69pub struct DeviceSubType(pub u8);
70
71impl DeviceSubType {
72 pub const HARDWARE_PCI: Self = Self(1);
74 pub const HARDWARE_PCCARD: Self = Self(2);
76 pub const HARDWARE_MEMORY_MAPPED: Self = Self(3);
78 pub const HARDWARE_VENDOR: Self = Self(4);
80 pub const HARDWARE_CONTROLLER: Self = Self(5);
82 pub const HARDWARE_BMC: Self = Self(6);
84
85 pub const ACPI: Self = Self(1);
87 pub const ACPI_EXPANDED: Self = Self(2);
89 pub const ACPI_ADR: Self = Self(3);
91 pub const ACPI_NVDIMM: Self = Self(4);
93
94 pub const MESSAGING_ATAPI: Self = Self(1);
96 pub const MESSAGING_SCSI: Self = Self(2);
98 pub const MESSAGING_FIBRE_CHANNEL: Self = Self(3);
100 pub const MESSAGING_1394: Self = Self(4);
102 pub const MESSAGING_USB: Self = Self(5);
104 pub const MESSAGING_I2O: Self = Self(6);
106 pub const MESSAGING_INFINIBAND: Self = Self(9);
108 pub const MESSAGING_VENDOR: Self = Self(10);
110 pub const MESSAGING_MAC_ADDRESS: Self = Self(11);
112 pub const MESSAGING_IPV4: Self = Self(12);
114 pub const MESSAGING_IPV6: Self = Self(13);
116 pub const MESSAGING_UART: Self = Self(14);
118 pub const MESSAGING_USB_CLASS: Self = Self(15);
120 pub const MESSAGING_USB_WWID: Self = Self(16);
122 pub const MESSAGING_DEVICE_LOGICAL_UNIT: Self = Self(17);
124 pub const MESSAGING_SATA: Self = Self(18);
126 pub const MESSAGING_ISCSI: Self = Self(19);
128 pub const MESSAGING_VLAN: Self = Self(20);
130 pub const MESSAGING_FIBRE_CHANNEL_EX: Self = Self(21);
132 pub const MESSAGING_SCSI_SAS_EX: Self = Self(22);
134 pub const MESSAGING_NVME_NAMESPACE: Self = Self(23);
136 pub const MESSAGING_URI: Self = Self(24);
138 pub const MESSAGING_UFS: Self = Self(25);
140 pub const MESSAGING_SD: Self = Self(26);
142 pub const MESSAGING_BLUETOOTH: Self = Self(27);
144 pub const MESSAGING_WIFI: Self = Self(28);
146 pub const MESSAGING_EMMC: Self = Self(29);
148 pub const MESSAGING_BLUETOOTH_LE: Self = Self(30);
150 pub const MESSAGING_DNS: Self = Self(31);
152 pub const MESSAGING_NVDIMM_NAMESPACE: Self = Self(32);
154 pub const MESSAGING_REST_SERVICE: Self = Self(33);
156 pub const MESSAGING_NVME_OF_NAMESPACE: Self = Self(34);
158
159 pub const MEDIA_HARD_DRIVE: Self = Self(1);
161 pub const MEDIA_CD_ROM: Self = Self(2);
163 pub const MEDIA_VENDOR: Self = Self(3);
165 pub const MEDIA_FILE_PATH: Self = Self(4);
167 pub const MEDIA_PROTOCOL: Self = Self(5);
169 pub const MEDIA_PIWG_FIRMWARE_FILE: Self = Self(6);
171 pub const MEDIA_PIWG_FIRMWARE_VOLUME: Self = Self(7);
173 pub const MEDIA_RELATIVE_OFFSET_RANGE: Self = Self(8);
175 pub const MEDIA_RAM_DISK: Self = Self(9);
177
178 pub const BIOS_BOOT_SPECIFICATION: Self = Self(1);
180
181 pub const END_INSTANCE: Self = Self(0x01);
183 pub const END_ENTIRE: Self = Self(0xff);
185}
186
187#[derive(Debug)]
188#[repr(C)]
189pub struct DevicePathToTextProtocol {
190 pub convert_device_node_to_text: unsafe extern "efiapi" fn(
191 device_node: *const DevicePathProtocol,
192 display_only: bool,
193 allow_shortcuts: bool,
194 ) -> *const Char16,
195 pub convert_device_path_to_text: unsafe extern "efiapi" fn(
196 device_path: *const DevicePathProtocol,
197 display_only: bool,
198 allow_shortcuts: bool,
199 ) -> *const Char16,
200}
201
202impl DevicePathToTextProtocol {
203 pub const GUID: Guid = guid!("8b843e20-8132-4852-90cc-551a4e4a7f1c");
204}
205
206#[derive(Debug)]
207#[repr(C)]
208pub struct DevicePathFromTextProtocol {
209 pub convert_text_to_device_node:
210 unsafe extern "efiapi" fn(text_device_node: *const Char16) -> *const DevicePathProtocol,
211 pub convert_text_to_device_path:
212 unsafe extern "efiapi" fn(text_device_path: *const Char16) -> *const DevicePathProtocol,
213}
214
215impl DevicePathFromTextProtocol {
216 pub const GUID: Guid = guid!("05c99a21-c70f-4ad2-8a5f-35df3343f51e");
217}