summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/efi/Protocol/DevicePath.h
diff options
context:
space:
mode:
authorMichael Brown2016-10-16 17:32:49 +0200
committerMichael Brown2016-10-16 18:08:02 +0200
commitf796d5b6b63d3b986996458b4dbed4679e1abb3a (patch)
tree8891c0d73d116f2a5ea97be4bb4f4310d13add74 /src/include/ipxe/efi/Protocol/DevicePath.h
parent[efi] Mark AppleNetBoot.h as a native iPXE header (diff)
downloadipxe-f796d5b6b63d3b986996458b4dbed4679e1abb3a.tar.gz
ipxe-f796d5b6b63d3b986996458b4dbed4679e1abb3a.tar.xz
ipxe-f796d5b6b63d3b986996458b4dbed4679e1abb3a.zip
[efi] Update to current EDK2 headers
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/efi/Protocol/DevicePath.h')
-rw-r--r--src/include/ipxe/efi/Protocol/DevicePath.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/include/ipxe/efi/Protocol/DevicePath.h b/src/include/ipxe/efi/Protocol/DevicePath.h
index d35b65fa9..d406b2868 100644
--- a/src/include/ipxe/efi/Protocol/DevicePath.h
+++ b/src/include/ipxe/efi/Protocol/DevicePath.h
@@ -5,7 +5,7 @@
from a software point of view. The path must persist from boot to boot, so
it can not contain things like PCI bus numbers that change from boot to boot.
-Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at
@@ -511,7 +511,7 @@ typedef struct {
UINT16 HBAPortNumber;
///
/// The Port multiplier port number that facilitates the connection
- /// to the device. Bit 15 should be set if the device is directly
+ /// to the device. Must be set to 0xFFFF if the device is directly
/// connected to the HBA.
///
UINT16 PortMultiplierPortNumber;
@@ -857,6 +857,15 @@ typedef struct {
} SD_DEVICE_PATH;
///
+/// EMMC (Embedded MMC) Device Path SubType.
+///
+#define MSG_EMMC_DP 0x1D
+typedef struct {
+ EFI_DEVICE_PATH_PROTOCOL Header;
+ UINT8 SlotNumber;
+} EMMC_DEVICE_PATH;
+
+///
/// iSCSI Device Path SubType
///
#define MSG_ISCSI_DP 0x13
@@ -1241,6 +1250,7 @@ typedef union {
WIFI_DEVICE_PATH WiFi;
UFS_DEVICE_PATH Ufs;
SD_DEVICE_PATH Sd;
+ EMMC_DEVICE_PATH Emmc;
HARDDRIVE_DEVICE_PATH HardDrive;
CDROM_DEVICE_PATH CD;
@@ -1297,6 +1307,7 @@ typedef union {
WIFI_DEVICE_PATH *WiFi;
UFS_DEVICE_PATH *Ufs;
SD_DEVICE_PATH *Sd;
+ EMMC_DEVICE_PATH *Emmc;
HARDDRIVE_DEVICE_PATH *HardDrive;
CDROM_DEVICE_PATH *CD;