]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/IScsiDxe/IScsiConfigNVDataStruc.h
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiConfigNVDataStruc.h
CommitLineData
12618416 1/** @file\r
2 Define NVData structures used by the iSCSI configuration component\r
6a690e23 3\r
e5eed7d3
HT
4Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>\r
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_NVDATASTRUC_H_\r
16#define _ISCSI_NVDATASTRUC_H_\r
17\r
18#define ISCSI_CONFIG_GUID \\r
19 { \\r
20 0x6456ed61, 0x3579, 0x41c9, { 0x8a, 0x26, 0x0a, 0x0b, 0xd6, 0x2b, 0x78, 0xfc } \\r
21 }\r
22\r
23#define VAR_EQ_TEST_NAME 0x100\r
24\r
25#define FORMID_MAIN_FORM 1\r
26#define FORMID_DEVICE_FORM 2\r
27\r
28#define ISCSI_NAME_MAX_SIZE 224\r
29\r
30//\r
31// Vfr has a limit on the size, it's 255 bytes.\r
32//\r
7d6cdbc8 33#define ISCSI_NAME_IFR_MIN_SIZE 4\r
54fbbbd7 34#define ISCSI_NAME_IFR_MAX_SIZE 223\r
6a690e23 35\r
36#define IP_MIN_SIZE 7\r
37#define IP_MAX_SIZE 15\r
38#define IP4_STR_MAX_SIZE 16\r
39\r
40#define LUN_MIN_SIZE 1\r
41#define LUN_MAX_SIZE 20\r
42\r
43#define ISCSI_CHAP_NONE 0\r
44#define ISCSI_CHAP_UNI 1\r
45#define ISCSI_CHAP_MUTUAL 2\r
46\r
47#define TARGET_PORT_MIN_NUM 0\r
48#define TARGET_PORT_MAX_NUM 65535\r
49\r
50#define DEVICE_ENTRY_LABEL 0x1234\r
7e3bcccb 51#define LABEL_END 0xffff\r
6a690e23 52\r
93e3992d 53#define KEY_INITIATOR_NAME 0x101\r
54#define KEY_DHCP_ENABLE 0x102\r
55#define KEY_LOCAL_IP 0x103\r
56#define KEY_SUBNET_MASK 0x104\r
57#define KEY_GATE_WAY 0x105\r
58#define KEY_TARGET_IP 0x106\r
59#define KEY_CHAP_NAME 0x107\r
60#define KEY_CHAP_SECRET 0x108\r
61#define KEY_REVERSE_CHAP_NAME 0x109\r
62#define KEY_REVERSE_CHAP_SECRET 0x10a\r
63#define KEY_SAVE_CHANGES 0x10b\r
64#define KEY_TARGET_NAME 0x10c\r
65#define KEY_BOOT_LUN 0x10d\r
6a690e23 66\r
67#define KEY_DEVICE_ENTRY_BASE 0x1000\r
68\r
69#define ISCSI_LUN_STR_MAX_LEN 21\r
c2c1e450 70#define ISCSI_CHAP_SECRET_MIN_LEN 12\r
71#define ISCSI_CHAP_SECRET_MAX_LEN 16\r
72//\r
73// ISCSI_CHAP_SECRET_STORAGE = ISCSI_CHAP_SECRET_MAX_LEN + sizeof (NULL-Terminator)\r
74//\r
75#define ISCSI_CHAP_SECRET_STORAGE 17\r
76\r
6a690e23 77#define ISCSI_CHAP_NAME_MAX_LEN 126\r
78\r
79#pragma pack(1)\r
80typedef struct {\r
7d6cdbc8 81 CHAR16 InitiatorName[ISCSI_NAME_MAX_SIZE];\r
6a690e23 82\r
83 UINT8 Enabled;\r
84\r
85 UINT8 InitiatorInfoFromDhcp;\r
86 CHAR16 LocalIp[IP4_STR_MAX_SIZE];\r
87 CHAR16 SubnetMask[IP4_STR_MAX_SIZE];\r
88 CHAR16 Gateway[IP4_STR_MAX_SIZE];\r
89\r
7d6cdbc8 90 CHAR16 TargetName[ISCSI_NAME_MAX_SIZE];\r
6a690e23 91 CHAR16 TargetIp[IP4_STR_MAX_SIZE];\r
92 UINT16 TargetPort;\r
93 CHAR16 BootLun[ISCSI_LUN_STR_MAX_LEN];\r
94 UINT8 TargetInfoFromDhcp;\r
95\r
96 UINT8 CHAPType;\r
97 CHAR16 CHAPName[ISCSI_CHAP_NAME_MAX_LEN];\r
c2c1e450 98 CHAR16 CHAPSecret[ISCSI_CHAP_SECRET_STORAGE];\r
6a690e23 99 CHAR16 ReverseCHAPName[ISCSI_CHAP_NAME_MAX_LEN];\r
c2c1e450 100 CHAR16 ReverseCHAPSecret[ISCSI_CHAP_SECRET_STORAGE];\r
6a690e23 101} ISCSI_CONFIG_IFR_NVDATA;\r
102#pragma pack()\r
103\r
104#endif\r