]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/IScsiDxe/IScsiConfigNVDataStruc.h
Update UefiHiiLib to support new defined IFR related HII APIs.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiConfigNVDataStruc.h
1 /** @file
2 Define NVData structures used by the iSCSI configuration component
3
4 Copyright (c) 2004 - 2007, Intel Corporation.<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _ISCSI_NVDATASTRUC_H_
16 #define _ISCSI_NVDATASTRUC_H_
17
18 #define ISCSI_CONFIG_GUID \
19 { \
20 0x6456ed61, 0x3579, 0x41c9, { 0x8a, 0x26, 0x0a, 0x0b, 0xd6, 0x2b, 0x78, 0xfc } \
21 }
22
23 #define VAR_EQ_TEST_NAME 0x100
24
25 #define FORMID_MAIN_FORM 1
26 #define FORMID_DEVICE_FORM 2
27
28 #define ISCSI_NAME_MAX_SIZE 224
29
30 //
31 // Vfr has a limit on the size, it's 255 bytes.
32 //
33 #define ISCSI_NAME_IFR_MAX_SIZE 126
34
35 #define IP_MIN_SIZE 7
36 #define IP_MAX_SIZE 15
37 #define IP4_STR_MAX_SIZE 16
38
39 #define LUN_MIN_SIZE 1
40 #define LUN_MAX_SIZE 20
41
42 #define ISCSI_CHAP_NONE 0
43 #define ISCSI_CHAP_UNI 1
44 #define ISCSI_CHAP_MUTUAL 2
45
46 #define TARGET_PORT_MIN_NUM 0
47 #define TARGET_PORT_MAX_NUM 65535
48
49 #define DEVICE_ENTRY_LABEL 0x1234
50 #define LABEL_END 0xffff
51
52 #define KEY_INITIATOR_NAME 0x101
53 #define KEY_DHCP_ENABLE 0x102
54 #define KEY_LOCAL_IP 0x103
55 #define KEY_SUBNET_MASK 0x104
56 #define KEY_GATE_WAY 0x105
57 #define KEY_TARGET_IP 0x106
58 #define KEY_CHAP_NAME 0x107
59 #define KEY_CHAP_SECRET 0x108
60 #define KEY_REVERSE_CHAP_NAME 0x109
61 #define KEY_REVERSE_CHAP_SECRET 0x10a
62 #define KEY_SAVE_CHANGES 0x10b
63 #define KEY_TARGET_NAME 0x10c
64 #define KEY_BOOT_LUN 0x10d
65
66 #define KEY_DEVICE_ENTRY_BASE 0x1000
67
68 #define ISCSI_LUN_STR_MAX_LEN 21
69 #define ISCSI_CHAP_SECRET_MIN_LEN 13
70 #define ISCSI_CHAP_SECRET_MAX_LEN 17
71 #define ISCSI_CHAP_NAME_MAX_LEN 126
72
73 #pragma pack(1)
74 typedef struct {
75 CHAR16 InitiatorName[ISCSI_NAME_IFR_MAX_SIZE];
76
77 UINT8 Enabled;
78
79 UINT8 InitiatorInfoFromDhcp;
80 CHAR16 LocalIp[IP4_STR_MAX_SIZE];
81 CHAR16 SubnetMask[IP4_STR_MAX_SIZE];
82 CHAR16 Gateway[IP4_STR_MAX_SIZE];
83
84 CHAR16 TargetName[ISCSI_NAME_IFR_MAX_SIZE];
85 CHAR16 TargetIp[IP4_STR_MAX_SIZE];
86 UINT16 TargetPort;
87 CHAR16 BootLun[ISCSI_LUN_STR_MAX_LEN];
88 UINT8 TargetInfoFromDhcp;
89
90 UINT8 CHAPType;
91 CHAR16 CHAPName[ISCSI_CHAP_NAME_MAX_LEN];
92 CHAR16 CHAPSecret[ISCSI_CHAP_SECRET_MAX_LEN];
93 CHAR16 ReverseCHAPName[ISCSI_CHAP_NAME_MAX_LEN];
94 CHAR16 ReverseCHAPSecret[ISCSI_CHAP_SECRET_MAX_LEN];
95 } ISCSI_CONFIG_IFR_NVDATA;
96 #pragma pack()
97
98 #endif