]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/NetworkInterfaceIdentifier.h
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Include / Protocol / NetworkInterfaceIdentifier.h
CommitLineData
d1f95000 1/** @file\r
af2dc6a7 2 EFI Network Interface Identifier Protocol.\r
d1f95000 3\r
9095d37b 4Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9344f092 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
eccca95e 6\r
7 @par Revision Reference:\r
af2dc6a7 8 This Protocol is introduced in EFI Specification 1.10.\r
d1f95000 9\r
10**/\r
11\r
12#ifndef __EFI_NETWORK_INTERFACE_IDENTIFER_H__\r
13#define __EFI_NETWORK_INTERFACE_IDENTIFER_H__\r
14\r
eccca95e 15//\r
16// GUID retired from UEFI Specification 2.1b\r
17//\r
d1f95000 18#define EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_GUID \\r
19 { \\r
20 0xE18541CD, 0xF755, 0x4f73, {0x92, 0x8D, 0x64, 0x3C, 0x8A, 0x79, 0xB2, 0x29 } \\r
21 }\r
22\r
eccca95e 23//\r
24// GUID intruduced in UEFI Specification 2.1b\r
25//\r
26#define EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_GUID_31 \\r
27 { \\r
28 0x1ACED566, 0x76ED, 0x4218, {0xBC, 0x81, 0x76, 0x7F, 0x1F, 0x97, 0x7A, 0x89 } \\r
29 }\r
30\r
61f2ab90
QO
31//\r
32// Revision defined in UEFI Specification 2.4\r
33//\r
2f88bd3a 34#define EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_REVISION 0x00020000\r
d1f95000 35\r
99e8ed21 36///\r
37/// Revision defined in EFI1.1.\r
eccca95e 38///\r
2f88bd3a 39#define EFI_NETWORK_INTERFACE_IDENTIFIER_INTERFACE_REVISION EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_REVISION\r
a6508c05 40\r
99e8ed21 41///\r
af2dc6a7 42/// Forward reference for pure ANSI compatability.\r
99e8ed21 43///\r
2f88bd3a 44typedef struct _EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL;\r
d1f95000 45\r
99e8ed21 46///\r
47/// Protocol defined in EFI1.1.\r
eccca95e 48///\r
2f88bd3a 49typedef EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL EFI_NETWORK_INTERFACE_IDENTIFIER_INTERFACE;\r
a6508c05 50\r
44717a39 51///\r
eccca95e 52/// An optional protocol that is used to describe details about the software\r
53/// layer that is used to produce the Simple Network Protocol.\r
44717a39 54///\r
d1f95000 55struct _EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL {\r
2f88bd3a
MK
56 UINT64 Revision; ///< The revision of the EFI_NETWORK_INTERFACE_IDENTIFIER protocol.\r
57 UINT64 Id; ///< The address of the first byte of the identifying structure for this network\r
58 ///< interface. This is only valid when the network interface is started\r
59 ///< (see Start()). When the network interface is not started, this field is set to zero.\r
60 UINT64 ImageAddr; ///< The address of the first byte of the identifying structure for this\r
61 ///< network interface. This is set to zero if there is no structure.\r
62 UINT32 ImageSize; ///< The size of unrelocated network interface image.\r
63 CHAR8 StringId[4]; ///< A four-character ASCII string that is sent in the class identifier field of\r
64 ///< option 60 in DHCP. For a Type of EfiNetworkInterfaceUndi, this field is UNDI.\r
65 UINT8 Type; ///< Network interface type. This will be set to one of the values\r
66 ///< in EFI_NETWORK_INTERFACE_TYPE.\r
67 UINT8 MajorVer; ///< Major version number.\r
68 UINT8 MinorVer; ///< Minor version number.\r
69 BOOLEAN Ipv6Supported; ///< TRUE if the network interface supports IPv6; otherwise FALSE.\r
70 UINT16 IfNum; ///< The network interface number that is being identified by this Network\r
71 ///< Interface Identifier Protocol. This field must be less than or\r
72 ///< equal to the (IFcnt | IFcntExt <<8 ) fields in the !PXE structure.\r
d1f95000 73};\r
74\r
d0a915a5 75///\r
2f88bd3a 76/// *******************************************************\r
d0a915a5 77/// EFI_NETWORK_INTERFACE_TYPE\r
2f88bd3a 78/// *******************************************************\r
d0a915a5
LG
79///\r
80typedef enum {\r
81 EfiNetworkInterfaceUndi = 1\r
82} EFI_NETWORK_INTERFACE_TYPE;\r
83\r
cb55fa38 84///\r
85/// Forward reference for pure ANSI compatability.\r
86///\r
2f88bd3a 87typedef struct undiconfig_table UNDI_CONFIG_TABLE;\r
cb55fa38 88\r
89///\r
90/// The format of the configuration table for UNDI\r
91///\r
92struct undiconfig_table {\r
2f88bd3a 93 UINT32 NumberOfInterfaces; ///< The number of NIC devices\r
cb55fa38 94 ///< that this UNDI controls.\r
2f88bd3a
MK
95 UINT32 reserved;\r
96 UNDI_CONFIG_TABLE *nextlink; ///< A pointer to the next UNDI\r
cb55fa38 97 ///< configuration table.\r
98 ///\r
99 /// The length of this array is given in the NumberOfInterfaces field.\r
100 ///\r
101 struct {\r
2f88bd3a
MK
102 VOID *NII_InterfacePointer; ///< Pointer to the NII interface structure.\r
103 VOID *DevicePathPointer; ///< Pointer to the device path for this NIC.\r
9095d37b 104 } NII_entry[1];\r
cb55fa38 105};\r
106\r
2f88bd3a
MK
107extern EFI_GUID gEfiNetworkInterfaceIdentifierProtocolGuid;\r
108extern EFI_GUID gEfiNetworkInterfaceIdentifierProtocolGuid_31;\r
d1f95000 109\r
1c455d59 110#endif\r