blob: 111782ad6834ac29ae9a31c4fb75fea149671a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*******************************************************************************
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
* Copyright 2014 QLogic Corporation
* The contents of this file are subject to the terms of the
* QLogic End User License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the License at
* http://www.qlogic.com/Resources/Documents/DriverDownloadHelp/
* QLogic_End_User_Software_License.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
*
* FILE : I S C S I _ I N F O . H
* AUTHOR : Kevin Tran
*
* DESCRIPTION : This file contains macro definitions for ISCSI shared
* information.
*
* Revision History:
* Kevin Tran 07/23/2004 Created
*
******************************************************************************/
#ifndef __ISCSI_INFO_H__
#define __ISCSI_INFO_H__
typedef struct _iscsi_info_block_hdr_t
{
#define ISCSI_INFO_BLOCK_SIGNATURE 0x6b627369
u32_t signature;
u16_t length;
u8_t checksum;
u8_t boot_flags;
#define ISCSI_INFO_FLAGS_WINDOWS_HBA_BOOT (1 << 0)
#define BOOT_INFO_FLAGS_UEFI_BOOT (1 << 1)
} iscsi_info_block_hdr_t;
#define UEFI_BOOT_SIGNATURE 0x0EF10EF1
#define ISCSI_INFO_DATA_SIZE 1016
typedef struct _iscsi_info_block_t
{
iscsi_info_block_hdr_t hdr ;
u8_t data[ISCSI_INFO_DATA_SIZE];
} iscsi_info_block_t;
#define ISCSI_INFO_ID_TARGET_NAME 0x0
#define ISCSI_INFO_ID_TARGET_IP_ADDR 0x1
#define ISCSI_INFO_ID_TARGET_TCP_PORT 0x2
#define ISCSI_INFO_ID_INITIATOR_NAME 0x3
#define ISCSI_INFO_ID_IP_ADDRESS 0x4
#define ISCSI_INFO_ID_SUBNET_MASK 0x5
#define ISCSI_INFO_ID_DEFAULT_GATEWAY 0x6
#define ISCSI_INFO_ID_AUTHEN_MODE 0x7
#define ISCSI_INFO_ID_INIT_CHAP_ID 0x8
#define ISCSI_INFO_ID_INIT_CHAP_PW 0x9
#define ISCSI_INFO_ID_TARGET_CHAP_ID 0xa
#define ISCSI_INFO_ID_TARGET_CHAP_PW 0xb
#define ISCSI_INFO_ID_VLAN_ID 0xc
#define ISCSI_INFO_ID_PRIMARY_DNS 0xd
#define ISCSI_INFO_ID_SECONDARY_DNS 0xe
#define ISCSI_INFO_ID_INTF_MAC_ADDR 0xf
#define ISCSI_INFO_ID_IP_ADDRESS2 0x10
#define ISCSI_INFO_ID_SUBNET_MASK2 0x11
#define ISCSI_INFO_ID_DEFAULT_GATEWAY2 0x12
#define ISCSI_INFO_ID_VLAN_ID2 0x13
#define ISCSI_INFO_ID_INTF_MAC_ADDR2 0x14
#define ISCSI_INFO_ID_PRIMARY_DNS2 0x15
#define ISCSI_INFO_ID_SECONDARY_DNS2 0x16
#define ISCSI_INFO_ID_DHCP_SERVER_IP_ADDR 0x17
#define ISCSI_INFO_ID_BOOT_INTF 0x18
#define ISCSI_INFO_ID_TARGET_LUN_NUM 0x19
#define ISCSI_INFO_ID_PRIMARY_INTF 0x1a
#define ISCSI_INFO_ID_PCI_FUNCTION_NUM 0x1b
#define ISCSI_INFO_ID_DHCP_SERVER_IP_ADDR2 0x1c
#define ISCSI_INFO_ID_TARGET_IP_ADDR2 0x1d
#define ISCSI_INFO_ID_TARGET_TCP_PORT2 0x1e
#define ISCSI_INFO_ID_BOOT_PARAMETERS 0x1f
#define ISCSI_INFO_ID_BOOT_PARAMETERS2 0x20
#define ISCSI_INFO_ID_END 0xff
#define ISCSI_INFO_BOOT_PARAMS_IPv6_RA (1 << 0)
typedef struct iscsi_info_hdr
{
u16_t id;
u16_t length;
}iscsi_info_hdr;
typedef struct iscsi_info_entry
{
iscsi_info_hdr hdr;
u8_t data[1];
}iscsi_info_entry;
#endif /* __ISCSI_INFO_H__ */
|