]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/IScsiDxe/IScsiConfig.h
Rollback the change 15178.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiConfig.h
CommitLineData
12618416 1/** @file\r
d272bf7d 2 The header file of IScsiConfig.c.\r
6a690e23 3\r
b0c975b6 4Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 5This program and the accompanying materials\r
7a444476 6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
6a690e23 12\r
12618416 13**/\r
6a690e23 14\r
15#ifndef _ISCSI_CONFIG_H_\r
16#define _ISCSI_CONFIG_H_\r
17\r
7e3bcccb 18#include <Guid/MdeModuleHii.h>\r
b9982883 19#include <Protocol/HiiConfigRouting.h>\r
93e3992d 20#include <Library/HiiLib.h>\r
f6f910dd 21#include <Library/DevicePathLib.h>\r
6a690e23 22#include <Library/DebugLib.h>\r
23#include <Library/BaseLib.h>\r
6a690e23 24#include <Library/NetLib.h>\r
6a690e23 25\r
26extern UINT8 IScsiConfigDxeBin[];\r
6924dbdf 27extern UINT8 IScsi4DxeStrings[];\r
6a690e23 28\r
29#define ISCSI_INITATOR_NAME_VAR_NAME L"I_NAME"\r
30\r
31#define ISCSI_CONFIG_VAR_ATTR (EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE)\r
32\r
f3f2e05d 33#define ISCSI_FORM_CALLBACK_INFO_SIGNATURE SIGNATURE_32 ('I', 'f', 'c', 'i')\r
6a690e23 34\r
963dbb30 35\r
36\r
37/**\r
38 If the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear, \r
39 then this macro return a pointer to a data structure ISCSI_FORM_CALLBACK_INFO.\r
40\r
41 If the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set, \r
42 The Signature field of the data structure ISCSI_FORM_CALLBACK_INFO \r
43 is compared to TestSignature. If the signatures match, then a pointer \r
44 to the pointer to a data structure ISCSI_FORM_CALLBACK_INFO is returned. \r
45 If the signatures do not match, then DebugAssert() is called with a description \r
46 of "CR has a bad signature" and Callback is returned. \r
47\r
48 If the data type ISCSI_FORM_CALLBACK_INFO_SIGNATURE does not contain the field\r
49 specified by Callback, then the module will not compile.\r
50\r
51 If ISCSI_FORM_CALLBACK_INFO_SIGNATURE does not contain a field called Signature, \r
52 then the module will not compile.\r
53\r
55a64ae0 54 @param Callback Pointer to the specified field within the data \r
963dbb30 55 structure ISCSI_FORM_CALLBACK_INFO.\r
55a64ae0 56 @return A pointer to the pointer to a data structure ISCSI_FORM_CALLBACK_INFO.\r
57 @retval Others Some unexpected error happened.\r
963dbb30 58**/\r
59\r
6a690e23 60#define ISCSI_FORM_CALLBACK_INFO_FROM_FORM_CALLBACK(Callback) \\r
61 CR ( \\r
62 Callback, \\r
63 ISCSI_FORM_CALLBACK_INFO, \\r
93e3992d 64 ConfigAccess, \\r
6a690e23 65 ISCSI_FORM_CALLBACK_INFO_SIGNATURE \\r
66 )\r
67\r
68#pragma pack(1)\r
69\r
70typedef struct _ISCSI_MAC_INFO {\r
71 EFI_MAC_ADDRESS Mac;\r
72 UINT8 Len;\r
779ae357 73 UINT16 VlanId;\r
6a690e23 74} ISCSI_MAC_INFO;\r
75\r
76typedef struct _ISCSI_DEVICE_LIST {\r
77 UINT8 NumDevice;\r
78 ISCSI_MAC_INFO MacInfo[1];\r
79} ISCSI_DEVICE_LIST;\r
80\r
81#pragma pack()\r
82\r
83typedef struct _ISCSI_CONFIG_FORM_ENTRY {\r
e48e37fc 84 LIST_ENTRY Link;\r
6a690e23 85 EFI_HANDLE Controller;\r
86 CHAR16 MacString[95];\r
6c7a807a 87 EFI_STRING_ID PortTitleToken;\r
88 EFI_STRING_ID PortTitleHelpToken;\r
6a690e23 89\r
90 ISCSI_SESSION_CONFIG_NVDATA SessionConfigData;\r
91 ISCSI_CHAP_AUTH_CONFIG_NVDATA AuthConfigData;\r
92} ISCSI_CONFIG_FORM_ENTRY;\r
93\r
94typedef struct _ISCSI_FORM_CALLBACK_INFO {\r
93e3992d 95 UINTN Signature;\r
96 EFI_HANDLE DriverHandle;\r
97 EFI_HII_CONFIG_ACCESS_PROTOCOL ConfigAccess;\r
98 EFI_HII_DATABASE_PROTOCOL *HiiDatabase;\r
99 EFI_HII_CONFIG_ROUTING_PROTOCOL *ConfigRouting;\r
100 UINT16 *KeyList;\r
101 VOID *FormBuffer;\r
102 EFI_HII_HANDLE RegisteredHandle;\r
103 ISCSI_CONFIG_FORM_ENTRY *Current;\r
6a690e23 104} ISCSI_FORM_CALLBACK_INFO;\r
105\r
f6f910dd 106#pragma pack(1)\r
107\r
108///\r
109/// HII specific Vendor Device Path definition.\r
110///\r
111typedef struct {\r
112 VENDOR_DEVICE_PATH VendorDevicePath;\r
113 EFI_DEVICE_PATH_PROTOCOL End;\r
114} HII_VENDOR_DEVICE_PATH;\r
115\r
116#pragma pack()\r
117\r
12618416 118/**\r
119 Updates the iSCSI configuration form to add/delete an entry for the iSCSI\r
120 device specified by the Controller.\r
121\r
d272bf7d 122 @param[in] DriverBindingHandle The driverbinding handle.\r
123 @param[in] Controller The controller handle of the iSCSI device.\r
124 @param[in] AddForm Whether to add or delete a form entry.\r
12618416 125\r
126 @retval EFI_SUCCESS The iSCSI configuration form is updated.\r
12618416 127 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.\r
963dbb30 128 @retval Others Other errors as indicated.\r
12618416 129**/\r
6a690e23 130EFI_STATUS\r
131IScsiConfigUpdateForm (\r
132 IN EFI_HANDLE DriverBindingHandle,\r
133 IN EFI_HANDLE Controller,\r
134 IN BOOLEAN AddForm\r
135 );\r
136\r
12618416 137/**\r
138 Initialize the iSCSI configuration form.\r
139\r
d272bf7d 140 @param[in] DriverBindingHandle The iSCSI driverbinding handle.\r
12618416 141\r
d272bf7d 142 @retval EFI_SUCCESS The iSCSI configuration form is initialized.\r
143 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.\r
963dbb30 144 @retval Others Other errors as indicated.\r
12618416 145**/\r
6a690e23 146EFI_STATUS\r
147IScsiConfigFormInit (\r
963dbb30 148 VOID\r
6a690e23 149 );\r
150\r
12618416 151/**\r
152 Unload the iSCSI configuration form, this includes: delete all the iSCSI\r
153 device configuration entries, uninstall the form callback protocol and\r
154 free the resources used.\r
155\r
d272bf7d 156 @param[in] DriverBindingHandle The iSCSI driverbinding handle.\r
157 \r
12618416 158 @retval EFI_SUCCESS The iSCSI configuration form is unloaded.\r
12618416 159 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.\r
12618416 160**/\r
6a690e23 161EFI_STATUS\r
162IScsiConfigFormUnload (\r
163 IN EFI_HANDLE DriverBindingHandle\r
164 );\r
165\r
166#endif\r