Subversion Repositories HelenOS

Rev

Rev 2726 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2726 Rev 2927
1
#ifndef _EFI_PXE_H
1
#ifndef _EFI_PXE_H
2
#define _EFI_PXE_H
2
#define _EFI_PXE_H
3
 
3
 
4
 
4
 
5
/*++
5
/*++
6
Copyright (c) Intel  1999
6
Copyright (c) Intel  1999
7
 
7
 
8
Module name:
8
Module name:
9
    efi_pxe.h
9
    efi_pxe.h
10
 
10
 
11
32/64-bit PXE specification:
11
32/64-bit PXE specification:
12
    alpha-4, 99-Dec-17
12
    alpha-4, 99-Dec-17
13
 
13
 
14
Abstract:
14
Abstract:
15
    This header file contains all of the PXE type definitions,
15
    This header file contains all of the PXE type definitions,
16
    structure prototypes, global variables and constants that
16
    structure prototypes, global variables and constants that
17
    are needed for porting PXE to EFI.
17
    are needed for porting PXE to EFI.
18
--*/
18
--*/
19
 
19
 
20
#pragma pack(1)
20
#pragma pack(1)
21
 
21
 
22
#define PXE_INTEL_ORDER         1   // Intel order
22
#define PXE_INTEL_ORDER         1   // Intel order
23
//#define PXE_NETWORK_ORDER         1   // network order
23
//#define PXE_NETWORK_ORDER         1   // network order
24
 
24
 
25
#define PXE_UINT64_SUPPORT          1   // UINT64 supported
25
#define PXE_UINT64_SUPPORT          1   // UINT64 supported
26
//#define PXE_NO_UINT64_SUPPORT     1   // UINT64 not supported
26
//#define PXE_NO_UINT64_SUPPORT     1   // UINT64 not supported
27
 
27
 
28
#define PXE_BUSTYPE(a,b,c,d)            \
28
#define PXE_BUSTYPE(a,b,c,d)            \
29
((((PXE_UINT32)(d) & 0xFF) << 24) | \
29
((((PXE_UINT32)(d) & 0xFF) << 24) | \
30
(((PXE_UINT32)(c) & 0xFF) << 16) |  \
30
(((PXE_UINT32)(c) & 0xFF) << 16) |  \
31
(((PXE_UINT32)(b) & 0xFF) << 8) |       \
31
(((PXE_UINT32)(b) & 0xFF) << 8) |       \
32
((PXE_UINT32)(a) & 0xFF))
32
((PXE_UINT32)(a) & 0xFF))
33
 
33
 
34
//
34
//
35
// UNDI ROM ID and devive ID signature
35
// UNDI ROM ID and devive ID signature
36
//
36
//
37
#define PXE_BUSTYPE_PXE         PXE_BUSTYPE('!', 'P', 'X', 'E')
37
#define PXE_BUSTYPE_PXE         PXE_BUSTYPE('!', 'P', 'X', 'E')
38
 
38
 
39
//
39
//
40
// BUS ROM ID signatures
40
// BUS ROM ID signatures
41
//
41
//
42
#define PXE_BUSTYPE_PCI         PXE_BUSTYPE('P', 'C', 'I', 'R')
42
#define PXE_BUSTYPE_PCI         PXE_BUSTYPE('P', 'C', 'I', 'R')
43
#define PXE_BUSTYPE_PC_CARD     PXE_BUSTYPE('P', 'C', 'C', 'R')
43
#define PXE_BUSTYPE_PC_CARD     PXE_BUSTYPE('P', 'C', 'C', 'R')
44
#define PXE_BUSTYPE_USB         PXE_BUSTYPE('U', 'S', 'B', 'R')
44
#define PXE_BUSTYPE_USB         PXE_BUSTYPE('U', 'S', 'B', 'R')
45
#define PXE_BUSTYPE_1394        PXE_BUSTYPE('1', '3', '9', '4')
45
#define PXE_BUSTYPE_1394        PXE_BUSTYPE('1', '3', '9', '4')
46
 
46
 
47
#define PXE_SWAP_UINT16(n)          \
47
#define PXE_SWAP_UINT16(n)          \
48
((((PXE_UINT16)(n) & 0x00FF) << 8) |    \
48
((((PXE_UINT16)(n) & 0x00FF) << 8) |    \
49
(((PXE_UINT16)(n) & 0xFF00) >> 8))
49
(((PXE_UINT16)(n) & 0xFF00) >> 8))
50
 
50
 
51
#define PXE_SWAP_UINT32(n)              \
51
#define PXE_SWAP_UINT32(n)              \
52
((((PXE_UINT32)(n) & 0x000000FF) << 24) |   \
52
((((PXE_UINT32)(n) & 0x000000FF) << 24) |   \
53
(((PXE_UINT32)(n) & 0x0000FF00) << 8) |     \
53
(((PXE_UINT32)(n) & 0x0000FF00) << 8) |     \
54
(((PXE_UINT32)(n) & 0x00FF0000) >> 8) |     \
54
(((PXE_UINT32)(n) & 0x00FF0000) >> 8) |     \
55
(((PXE_UINT32)(n) & 0xFF000000) >> 24))
55
(((PXE_UINT32)(n) & 0xFF000000) >> 24))
56
 
56
 
57
#if PXE_UINT64_SUPPORT != 0
57
#if PXE_UINT64_SUPPORT != 0
58
#define PXE_SWAP_UINT64(n)                  \
58
#define PXE_SWAP_UINT64(n)                  \
59
((((PXE_UINT64)(n) & 0x00000000000000FF) << 56) |   \
59
((((PXE_UINT64)(n) & 0x00000000000000FF) << 56) |   \
60
(((PXE_UINT64)(n) & 0x000000000000FF00) << 40) |    \
60
(((PXE_UINT64)(n) & 0x000000000000FF00) << 40) |    \
61
(((PXE_UINT64)(n) & 0x0000000000FF0000) << 24) |    \
61
(((PXE_UINT64)(n) & 0x0000000000FF0000) << 24) |    \
62
(((PXE_UINT64)(n) & 0x00000000FF000000) << 8) | \
62
(((PXE_UINT64)(n) & 0x00000000FF000000) << 8) | \
63
(((PXE_UINT64)(n) & 0x000000FF00000000) >> 8) | \
63
(((PXE_UINT64)(n) & 0x000000FF00000000) >> 8) | \
64
(((PXE_UINT64)(n) & 0x0000FF0000000000) >> 24) |    \
64
(((PXE_UINT64)(n) & 0x0000FF0000000000) >> 24) |    \
65
(((PXE_UINT64)(n) & 0x00FF000000000000) >> 40) |    \
65
(((PXE_UINT64)(n) & 0x00FF000000000000) >> 40) |    \
66
(((PXE_UINT64)(n) & 0xFF00000000000000) >> 56))
66
(((PXE_UINT64)(n) & 0xFF00000000000000) >> 56))
67
#endif // PXE_UINT64_SUPPORT
67
#endif // PXE_UINT64_SUPPORT
68
 
68
 
69
#if PXE_NO_UINT64_SUPPORT != 0
69
#if PXE_NO_UINT64_SUPPORT != 0
70
#define PXE_SWAP_UINT64(n)                      \
70
#define PXE_SWAP_UINT64(n)                      \
71
{                                       \
71
{                                       \
72
PXE_UINT32 tmp = (PXE_UINT64)(n)[1];                \
72
PXE_UINT32 tmp = (PXE_UINT64)(n)[1];                \
73
(PXE_UINT64)(n)[1] = PXE_SWAP_UINT32((PXE_UINT64)(n)[0]);   \
73
(PXE_UINT64)(n)[1] = PXE_SWAP_UINT32((PXE_UINT64)(n)[0]);   \
74
(PXE_UINT64)(n)[0] = tmp;                       \
74
(PXE_UINT64)(n)[0] = tmp;                       \
75
}
75
}
76
#endif // PXE_NO_UINT64_SUPPORT
76
#endif // PXE_NO_UINT64_SUPPORT
77
 
77
 
78
#define PXE_CPBSIZE_NOT_USED            0   // zero
78
#define PXE_CPBSIZE_NOT_USED            0   // zero
79
#define PXE_DBSIZE_NOT_USED         0   // zero
79
#define PXE_DBSIZE_NOT_USED         0   // zero
80
#define PXE_CPBADDR_NOT_USED        (PXE_UINT64)0       // zero
80
#define PXE_CPBADDR_NOT_USED        (PXE_UINT64)0       // zero
81
#define PXE_DBADDR_NOT_USED     (PXE_UINT64)0       // zero
81
#define PXE_DBADDR_NOT_USED     (PXE_UINT64)0       // zero
82
 
82
 
83
#define PXE_CONST const
83
#define PXE_CONST const
84
 
84
 
85
#define PXE_VOLATILE volatile
85
#define PXE_VOLATILE volatile
86
 
86
 
87
typedef void PXE_VOID;
87
typedef void PXE_VOID;
88
 
88
 
89
typedef unsigned char PXE_UINT8;
89
typedef unsigned char PXE_UINT8;
90
 
90
 
91
typedef unsigned short PXE_UINT16;
91
typedef unsigned short PXE_UINT16;
92
 
92
 
93
typedef unsigned PXE_UINT32;
93
typedef unsigned PXE_UINT32;
94
 
94
 
95
#if PXE_UINT64_SUPPORT != 0
95
#if PXE_UINT64_SUPPORT != 0
96
// typedef unsigned long PXE_UINT64;
96
// typedef unsigned long PXE_UINT64;
97
typedef UINT64 PXE_UINT64;
97
typedef UINT64 PXE_UINT64;
98
#endif // PXE_UINT64_SUPPORT
98
#endif // PXE_UINT64_SUPPORT
99
 
99
 
100
#if PXE_NO_UINT64_SUPPORT != 0
100
#if PXE_NO_UINT64_SUPPORT != 0
101
typedef PXE_UINT32 PXE_UINT64[2];
101
typedef PXE_UINT32 PXE_UINT64[2];
102
#endif // PXE_NO_UINT64_SUPPORT
102
#endif // PXE_NO_UINT64_SUPPORT
103
 
103
 
104
typedef unsigned PXE_UINTN;
104
typedef unsigned PXE_UINTN;
105
 
105
 
106
typedef PXE_UINT8 PXE_BOOL;
106
typedef PXE_UINT8 PXE_BOOL;
107
 
107
 
108
#define PXE_FALSE               0   // zero
108
#define PXE_FALSE               0   // zero
109
#define PXE_TRUE                    (!PXE_FALSE)
109
#define PXE_TRUE                    (!PXE_FALSE)
110
 
110
 
111
typedef PXE_UINT16 PXE_OPCODE;
111
typedef PXE_UINT16 PXE_OPCODE;
112
 
112
 
113
//
113
//
114
// Return UNDI operational state.
114
// Return UNDI operational state.
115
//
115
//
116
#define PXE_OPCODE_GET_STATE                    0x0000
116
#define PXE_OPCODE_GET_STATE                    0x0000
117
 
117
 
118
//
118
//
119
// Change UNDI operational state from Stopped to Started.
119
// Change UNDI operational state from Stopped to Started.
120
//
120
//
121
#define PXE_OPCODE_START                    0x0001
121
#define PXE_OPCODE_START                    0x0001
122
 
122
 
123
//
123
//
124
// Change UNDI operational state from Started to Stopped.
124
// Change UNDI operational state from Started to Stopped.
125
//
125
//
126
#define PXE_OPCODE_STOP                     0x0002
126
#define PXE_OPCODE_STOP                     0x0002
127
 
127
 
128
//
128
//
129
// Get UNDI initialization information.
129
// Get UNDI initialization information.
130
//
130
//
131
#define PXE_OPCODE_GET_INIT_INFO                0x0003
131
#define PXE_OPCODE_GET_INIT_INFO                0x0003
132
 
132
 
133
//
133
//
134
// Get NIC configuration information.
134
// Get NIC configuration information.
135
//
135
//
136
#define PXE_OPCODE_GET_CONFIG_INFO              0x0004
136
#define PXE_OPCODE_GET_CONFIG_INFO              0x0004
137
 
137
 
138
//
138
//
139
// Changed UNDI operational state from Started to Initialized.
139
// Changed UNDI operational state from Started to Initialized.
140
//
140
//
141
#define PXE_OPCODE_INITIALIZE                   0x0005
141
#define PXE_OPCODE_INITIALIZE                   0x0005
142
 
142
 
143
//
143
//
144
// Re-initialize the NIC H/W.
144
// Re-initialize the NIC H/W.
145
//
145
//
146
#define PXE_OPCODE_RESET                    0x0006
146
#define PXE_OPCODE_RESET                    0x0006
147
 
147
 
148
//
148
//
149
// Change the UNDI operational state from Initialized to Started.
149
// Change the UNDI operational state from Initialized to Started.
150
//
150
//
151
#define PXE_OPCODE_SHUTDOWN                 0x0007
151
#define PXE_OPCODE_SHUTDOWN                 0x0007
152
 
152
 
153
//
153
//
154
// Read & change state of external interrupt enables.
154
// Read & change state of external interrupt enables.
155
//
155
//
156
#define PXE_OPCODE_INTERRUPT_ENABLES                0x0008
156
#define PXE_OPCODE_INTERRUPT_ENABLES                0x0008
157
 
157
 
158
//
158
//
159
// Read & change state of packet receive filters.
159
// Read & change state of packet receive filters.
160
//
160
//
161
#define PXE_OPCODE_RECEIVE_FILTERS              0x0009
161
#define PXE_OPCODE_RECEIVE_FILTERS              0x0009
162
 
162
 
163
//
163
//
164
// Read & change station MAC address.
164
// Read & change station MAC address.
165
//
165
//
166
#define PXE_OPCODE_STATION_ADDRESS              0x000A
166
#define PXE_OPCODE_STATION_ADDRESS              0x000A
167
 
167
 
168
//
168
//
169
// Read traffic statistics.
169
// Read traffic statistics.
170
//
170
//
171
#define PXE_OPCODE_STATISTICS                   0x000B
171
#define PXE_OPCODE_STATISTICS                   0x000B
172
 
172
 
173
//
173
//
174
// Convert multicast IP address to multicast MAC address.
174
// Convert multicast IP address to multicast MAC address.
175
//
175
//
176
#define PXE_OPCODE_MCAST_IP_TO_MAC              0x000C
176
#define PXE_OPCODE_MCAST_IP_TO_MAC              0x000C
177
 
177
 
178
//
178
//
179
// Read or change non-volatile storage on the NIC.
179
// Read or change non-volatile storage on the NIC.
180
//
180
//
181
#define PXE_OPCODE_NVDATA                   0x000D
181
#define PXE_OPCODE_NVDATA                   0x000D
182
 
182
 
183
//
183
//
184
// Get & clear interrupt status.
184
// Get & clear interrupt status.
185
//
185
//
186
#define PXE_OPCODE_GET_STATUS                   0x000E
186
#define PXE_OPCODE_GET_STATUS                   0x000E
187
 
187
 
188
//
188
//
189
// Fill media header in packet for transmit.
189
// Fill media header in packet for transmit.
190
//
190
//
191
#define PXE_OPCODE_FILL_HEADER              0x000F
191
#define PXE_OPCODE_FILL_HEADER              0x000F
192
 
192
 
193
//
193
//
194
// Transmit packet(s).
194
// Transmit packet(s).
195
//
195
//
196
#define PXE_OPCODE_TRANSMIT                 0x0010
196
#define PXE_OPCODE_TRANSMIT                 0x0010
197
 
197
 
198
//
198
//
199
// Receive packet.
199
// Receive packet.
200
//
200
//
201
#define PXE_OPCODE_RECEIVE                  0x0011
201
#define PXE_OPCODE_RECEIVE                  0x0011
202
 
202
 
203
// last valid opcode:
203
// last valid opcode:
204
#define PXE_OPCODE_VALID_MAX                    0x0011
204
#define PXE_OPCODE_VALID_MAX                    0x0011
205
 
205
 
206
//
206
//
207
// Last valid PXE UNDI OpCode number.
207
// Last valid PXE UNDI OpCode number.
208
//
208
//
209
#define PXE_OPCODE_LAST_VALID                   0x0011
209
#define PXE_OPCODE_LAST_VALID                   0x0011
210
 
210
 
211
typedef PXE_UINT16 PXE_OPFLAGS;
211
typedef PXE_UINT16 PXE_OPFLAGS;
212
 
212
 
213
#define PXE_OPFLAGS_NOT_USED                    0x0000
213
#define PXE_OPFLAGS_NOT_USED                    0x0000
214
 
214
 
215
////////////////////////////////////////
215
////////////////////////////////////////
216
// UNDI Get State
216
// UNDI Get State
217
//
217
//
218
 
218
 
219
// No OpFlags
219
// No OpFlags
220
 
220
 
221
////////////////////////////////////////
221
////////////////////////////////////////
222
// UNDI Start
222
// UNDI Start
223
//
223
//
224
 
224
 
225
// No OpFlags
225
// No OpFlags
226
 
226
 
227
////////////////////////////////////////
227
////////////////////////////////////////
228
// UNDI Stop
228
// UNDI Stop
229
//
229
//
230
 
230
 
231
// No OpFlags
231
// No OpFlags
232
 
232
 
233
////////////////////////////////////////
233
////////////////////////////////////////
234
// UNDI Get Init Info
234
// UNDI Get Init Info
235
//
235
//
236
 
236
 
237
// No Opflags
237
// No Opflags
238
 
238
 
239
////////////////////////////////////////
239
////////////////////////////////////////
240
// UNDI Get Config Info
240
// UNDI Get Config Info
241
//
241
//
242
 
242
 
243
// No Opflags
243
// No Opflags
244
 
244
 
245
////////////////////////////////////////
245
////////////////////////////////////////
246
// UNDI Initialize
246
// UNDI Initialize
247
//
247
//
248
 
248
 
249
#define PXE_OPFLAGS_INITIALIZE_CABLE_DETECT_MASK    0x0001
249
#define PXE_OPFLAGS_INITIALIZE_CABLE_DETECT_MASK    0x0001
250
#define PXE_OPFLAGS_INITIALIZE_DETECT_CABLE         0x0000
250
#define PXE_OPFLAGS_INITIALIZE_DETECT_CABLE         0x0000
251
#define PXE_OPFLAGS_INITIALIZE_DO_NOT_DETECT_CABLE  0x0001
251
#define PXE_OPFLAGS_INITIALIZE_DO_NOT_DETECT_CABLE  0x0001
252
 
252
 
253
////////////////////////////////////////
253
////////////////////////////////////////
254
// UNDI Reset
254
// UNDI Reset
255
//
255
//
256
 
256
 
257
#define PXE_OPFLAGS_RESET_DISABLE_INTERRUPTS        0x0001
257
#define PXE_OPFLAGS_RESET_DISABLE_INTERRUPTS        0x0001
258
#define PXE_OPFLAGS_RESET_DISABLE_FILTERS           0x0002
258
#define PXE_OPFLAGS_RESET_DISABLE_FILTERS           0x0002
259
 
259
 
260
////////////////////////////////////////
260
////////////////////////////////////////
261
// UNDI Shutdown
261
// UNDI Shutdown
262
//
262
//
263
 
263
 
264
// No OpFlags
264
// No OpFlags
265
 
265
 
266
////////////////////////////////////////
266
////////////////////////////////////////
267
// UNDI Interrupt Enables
267
// UNDI Interrupt Enables
268
//
268
//
269
 
269
 
270
//
270
//
271
// Select whether to enable or disable external interrupt signals.
271
// Select whether to enable or disable external interrupt signals.
272
// Setting both enable and disable will return PXE_STATCODE_INVALID_OPFLAGS.
272
// Setting both enable and disable will return PXE_STATCODE_INVALID_OPFLAGS.
273
//
273
//
274
#define PXE_OPFLAGS_INTERRUPT_OPMASK                0xC000
274
#define PXE_OPFLAGS_INTERRUPT_OPMASK                0xC000
275
#define PXE_OPFLAGS_INTERRUPT_ENABLE                0x8000
275
#define PXE_OPFLAGS_INTERRUPT_ENABLE                0x8000
276
#define PXE_OPFLAGS_INTERRUPT_DISABLE           0x4000
276
#define PXE_OPFLAGS_INTERRUPT_DISABLE           0x4000
277
#define PXE_OPFLAGS_INTERRUPT_READ              0x0000
277
#define PXE_OPFLAGS_INTERRUPT_READ              0x0000
278
 
278
 
279
//
279
//
280
// Enable receive interrupts.  An external interrupt will be generated
280
// Enable receive interrupts.  An external interrupt will be generated
281
// after a complete non-error packet has been received.
281
// after a complete non-error packet has been received.
282
//
282
//
283
#define PXE_OPFLAGS_INTERRUPT_RECEIVE           0x0001
283
#define PXE_OPFLAGS_INTERRUPT_RECEIVE           0x0001
284
 
284
 
285
//
285
//
286
// Enable transmit interrupts.  An external interrupt will be generated
286
// Enable transmit interrupts.  An external interrupt will be generated
287
// after a complete non-error packet has been transmitted.
287
// after a complete non-error packet has been transmitted.
288
//
288
//
289
#define PXE_OPFLAGS_INTERRUPT_TRANSMIT          0x0002
289
#define PXE_OPFLAGS_INTERRUPT_TRANSMIT          0x0002
290
 
290
 
291
//
291
//
292
// Enable command interrupts.  An external interrupt will be generated
292
// Enable command interrupts.  An external interrupt will be generated
293
// when command execution stops.
293
// when command execution stops.
294
//
294
//
295
#define PXE_OPFLAGS_INTERRUPT_COMMAND           0x0004
295
#define PXE_OPFLAGS_INTERRUPT_COMMAND           0x0004
296
 
296
 
297
//
297
//
298
// Generate software interrupt.  Setting this bit generates an external
298
// Generate software interrupt.  Setting this bit generates an external
299
// interrupt, if it is supported by the hardware.
299
// interrupt, if it is supported by the hardware.
300
//
300
//
301
#define PXE_OPFLAGS_INTERRUPT_SOFTWARE          0x0008
301
#define PXE_OPFLAGS_INTERRUPT_SOFTWARE          0x0008
302
 
302
 
303
////////////////////////////////////////
303
////////////////////////////////////////
304
// UNDI Receive Filters
304
// UNDI Receive Filters
305
//
305
//
306
 
306
 
307
//
307
//
308
// Select whether to enable or disable receive filters.
308
// Select whether to enable or disable receive filters.
309
// Setting both enable and disable will return PXE_STATCODE_INVALID_OPCODE.
309
// Setting both enable and disable will return PXE_STATCODE_INVALID_OPCODE.
310
//
310
//
311
#define PXE_OPFLAGS_RECEIVE_FILTER_OPMASK           0xC000
311
#define PXE_OPFLAGS_RECEIVE_FILTER_OPMASK           0xC000
312
#define PXE_OPFLAGS_RECEIVE_FILTER_ENABLE           0x8000
312
#define PXE_OPFLAGS_RECEIVE_FILTER_ENABLE           0x8000
313
#define PXE_OPFLAGS_RECEIVE_FILTER_DISABLE          0x4000
313
#define PXE_OPFLAGS_RECEIVE_FILTER_DISABLE          0x4000
314
#define PXE_OPFLAGS_RECEIVE_FILTER_READ         0x0000
314
#define PXE_OPFLAGS_RECEIVE_FILTER_READ         0x0000
315
 
315
 
316
//
316
//
317
// To reset the contents of the multicast MAC address filter list,
317
// To reset the contents of the multicast MAC address filter list,
318
// set this OpFlag:
318
// set this OpFlag:
319
//
319
//
320
#define PXE_OPFLAGS_RECEIVE_FILTER_RESET_MCAST_LIST 0x2000
320
#define PXE_OPFLAGS_RECEIVE_FILTER_RESET_MCAST_LIST 0x2000
321
 
321
 
322
//
322
//
323
// Enable unicast packet receiving.  Packets sent to the current station
323
// Enable unicast packet receiving.  Packets sent to the current station
324
// MAC address will be received.
324
// MAC address will be received.
325
//
325
//
326
#define PXE_OPFLAGS_RECEIVE_FILTER_UNICAST          0x0001
326
#define PXE_OPFLAGS_RECEIVE_FILTER_UNICAST          0x0001
327
 
327
 
328
//
328
//
329
// Enable broadcast packet receiving.  Packets sent to the broadcast 
329
// Enable broadcast packet receiving.  Packets sent to the broadcast 
330
// MAC address will be received.
330
// MAC address will be received.
331
//
331
//
332
#define PXE_OPFLAGS_RECEIVE_FILTER_BROADCAST        0x0002
332
#define PXE_OPFLAGS_RECEIVE_FILTER_BROADCAST        0x0002
333
 
333
 
334
//
334
//
335
// Enable filtered multicast packet receiving.  Packets sent to any
335
// Enable filtered multicast packet receiving.  Packets sent to any
336
// of the multicast MAC addresses in the multicast MAC address filter
336
// of the multicast MAC addresses in the multicast MAC address filter
337
// list will be received.  If the filter list is empty, no multicast
337
// list will be received.  If the filter list is empty, no multicast
338
//
338
//
339
#define PXE_OPFLAGS_RECEIVE_FILTER_FILTERED_MULTICAST   0x0004
339
#define PXE_OPFLAGS_RECEIVE_FILTER_FILTERED_MULTICAST   0x0004
340
 
340
 
341
//
341
//
342
// Enable promiscuous packet receiving.  All packets will be received.
342
// Enable promiscuous packet receiving.  All packets will be received.
343
//
343
//
344
#define PXE_OPFLAGS_RECEIVE_FILTER_PROMISCUOUS      0x0008
344
#define PXE_OPFLAGS_RECEIVE_FILTER_PROMISCUOUS      0x0008
345
 
345
 
346
//
346
//
347
// Enable promiscuous multicast packet receiving.  All multicast
347
// Enable promiscuous multicast packet receiving.  All multicast
348
// packets will be received.
348
// packets will be received.
349
//
349
//
350
#define PXE_OPFLAGS_RECEIVE_FILTER_ALL_MULTICAST        0x0010
350
#define PXE_OPFLAGS_RECEIVE_FILTER_ALL_MULTICAST        0x0010
351
 
351
 
352
////////////////////////////////////////
352
////////////////////////////////////////
353
// UNDI Station Address
353
// UNDI Station Address
354
//
354
//
355
 
355
 
356
#define PXE_OPFLAGS_STATION_ADDRESS_READ            0x0000
356
#define PXE_OPFLAGS_STATION_ADDRESS_READ            0x0000
357
#define PXE_OPFLAGS_STATION_ADDRESS_RESET           0x0001
357
#define PXE_OPFLAGS_STATION_ADDRESS_RESET           0x0001
358
 
358
 
359
////////////////////////////////////////
359
////////////////////////////////////////
360
// UNDI Statistics
360
// UNDI Statistics
361
//
361
//
362
 
362
 
363
#define PXE_OPFLAGS_STATISTICS_READ             0x0000
363
#define PXE_OPFLAGS_STATISTICS_READ             0x0000
364
#define PXE_OPFLAGS_STATISTICS_RESET                0x0001
364
#define PXE_OPFLAGS_STATISTICS_RESET                0x0001
365
 
365
 
366
////////////////////////////////////////
366
////////////////////////////////////////
367
// UNDI MCast IP to MAC
367
// UNDI MCast IP to MAC
368
//
368
//
369
 
369
 
370
//
370
//
371
// Identify the type of IP address in the CPB.
371
// Identify the type of IP address in the CPB.
372
//
372
//
373
#define PXE_OPFLAGS_MCAST_IP_TO_MAC_OPMASK          0x0003
373
#define PXE_OPFLAGS_MCAST_IP_TO_MAC_OPMASK          0x0003
374
#define PXE_OPFLAGS_MCAST_IPV4_TO_MAC           0x0000
374
#define PXE_OPFLAGS_MCAST_IPV4_TO_MAC           0x0000
375
#define PXE_OPFLAGS_MCAST_IPV6_TO_MAC           0x0001
375
#define PXE_OPFLAGS_MCAST_IPV6_TO_MAC           0x0001
376
 
376
 
377
////////////////////////////////////////
377
////////////////////////////////////////
378
// UNDI NvData
378
// UNDI NvData
379
//
379
//
380
 
380
 
381
//
381
//
382
// Select the type of non-volatile data operation.
382
// Select the type of non-volatile data operation.
383
//
383
//
384
#define PXE_OPFLAGS_NVDATA_OPMASK               0x0001
384
#define PXE_OPFLAGS_NVDATA_OPMASK               0x0001
385
#define PXE_OPFLAGS_NVDATA_READ             0x0000
385
#define PXE_OPFLAGS_NVDATA_READ             0x0000
386
#define PXE_OPFLAGS_NVDATA_WRITE                0x0001
386
#define PXE_OPFLAGS_NVDATA_WRITE                0x0001
387
 
387
 
388
////////////////////////////////////////
388
////////////////////////////////////////
389
// UNDI Get Status
389
// UNDI Get Status
390
//
390
//
391
 
391
 
392
//
392
//
393
// Return current interrupt status.  This will also clear any interrupts
393
// Return current interrupt status.  This will also clear any interrupts
394
// that are currently set.  This can be used in a polling routine.  The
394
// that are currently set.  This can be used in a polling routine.  The
395
// interrupt flags are still set and cleared even when the interrupts
395
// interrupt flags are still set and cleared even when the interrupts
396
// are disabled.
396
// are disabled.
397
//
397
//
398
#define PXE_OPFLAGS_GET_INTERRUPT_STATUS            0x0001
398
#define PXE_OPFLAGS_GET_INTERRUPT_STATUS            0x0001
399
 
399
 
400
//
400
//
401
// Return list of transmitted buffers for recycling.  Transmit buffers
401
// Return list of transmitted buffers for recycling.  Transmit buffers
402
// must not be changed or unallocated until they have recycled.  After
402
// must not be changed or unallocated until they have recycled.  After
403
// issuing a transmit command, wait for a transmit complete interrupt.
403
// issuing a transmit command, wait for a transmit complete interrupt.
404
// When a transmit complete interrupt is received, read the transmitted
404
// When a transmit complete interrupt is received, read the transmitted
405
// buffers.  Do not plan on getting one buffer per interrupt.  Some
405
// buffers.  Do not plan on getting one buffer per interrupt.  Some
406
// NICs and UNDIs may transmit multiple buffers per interrupt.
406
// NICs and UNDIs may transmit multiple buffers per interrupt.
407
//
407
//
408
#define PXE_OPFLAGS_GET_TRANSMITTED_BUFFERS         0x0002
408
#define PXE_OPFLAGS_GET_TRANSMITTED_BUFFERS         0x0002
409
 
409
 
410
////////////////////////////////////////
410
////////////////////////////////////////
411
// UNDI Fill Header
411
// UNDI Fill Header
412
//
412
//
413
 
413
 
414
#define PXE_OPFLAGS_FILL_HEADER_OPMASK          0x0001
414
#define PXE_OPFLAGS_FILL_HEADER_OPMASK          0x0001
415
#define PXE_OPFLAGS_FILL_HEADER_FRAGMENTED          0x0001
415
#define PXE_OPFLAGS_FILL_HEADER_FRAGMENTED          0x0001
416
#define PXE_OPFLAGS_FILL_HEADER_WHOLE           0x0000
416
#define PXE_OPFLAGS_FILL_HEADER_WHOLE           0x0000
417
 
417
 
418
////////////////////////////////////////
418
////////////////////////////////////////
419
// UNDI Transmit
419
// UNDI Transmit
420
//
420
//
421
 
421
 
422
//
422
//
423
// S/W UNDI only.  Return after the packet has been transmitted.  A
423
// S/W UNDI only.  Return after the packet has been transmitted.  A
424
// transmit complete interrupt will still be generated and the transmit
424
// transmit complete interrupt will still be generated and the transmit
425
// buffer will have to be recycled.
425
// buffer will have to be recycled.
426
//
426
//
427
#define PXE_OPFLAGS_SWUNDI_TRANSMIT_OPMASK          0x0001
427
#define PXE_OPFLAGS_SWUNDI_TRANSMIT_OPMASK          0x0001
428
#define PXE_OPFLAGS_TRANSMIT_BLOCK              0x0001
428
#define PXE_OPFLAGS_TRANSMIT_BLOCK              0x0001
429
#define PXE_OPFLAGS_TRANSMIT_DONT_BLOCK         0x0000
429
#define PXE_OPFLAGS_TRANSMIT_DONT_BLOCK         0x0000
430
 
430
 
431
//
431
//
432
//
432
//
433
//
433
//
434
#define PXE_OPFLAGS_TRANSMIT_OPMASK             0x0002
434
#define PXE_OPFLAGS_TRANSMIT_OPMASK             0x0002
435
#define PXE_OPFLAGS_TRANSMIT_FRAGMENTED         0x0002
435
#define PXE_OPFLAGS_TRANSMIT_FRAGMENTED         0x0002
436
#define PXE_OPFLAGS_TRANSMIT_WHOLE              0x0000
436
#define PXE_OPFLAGS_TRANSMIT_WHOLE              0x0000
437
 
437
 
438
////////////////////////////////////////
438
////////////////////////////////////////
439
// UNDI Receive
439
// UNDI Receive
440
//
440
//
441
 
441
 
442
// No OpFlags
442
// No OpFlags
443
 
443
 
444
typedef PXE_UINT16 PXE_STATFLAGS;
444
typedef PXE_UINT16 PXE_STATFLAGS;
445
 
445
 
446
#define PXE_STATFLAGS_INITIALIZE                0x0000
446
#define PXE_STATFLAGS_INITIALIZE                0x0000
447
 
447
 
448
////////////////////////////////////////
448
////////////////////////////////////////
449
// Common StatFlags that can be returned by all commands.
449
// Common StatFlags that can be returned by all commands.
450
//
450
//
451
 
451
 
452
//
452
//
453
// The COMMAND_COMPLETE and COMMAND_FAILED status flags must be
453
// The COMMAND_COMPLETE and COMMAND_FAILED status flags must be
454
// implemented by all UNDIs.  COMMAND_QUEUED is only needed by UNDIs
454
// implemented by all UNDIs.  COMMAND_QUEUED is only needed by UNDIs
455
// that support command queuing.
455
// that support command queuing.
456
//
456
//
457
#define PXE_STATFLAGS_STATUS_MASK               0xC000
457
#define PXE_STATFLAGS_STATUS_MASK               0xC000
458
#define PXE_STATFLAGS_COMMAND_COMPLETE          0xC000
458
#define PXE_STATFLAGS_COMMAND_COMPLETE          0xC000
459
#define PXE_STATFLAGS_COMMAND_FAILED                0x8000
459
#define PXE_STATFLAGS_COMMAND_FAILED                0x8000
460
#define PXE_STATFLAGS_COMMAND_QUEUED                0x4000
460
#define PXE_STATFLAGS_COMMAND_QUEUED                0x4000
461
//#define PXE_STATFLAGS_INITIALIZE              0x0000
461
//#define PXE_STATFLAGS_INITIALIZE              0x0000
462
 
462
 
463
#define PXE_STATFLAGS_DB_WRITE_TRUNCATED            0x2000
463
#define PXE_STATFLAGS_DB_WRITE_TRUNCATED            0x2000
464
 
464
 
465
////////////////////////////////////////
465
////////////////////////////////////////
466
// UNDI Get State
466
// UNDI Get State
467
//
467
//
468
 
468
 
469
#define PXE_STATFLAGS_GET_STATE_MASK                0x0003
469
#define PXE_STATFLAGS_GET_STATE_MASK                0x0003
470
#define PXE_STATFLAGS_GET_STATE_INITIALIZED         0x0002
470
#define PXE_STATFLAGS_GET_STATE_INITIALIZED         0x0002
471
#define PXE_STATFLAGS_GET_STATE_STARTED         0x0001
471
#define PXE_STATFLAGS_GET_STATE_STARTED         0x0001
472
#define PXE_STATFLAGS_GET_STATE_STOPPED         0x0000
472
#define PXE_STATFLAGS_GET_STATE_STOPPED         0x0000
473
 
473
 
474
////////////////////////////////////////
474
////////////////////////////////////////
475
// UNDI Start
475
// UNDI Start
476
//
476
//
477
 
477
 
478
// No additional StatFlags
478
// No additional StatFlags
479
 
479
 
480
////////////////////////////////////////
480
////////////////////////////////////////
481
// UNDI Get Init Info
481
// UNDI Get Init Info
482
//
482
//
483
 
483
 
484
#define PXE_STATFLAGS_CABLE_DETECT_MASK          0x0001
484
#define PXE_STATFLAGS_CABLE_DETECT_MASK          0x0001
485
#define PXE_STATFLAGS_CABLE_DETECT_NOT_SUPPORTED 0x0000
485
#define PXE_STATFLAGS_CABLE_DETECT_NOT_SUPPORTED 0x0000
486
#define PXE_STATFLAGS_CABLE_DETECT_SUPPORTED     0x0001
486
#define PXE_STATFLAGS_CABLE_DETECT_SUPPORTED     0x0001
487
 
487
 
488
 
488
 
489
////////////////////////////////////////
489
////////////////////////////////////////
490
// UNDI Initialize
490
// UNDI Initialize
491
//
491
//
492
 
492
 
493
#define PXE_STATFLAGS_INITIALIZED_NO_MEDIA          0x0001
493
#define PXE_STATFLAGS_INITIALIZED_NO_MEDIA          0x0001
494
 
494
 
495
////////////////////////////////////////
495
////////////////////////////////////////
496
// UNDI Reset
496
// UNDI Reset
497
//
497
//
498
 
498
 
499
#define PXE_STATFLAGS_RESET_NO_MEDIA                0x0001
499
#define PXE_STATFLAGS_RESET_NO_MEDIA                0x0001
500
 
500
 
501
////////////////////////////////////////
501
////////////////////////////////////////
502
// UNDI Shutdown
502
// UNDI Shutdown
503
//
503
//
504
 
504
 
505
// No additional StatFlags
505
// No additional StatFlags
506
 
506
 
507
////////////////////////////////////////
507
////////////////////////////////////////
508
// UNDI Interrupt Enables
508
// UNDI Interrupt Enables
509
//
509
//
510
 
510
 
511
//
511
//
512
// If set, receive interrupts are enabled.
512
// If set, receive interrupts are enabled.
513
//
513
//
514
#define PXE_STATFLAGS_INTERRUPT_RECEIVE         0x0001
514
#define PXE_STATFLAGS_INTERRUPT_RECEIVE         0x0001
515
 
515
 
516
//
516
//
517
// If set, transmit interrupts are enabled.
517
// If set, transmit interrupts are enabled.
518
//
518
//
519
#define PXE_STATFLAGS_INTERRUPT_TRANSMIT            0x0002
519
#define PXE_STATFLAGS_INTERRUPT_TRANSMIT            0x0002
520
 
520
 
521
//
521
//
522
// If set, command interrupts are enabled.
522
// If set, command interrupts are enabled.
523
//
523
//
524
#define PXE_STATFLAGS_INTERRUPT_COMMAND         0x0004
524
#define PXE_STATFLAGS_INTERRUPT_COMMAND         0x0004
525
 
525
 
526
 
526
 
527
////////////////////////////////////////
527
////////////////////////////////////////
528
// UNDI Receive Filters
528
// UNDI Receive Filters
529
//
529
//
530
 
530
 
531
//
531
//
532
// If set, unicast packets will be received.
532
// If set, unicast packets will be received.
533
//
533
//
534
#define PXE_STATFLAGS_RECEIVE_FILTER_UNICAST        0x0001
534
#define PXE_STATFLAGS_RECEIVE_FILTER_UNICAST        0x0001
535
 
535
 
536
//
536
//
537
// If set, broadcast packets will be received.
537
// If set, broadcast packets will be received.
538
//
538
//
539
#define PXE_STATFLAGS_RECEIVE_FILTER_BROADCAST      0x0002
539
#define PXE_STATFLAGS_RECEIVE_FILTER_BROADCAST      0x0002
540
 
540
 
541
//
541
//
542
// If set, multicast packets that match up with the multicast address
542
// If set, multicast packets that match up with the multicast address
543
// filter list will be received.
543
// filter list will be received.
544
//
544
//
545
#define PXE_STATFLAGS_RECEIVE_FILTER_FILTERED_MULTICAST 0x0004
545
#define PXE_STATFLAGS_RECEIVE_FILTER_FILTERED_MULTICAST 0x0004
546
 
546
 
547
//
547
//
548
// If set, all packets will be received.
548
// If set, all packets will be received.
549
//
549
//
550
#define PXE_STATFLAGS_RECEIVE_FILTER_PROMISCUOUS        0x0008
550
#define PXE_STATFLAGS_RECEIVE_FILTER_PROMISCUOUS        0x0008
551
 
551
 
552
//
552
//
553
// If set, all multicast packets will be received.
553
// If set, all multicast packets will be received.
554
//
554
//
555
#define PXE_STATFLAGS_RECEIVE_FILTER_ALL_MULTICAST  0x0010
555
#define PXE_STATFLAGS_RECEIVE_FILTER_ALL_MULTICAST  0x0010
556
 
556
 
557
////////////////////////////////////////
557
////////////////////////////////////////
558
// UNDI Station Address
558
// UNDI Station Address
559
//
559
//
560
 
560
 
561
// No additional StatFlags
561
// No additional StatFlags
562
 
562
 
563
////////////////////////////////////////
563
////////////////////////////////////////
564
// UNDI Statistics
564
// UNDI Statistics
565
//
565
//
566
 
566
 
567
// No additional StatFlags
567
// No additional StatFlags
568
 
568
 
569
////////////////////////////////////////
569
////////////////////////////////////////
570
// UNDI MCast IP to MAC
570
// UNDI MCast IP to MAC
571
//
571
//
572
 
572
 
573
// No additional StatFlags
573
// No additional StatFlags
574
 
574
 
575
////////////////////////////////////////
575
////////////////////////////////////////
576
// UNDI NvData
576
// UNDI NvData
577
//
577
//
578
 
578
 
579
// No additional StatFlags
579
// No additional StatFlags
580
 
580
 
581
 
581
 
582
////////////////////////////////////////
582
////////////////////////////////////////
583
// UNDI Get Status
583
// UNDI Get Status
584
//
584
//
585
 
585
 
586
//
586
//
587
// Use to determine if an interrupt has occurred.
587
// Use to determine if an interrupt has occurred.
588
//
588
//
589
#define PXE_STATFLAGS_GET_STATUS_INTERRUPT_MASK     0x000F
589
#define PXE_STATFLAGS_GET_STATUS_INTERRUPT_MASK     0x000F
590
#define PXE_STATFLAGS_GET_STATUS_NO_INTERRUPTS      0x0000
590
#define PXE_STATFLAGS_GET_STATUS_NO_INTERRUPTS      0x0000
591
 
591
 
592
//
592
//
593
// If set, at least one receive interrupt occurred.
593
// If set, at least one receive interrupt occurred.
594
//
594
//
595
#define PXE_STATFLAGS_GET_STATUS_RECEIVE            0x0001
595
#define PXE_STATFLAGS_GET_STATUS_RECEIVE            0x0001
596
 
596
 
597
//
597
//
598
// If set, at least one transmit interrupt occurred.
598
// If set, at least one transmit interrupt occurred.
599
//
599
//
600
#define PXE_STATFLAGS_GET_STATUS_TRANSMIT           0x0002
600
#define PXE_STATFLAGS_GET_STATUS_TRANSMIT           0x0002
601
 
601
 
602
//
602
//
603
// If set, at least one command interrupt occurred.
603
// If set, at least one command interrupt occurred.
604
//
604
//
605
#define PXE_STATFLAGS_GET_STATUS_COMMAND            0x0004
605
#define PXE_STATFLAGS_GET_STATUS_COMMAND            0x0004
606
 
606
 
607
//
607
//
608
// If set, at least one software interrupt occurred.
608
// If set, at least one software interrupt occurred.
609
//
609
//
610
#define PXE_STATFLAGS_GET_STATUS_SOFTWARE           0x0008
610
#define PXE_STATFLAGS_GET_STATUS_SOFTWARE           0x0008
611
 
611
 
612
//
612
//
613
// This flag is set if the transmitted buffer queue is empty.  This flag
613
// This flag is set if the transmitted buffer queue is empty.  This flag
614
// will be set if all transmitted buffer addresses get written into the DB.
614
// will be set if all transmitted buffer addresses get written into the DB.
615
//
615
//
616
#define PXE_STATFLAGS_GET_STATUS_TXBUF_QUEUE_EMPTY  0x0010
616
#define PXE_STATFLAGS_GET_STATUS_TXBUF_QUEUE_EMPTY  0x0010
617
 
617
 
618
//
618
//
619
// This flag is set if no transmitted buffer addresses were written
619
// This flag is set if no transmitted buffer addresses were written
620
// into the DB.  (This could be because DBsize was too small.)
620
// into the DB.  (This could be because DBsize was too small.)
621
//
621
//
622
#define PXE_STATFLAGS_GET_STATUS_NO_TXBUFS_WRITTEN  0x0020
622
#define PXE_STATFLAGS_GET_STATUS_NO_TXBUFS_WRITTEN  0x0020
623
 
623
 
624
////////////////////////////////////////
624
////////////////////////////////////////
625
// UNDI Fill Header
625
// UNDI Fill Header
626
//
626
//
627
 
627
 
628
// No additional StatFlags
628
// No additional StatFlags
629
 
629
 
630
////////////////////////////////////////
630
////////////////////////////////////////
631
// UNDI Transmit
631
// UNDI Transmit
632
//
632
//
633
 
633
 
634
// No additional StatFlags.
634
// No additional StatFlags.
635
 
635
 
636
////////////////////////////////////////
636
////////////////////////////////////////
637
// UNDI Receive
637
// UNDI Receive
638
//
638
//
639
 
639
 
640
// No additional StatFlags.
640
// No additional StatFlags.
641
 
641
 
642
typedef PXE_UINT16 PXE_STATCODE;
642
typedef PXE_UINT16 PXE_STATCODE;
643
 
643
 
644
#define PXE_STATCODE_INITIALIZE             0x0000
644
#define PXE_STATCODE_INITIALIZE             0x0000
645
 
645
 
646
////////////////////////////////////////
646
////////////////////////////////////////
647
// Common StatCodes returned by all UNDI commands, UNDI protocol functions
647
// Common StatCodes returned by all UNDI commands, UNDI protocol functions
648
// and BC protocol functions.
648
// and BC protocol functions.
649
//
649
//
650
 
650
 
651
#define PXE_STATCODE_SUCCESS                    0x0000
651
#define PXE_STATCODE_SUCCESS                    0x0000
652
 
652
 
653
#define PXE_STATCODE_INVALID_CDB                0x0001
653
#define PXE_STATCODE_INVALID_CDB                0x0001
654
#define PXE_STATCODE_INVALID_CPB                0x0002
654
#define PXE_STATCODE_INVALID_CPB                0x0002
655
#define PXE_STATCODE_BUSY                       0x0003
655
#define PXE_STATCODE_BUSY                       0x0003
656
#define PXE_STATCODE_QUEUE_FULL                 0x0004
656
#define PXE_STATCODE_QUEUE_FULL                 0x0004
657
#define PXE_STATCODE_ALREADY_STARTED            0x0005
657
#define PXE_STATCODE_ALREADY_STARTED            0x0005
658
#define PXE_STATCODE_NOT_STARTED                0x0006
658
#define PXE_STATCODE_NOT_STARTED                0x0006
659
#define PXE_STATCODE_NOT_SHUTDOWN               0x0007
659
#define PXE_STATCODE_NOT_SHUTDOWN               0x0007
660
#define PXE_STATCODE_ALREADY_INITIALIZED        0x0008
660
#define PXE_STATCODE_ALREADY_INITIALIZED        0x0008
661
#define PXE_STATCODE_NOT_INITIALIZED            0x0009
661
#define PXE_STATCODE_NOT_INITIALIZED            0x0009
662
#define PXE_STATCODE_DEVICE_FAILURE             0x000A
662
#define PXE_STATCODE_DEVICE_FAILURE             0x000A
663
#define PXE_STATCODE_NVDATA_FAILURE             0x000B
663
#define PXE_STATCODE_NVDATA_FAILURE             0x000B
664
#define PXE_STATCODE_UNSUPPORTED                0x000C
664
#define PXE_STATCODE_UNSUPPORTED                0x000C
665
#define PXE_STATCODE_BUFFER_FULL                0x000D
665
#define PXE_STATCODE_BUFFER_FULL                0x000D
666
#define PXE_STATCODE_INVALID_PARAMETER      0x000E
666
#define PXE_STATCODE_INVALID_PARAMETER      0x000E
667
#define PXE_STATCODE_INVALID_UNDI       0x000F
667
#define PXE_STATCODE_INVALID_UNDI       0x000F
668
#define PXE_STATCODE_IPV4_NOT_SUPPORTED     0x0010
668
#define PXE_STATCODE_IPV4_NOT_SUPPORTED     0x0010
669
#define PXE_STATCODE_IPV6_NOT_SUPPORTED     0x0011
669
#define PXE_STATCODE_IPV6_NOT_SUPPORTED     0x0011
670
#define PXE_STATCODE_NOT_ENOUGH_MEMORY      0x0012
670
#define PXE_STATCODE_NOT_ENOUGH_MEMORY      0x0012
671
#define PXE_STATCODE_NO_DATA            0x0013
671
#define PXE_STATCODE_NO_DATA            0x0013
672
 
672
 
673
 
673
 
674
typedef PXE_UINT16 PXE_IFNUM;
674
typedef PXE_UINT16 PXE_IFNUM;
675
 
675
 
676
//
676
//
677
// This interface number must be passed to the S/W UNDI Start command.
677
// This interface number must be passed to the S/W UNDI Start command.
678
//
678
//
679
#define PXE_IFNUM_START                     0x0000
679
#define PXE_IFNUM_START                     0x0000
680
 
680
 
681
//
681
//
682
// This interface number is returned by the S/W UNDI Get State and
682
// This interface number is returned by the S/W UNDI Get State and
683
// Start commands if information in the CDB, CPB or DB is invalid.
683
// Start commands if information in the CDB, CPB or DB is invalid.
684
//
684
//
685
#define PXE_IFNUM_INVALID                   0x0000
685
#define PXE_IFNUM_INVALID                   0x0000
686
 
686
 
687
typedef PXE_UINT16 PXE_CONTROL;
687
typedef PXE_UINT16 PXE_CONTROL;
688
 
688
 
689
//
689
//
690
// Setting this flag directs the UNDI to queue this command for later
690
// Setting this flag directs the UNDI to queue this command for later
691
// execution if the UNDI is busy and it supports command queuing.
691
// execution if the UNDI is busy and it supports command queuing.
692
// If queuing is not supported, a PXE_STATCODE_INVALID_CONTROL error
692
// If queuing is not supported, a PXE_STATCODE_INVALID_CONTROL error
693
// is returned.  If the queue is full, a PXE_STATCODE_CDB_QUEUE_FULL 
693
// is returned.  If the queue is full, a PXE_STATCODE_CDB_QUEUE_FULL 
694
// error is returned.
694
// error is returned.
695
//
695
//
696
#define PXE_CONTROL_QUEUE_IF_BUSY               0x0002
696
#define PXE_CONTROL_QUEUE_IF_BUSY               0x0002
697
 
697
 
698
//
698
//
699
// These two bit values are used to determine if there are more UNDI
699
// These two bit values are used to determine if there are more UNDI
700
// CDB structures following this one.  If the link bit is set, there
700
// CDB structures following this one.  If the link bit is set, there
701
// must be a CDB structure following this one.  Execution will start
701
// must be a CDB structure following this one.  Execution will start
702
// on the next CDB structure as soon as this one completes successfully.
702
// on the next CDB structure as soon as this one completes successfully.
703
// If an error is generated by this command, execution will stop.
703
// If an error is generated by this command, execution will stop.
704
//
704
//
705
#define PXE_CONTROL_LINK                    0x0001
705
#define PXE_CONTROL_LINK                    0x0001
706
#define PXE_CONTROL_LAST_CDB_IN_LIST                0x0000
706
#define PXE_CONTROL_LAST_CDB_IN_LIST                0x0000
707
 
707
 
708
typedef PXE_UINT8 PXE_FRAME_TYPE;
708
typedef PXE_UINT8 PXE_FRAME_TYPE;
709
 
709
 
710
#define PXE_FRAME_TYPE_NONE                 0x00
710
#define PXE_FRAME_TYPE_NONE                 0x00
711
#define PXE_FRAME_TYPE_UNICAST              0x01
711
#define PXE_FRAME_TYPE_UNICAST              0x01
712
#define PXE_FRAME_TYPE_BROADCAST                0x02
712
#define PXE_FRAME_TYPE_BROADCAST                0x02
713
#define PXE_FRAME_TYPE_MULTICAST            0x03
713
#define PXE_FRAME_TYPE_MULTICAST            0x03
714
#define PXE_FRAME_TYPE_PROMISCUOUS              0x04
714
#define PXE_FRAME_TYPE_PROMISCUOUS              0x04
715
 
715
 
716
typedef PXE_UINT32 PXE_IPV4;
716
typedef PXE_UINT32 PXE_IPV4;
717
 
717
 
718
typedef PXE_UINT32 PXE_IPV6[4];
718
typedef PXE_UINT32 PXE_IPV6[4];
719
#define PXE_MAC_LENGTH 32
719
#define PXE_MAC_LENGTH 32
720
 
720
 
721
typedef PXE_UINT8 PXE_MAC_ADDR[PXE_MAC_LENGTH];
721
typedef PXE_UINT8 PXE_MAC_ADDR[PXE_MAC_LENGTH];
722
 
722
 
723
typedef PXE_UINT8 PXE_IFTYPE;
723
typedef PXE_UINT8 PXE_IFTYPE;
724
typedef PXE_UINT16 PXE_MEDIA_PROTOCOL;
724
typedef PXE_UINT16 PXE_MEDIA_PROTOCOL;
725
 
725
 
726
//
726
//
727
// This information is from the ARP section of RFC 1700.
727
// This information is from the ARP section of RFC 1700.
728
//
728
//
729
//     1 Ethernet (10Mb)                                    [JBP]
729
//     1 Ethernet (10Mb)                                    [JBP]
730
//     2 Experimental Ethernet (3Mb)                        [JBP]
730
//     2 Experimental Ethernet (3Mb)                        [JBP]
731
//     3 Amateur Radio AX.25                                [PXK]
731
//     3 Amateur Radio AX.25                                [PXK]
732
//     4 Proteon ProNET Token Ring                          [JBP]
732
//     4 Proteon ProNET Token Ring                          [JBP]
733
//     5 Chaos                                              [GXP]
733
//     5 Chaos                                              [GXP]
734
//     6 IEEE 802 Networks                                  [JBP]
734
//     6 IEEE 802 Networks                                  [JBP]
735
//     7 ARCNET                                             [JBP]
735
//     7 ARCNET                                             [JBP]
736
//     8 Hyperchannel                                       [JBP]
736
//     8 Hyperchannel                                       [JBP]
737
//     9 Lanstar                                             [TU]
737
//     9 Lanstar                                             [TU]
738
//    10 Autonet Short Address                             [MXB1]
738
//    10 Autonet Short Address                             [MXB1]
739
//    11 LocalTalk                                         [JKR1]
739
//    11 LocalTalk                                         [JKR1]
740
//    12 LocalNet (IBM PCNet or SYTEK LocalNET)             [JXM]
740
//    12 LocalNet (IBM PCNet or SYTEK LocalNET)             [JXM]
741
//    13 Ultra link                                        [RXD2]
741
//    13 Ultra link                                        [RXD2]
742
//    14 SMDS                                              [GXC1]
742
//    14 SMDS                                              [GXC1]
743
//    15 Frame Relay                                        [AGM]
743
//    15 Frame Relay                                        [AGM]
744
//    16 Asynchronous Transmission Mode (ATM)              [JXB2]
744
//    16 Asynchronous Transmission Mode (ATM)              [JXB2]
745
//    17 HDLC                                               [JBP]
745
//    17 HDLC                                               [JBP]
746
//    18 Fibre Channel                            [Yakov Rekhter]
746
//    18 Fibre Channel                            [Yakov Rekhter]
747
//    19 Asynchronous Transmission Mode (ATM)      [Mark Laubach]
747
//    19 Asynchronous Transmission Mode (ATM)      [Mark Laubach]
748
//    20 Serial Line                                        [JBP]
748
//    20 Serial Line                                        [JBP]
749
//    21 Asynchronous Transmission Mode (ATM)              [MXB1]
749
//    21 Asynchronous Transmission Mode (ATM)              [MXB1]
750
//
750
//
751
 
751
 
752
#define PXE_IFTYPE_ETHERNET                 0x01
752
#define PXE_IFTYPE_ETHERNET                 0x01
753
#define PXE_IFTYPE_TOKENRING                    0x04
753
#define PXE_IFTYPE_TOKENRING                    0x04
754
#define PXE_IFTYPE_FIBRE_CHANNEL                0x12
754
#define PXE_IFTYPE_FIBRE_CHANNEL                0x12
755
 
755
 
756
typedef struct s_pxe_hw_undi {
756
typedef struct s_pxe_hw_undi {
757
PXE_UINT32 Signature;       // PXE_ROMID_SIGNATURE
757
PXE_UINT32 Signature;       // PXE_ROMID_SIGNATURE
758
PXE_UINT8 Len;          // sizeof(PXE_HW_UNDI)
758
PXE_UINT8 Len;          // sizeof(PXE_HW_UNDI)
759
PXE_UINT8 Fudge;            // makes 8-bit cksum equal zero
759
PXE_UINT8 Fudge;            // makes 8-bit cksum equal zero
760
PXE_UINT8 Rev;          // PXE_ROMID_REV
760
PXE_UINT8 Rev;          // PXE_ROMID_REV
761
PXE_UINT8 IFcnt;            // physical connector count
761
PXE_UINT8 IFcnt;            // physical connector count
762
PXE_UINT8 MajorVer;         // PXE_ROMID_MAJORVER
762
PXE_UINT8 MajorVer;         // PXE_ROMID_MAJORVER
763
PXE_UINT8 MinorVer;         // PXE_ROMID_MINORVER
763
PXE_UINT8 MinorVer;         // PXE_ROMID_MINORVER
764
PXE_UINT16 reserved;        // zero, not used
764
PXE_UINT16 reserved;        // zero, not used
765
PXE_UINT32 Implementation;      // implementation flags
765
PXE_UINT32 Implementation;      // implementation flags
766
// reserved             // vendor use
766
// reserved             // vendor use
767
// PXE_UINT32 Status;       // status port
767
// PXE_UINT32 Status;       // status port
768
// PXE_UINT32 Command;      // command port
768
// PXE_UINT32 Command;      // command port
769
// PXE_UINT64 CDBaddr;      // CDB address port
769
// PXE_UINT64 CDBaddr;      // CDB address port
770
} PXE_HW_UNDI;
770
} PXE_HW_UNDI;
771
 
771
 
772
//
772
//
773
// Status port bit definitions
773
// Status port bit definitions
774
//
774
//
775
 
775
 
776
//
776
//
777
// UNDI operation state
777
// UNDI operation state
778
//
778
//
779
#define PXE_HWSTAT_STATE_MASK                   0xC0000000
779
#define PXE_HWSTAT_STATE_MASK                   0xC0000000
780
#define PXE_HWSTAT_BUSY                     0xC0000000
780
#define PXE_HWSTAT_BUSY                     0xC0000000
781
#define PXE_HWSTAT_INITIALIZED              0x80000000
781
#define PXE_HWSTAT_INITIALIZED              0x80000000
782
#define PXE_HWSTAT_STARTED                  0x40000000
782
#define PXE_HWSTAT_STARTED                  0x40000000
783
#define PXE_HWSTAT_STOPPED                  0x00000000
783
#define PXE_HWSTAT_STOPPED                  0x00000000
784
 
784
 
785
//
785
//
786
// If set, last command failed
786
// If set, last command failed
787
//
787
//
788
#define PXE_HWSTAT_COMMAND_FAILED               0x20000000
788
#define PXE_HWSTAT_COMMAND_FAILED               0x20000000
789
 
789
 
790
//
790
//
791
// If set, identifies enabled receive filters
791
// If set, identifies enabled receive filters
792
//
792
//
793
#define PXE_HWSTAT_PROMISCUOUS_MULTICAST_RX_ENABLED 0x00001000
793
#define PXE_HWSTAT_PROMISCUOUS_MULTICAST_RX_ENABLED 0x00001000
794
#define PXE_HWSTAT_PROMISCUOUS_RX_ENABLED           0x00000800
794
#define PXE_HWSTAT_PROMISCUOUS_RX_ENABLED           0x00000800
795
#define PXE_HWSTAT_BROADCAST_RX_ENABLED         0x00000400
795
#define PXE_HWSTAT_BROADCAST_RX_ENABLED         0x00000400
796
#define PXE_HWSTAT_MULTICAST_RX_ENABLED         0x00000200
796
#define PXE_HWSTAT_MULTICAST_RX_ENABLED         0x00000200
797
#define PXE_HWSTAT_UNICAST_RX_ENABLED           0x00000100
797
#define PXE_HWSTAT_UNICAST_RX_ENABLED           0x00000100
798
 
798
 
799
//
799
//
800
// If set, identifies enabled external interrupts
800
// If set, identifies enabled external interrupts
801
//
801
//
802
#define PXE_HWSTAT_SOFTWARE_INT_ENABLED         0x00000080
802
#define PXE_HWSTAT_SOFTWARE_INT_ENABLED         0x00000080
803
#define PXE_HWSTAT_TX_COMPLETE_INT_ENABLED          0x00000040
803
#define PXE_HWSTAT_TX_COMPLETE_INT_ENABLED          0x00000040
804
#define PXE_HWSTAT_PACKET_RX_INT_ENABLED            0x00000020
804
#define PXE_HWSTAT_PACKET_RX_INT_ENABLED            0x00000020
805
#define PXE_HWSTAT_CMD_COMPLETE_INT_ENABLED         0x00000010
805
#define PXE_HWSTAT_CMD_COMPLETE_INT_ENABLED         0x00000010
806
 
806
 
807
//
807
//
808
// If set, identifies pending interrupts
808
// If set, identifies pending interrupts
809
//
809
//
810
#define PXE_HWSTAT_SOFTWARE_INT_PENDING         0x00000008
810
#define PXE_HWSTAT_SOFTWARE_INT_PENDING         0x00000008
811
#define PXE_HWSTAT_TX_COMPLETE_INT_PENDING          0x00000004
811
#define PXE_HWSTAT_TX_COMPLETE_INT_PENDING          0x00000004
812
#define PXE_HWSTAT_PACKET_RX_INT_PENDING            0x00000002
812
#define PXE_HWSTAT_PACKET_RX_INT_PENDING            0x00000002
813
#define PXE_HWSTAT_CMD_COMPLETE_INT_PENDING         0x00000001
813
#define PXE_HWSTAT_CMD_COMPLETE_INT_PENDING         0x00000001
814
 
814
 
815
//
815
//
816
// Command port definitions
816
// Command port definitions
817
//
817
//
818
 
818
 
819
//
819
//
820
// If set, CDB identified in CDBaddr port is given to UNDI.
820
// If set, CDB identified in CDBaddr port is given to UNDI.
821
// If not set, other bits in this word will be processed.
821
// If not set, other bits in this word will be processed.
822
//
822
//
823
#define PXE_HWCMD_ISSUE_COMMAND             0x80000000
823
#define PXE_HWCMD_ISSUE_COMMAND             0x80000000
824
#define PXE_HWCMD_INTS_AND_FILTS                0x00000000
824
#define PXE_HWCMD_INTS_AND_FILTS                0x00000000
825
 
825
 
826
//
826
//
827
// Use these to enable/disable receive filters.
827
// Use these to enable/disable receive filters.
828
//
828
//
829
#define PXE_HWCMD_PROMISCUOUS_MULTICAST_RX_ENABLE       0x00001000
829
#define PXE_HWCMD_PROMISCUOUS_MULTICAST_RX_ENABLE       0x00001000
830
#define PXE_HWCMD_PROMISCUOUS_RX_ENABLE         0x00000800
830
#define PXE_HWCMD_PROMISCUOUS_RX_ENABLE         0x00000800
831
#define PXE_HWCMD_BROADCAST_RX_ENABLE           0x00000400
831
#define PXE_HWCMD_BROADCAST_RX_ENABLE           0x00000400
832
#define PXE_HWCMD_MULTICAST_RX_ENABLE           0x00000200
832
#define PXE_HWCMD_MULTICAST_RX_ENABLE           0x00000200
833
#define PXE_HWCMD_UNICAST_RX_ENABLE             0x00000100
833
#define PXE_HWCMD_UNICAST_RX_ENABLE             0x00000100
834
 
834
 
835
//
835
//
836
// Use these to enable/disable external interrupts
836
// Use these to enable/disable external interrupts
837
//
837
//
838
#define PXE_HWCMD_SOFTWARE_INT_ENABLE           0x00000080
838
#define PXE_HWCMD_SOFTWARE_INT_ENABLE           0x00000080
839
#define PXE_HWCMD_TX_COMPLETE_INT_ENABLE            0x00000040
839
#define PXE_HWCMD_TX_COMPLETE_INT_ENABLE            0x00000040
840
#define PXE_HWCMD_PACKET_RX_INT_ENABLE          0x00000020
840
#define PXE_HWCMD_PACKET_RX_INT_ENABLE          0x00000020
841
#define PXE_HWCMD_CMD_COMPLETE_INT_ENABLE           0x00000010
841
#define PXE_HWCMD_CMD_COMPLETE_INT_ENABLE           0x00000010
842
 
842
 
843
//
843
//
844
// Use these to clear pending external interrupts
844
// Use these to clear pending external interrupts
845
//
845
//
846
#define PXE_HWCMD_CLEAR_SOFTWARE_INT                0x00000008
846
#define PXE_HWCMD_CLEAR_SOFTWARE_INT                0x00000008
847
#define PXE_HWCMD_CLEAR_TX_COMPLETE_INT         0x00000004
847
#define PXE_HWCMD_CLEAR_TX_COMPLETE_INT         0x00000004
848
#define PXE_HWCMD_CLEAR_PACKET_RX_INT           0x00000002
848
#define PXE_HWCMD_CLEAR_PACKET_RX_INT           0x00000002
849
#define PXE_HWCMD_CLEAR_CMD_COMPLETE_INT            0x00000001
849
#define PXE_HWCMD_CLEAR_CMD_COMPLETE_INT            0x00000001
850
 
850
 
851
typedef struct s_pxe_sw_undi {
851
typedef struct s_pxe_sw_undi {
852
PXE_UINT32 Signature;       // PXE_ROMID_SIGNATURE
852
PXE_UINT32 Signature;       // PXE_ROMID_SIGNATURE
853
PXE_UINT8 Len;          // sizeof(PXE_SW_UNDI)
853
PXE_UINT8 Len;          // sizeof(PXE_SW_UNDI)
854
PXE_UINT8 Fudge;            // makes 8-bit cksum zero
854
PXE_UINT8 Fudge;            // makes 8-bit cksum zero
855
PXE_UINT8 Rev;          // PXE_ROMID_REV
855
PXE_UINT8 Rev;          // PXE_ROMID_REV
856
PXE_UINT8 IFcnt;            // physical connector count
856
PXE_UINT8 IFcnt;            // physical connector count
857
PXE_UINT8 MajorVer;         // PXE_ROMID_MAJORVER
857
PXE_UINT8 MajorVer;         // PXE_ROMID_MAJORVER
858
PXE_UINT8 MinorVer;         // PXE_ROMID_MINORVER
858
PXE_UINT8 MinorVer;         // PXE_ROMID_MINORVER
859
PXE_UINT16 reserved1;       // zero, not used
859
PXE_UINT16 reserved1;       // zero, not used
860
PXE_UINT32 Implementation;      // Implementation flags
860
PXE_UINT32 Implementation;      // Implementation flags
861
PXE_UINT64 EntryPoint;      // API entry point
861
PXE_UINT64 EntryPoint;      // API entry point
862
PXE_UINT8 reserved2[3];     // zero, not used
862
PXE_UINT8 reserved2[3];     // zero, not used
863
PXE_UINT8 BusCnt;           // number of bustypes supported
863
PXE_UINT8 BusCnt;           // number of bustypes supported
864
PXE_UINT32 BusType[1];      // list of supported bustypes
864
PXE_UINT32 BusType[1];      // list of supported bustypes
865
} PXE_SW_UNDI;
865
} PXE_SW_UNDI;
866
 
866
 
867
typedef union u_pxe_undi {
867
typedef union u_pxe_undi {
868
PXE_HW_UNDI hw;
868
PXE_HW_UNDI hw;
869
PXE_SW_UNDI sw;
869
PXE_SW_UNDI sw;
870
} PXE_UNDI;
870
} PXE_UNDI;
871
 
871
 
872
//
872
//
873
// Signature of !PXE structure
873
// Signature of !PXE structure
874
//
874
//
875
#define PXE_ROMID_SIGNATURE     PXE_BUSTYPE('!', 'P', 'X', 'E')
875
#define PXE_ROMID_SIGNATURE     PXE_BUSTYPE('!', 'P', 'X', 'E')
876
 
876
 
877
//
877
//
878
// !PXE structure format revision
878
// !PXE structure format revision
879
//
879
//
880
#define PXE_ROMID_REV                       0x02
880
#define PXE_ROMID_REV                       0x02
881
 
881
 
882
//
882
//
883
// UNDI command interface revision.  These are the values that get sent
883
// UNDI command interface revision.  These are the values that get sent
884
// in option 94 (Client Network Interface Identifier) in the DHCP Discover
884
// in option 94 (Client Network Interface Identifier) in the DHCP Discover
885
// and PXE Boot Server Request packets.
885
// and PXE Boot Server Request packets.
886
//
886
//
887
#define PXE_ROMID_MAJORVER                  0x03
887
#define PXE_ROMID_MAJORVER                  0x03
888
#define PXE_ROMID_MINORVER                  0x00
888
#define PXE_ROMID_MINORVER                  0x00
889
 
889
 
890
//
890
//
891
// Implementation flags
891
// Implementation flags
892
//
892
//
893
#define PXE_ROMID_IMP_HW_UNDI                   0x80000000
893
#define PXE_ROMID_IMP_HW_UNDI                   0x80000000
894
#define PXE_ROMID_IMP_SW_VIRT_ADDR              0x40000000
894
#define PXE_ROMID_IMP_SW_VIRT_ADDR              0x40000000
895
#define PXE_ROMID_IMP_64BIT_DEVICE              0x00010000
895
#define PXE_ROMID_IMP_64BIT_DEVICE              0x00010000
896
#define PXE_ROMID_IMP_FRAG_SUPPORTED                0x00008000
896
#define PXE_ROMID_IMP_FRAG_SUPPORTED                0x00008000
897
#define PXE_ROMID_IMP_CMD_LINK_SUPPORTED            0x00004000
897
#define PXE_ROMID_IMP_CMD_LINK_SUPPORTED            0x00004000
898
#define PXE_ROMID_IMP_CMD_QUEUE_SUPPORTED           0x00002000
898
#define PXE_ROMID_IMP_CMD_QUEUE_SUPPORTED           0x00002000
899
#define PXE_ROMID_IMP_MULTI_FRAME_SUPPORTED         0x00001000
899
#define PXE_ROMID_IMP_MULTI_FRAME_SUPPORTED         0x00001000
900
#define PXE_ROMID_IMP_NVDATA_SUPPORT_MASK           0x00000C00
900
#define PXE_ROMID_IMP_NVDATA_SUPPORT_MASK           0x00000C00
901
#define PXE_ROMID_IMP_NVDATA_BULK_WRITABLE          0x00000C00
901
#define PXE_ROMID_IMP_NVDATA_BULK_WRITABLE          0x00000C00
902
#define PXE_ROMID_IMP_NVDATA_SPARSE_WRITABLE        0x00000800
902
#define PXE_ROMID_IMP_NVDATA_SPARSE_WRITABLE        0x00000800
903
#define PXE_ROMID_IMP_NVDATA_READ_ONLY          0x00000400
903
#define PXE_ROMID_IMP_NVDATA_READ_ONLY          0x00000400
904
#define PXE_ROMID_IMP_NVDATA_NOT_AVAILABLE          0x00000000
904
#define PXE_ROMID_IMP_NVDATA_NOT_AVAILABLE          0x00000000
905
#define PXE_ROMID_IMP_STATISTICS_SUPPORTED          0x00000200
905
#define PXE_ROMID_IMP_STATISTICS_SUPPORTED          0x00000200
906
#define PXE_ROMID_IMP_STATION_ADDR_SETTABLE         0x00000100
906
#define PXE_ROMID_IMP_STATION_ADDR_SETTABLE         0x00000100
907
#define PXE_ROMID_IMP_PROMISCUOUS_MULTICAST_RX_SUPPORTED    0x00000080
907
#define PXE_ROMID_IMP_PROMISCUOUS_MULTICAST_RX_SUPPORTED    0x00000080
908
#define PXE_ROMID_IMP_PROMISCUOUS_RX_SUPPORTED      0x00000040
908
#define PXE_ROMID_IMP_PROMISCUOUS_RX_SUPPORTED      0x00000040
909
#define PXE_ROMID_IMP_BROADCAST_RX_SUPPORTED        0x00000020
909
#define PXE_ROMID_IMP_BROADCAST_RX_SUPPORTED        0x00000020
910
#define PXE_ROMID_IMP_FILTERED_MULTICAST_RX_SUPPORTED   0x00000010
910
#define PXE_ROMID_IMP_FILTERED_MULTICAST_RX_SUPPORTED   0x00000010
911
#define PXE_ROMID_IMP_SOFTWARE_INT_SUPPORTED        0x00000008
911
#define PXE_ROMID_IMP_SOFTWARE_INT_SUPPORTED        0x00000008
912
#define PXE_ROMID_IMP_TX_COMPLETE_INT_SUPPORTED     0x00000004
912
#define PXE_ROMID_IMP_TX_COMPLETE_INT_SUPPORTED     0x00000004
913
#define PXE_ROMID_IMP_PACKET_RX_INT_SUPPORTED       0x00000002
913
#define PXE_ROMID_IMP_PACKET_RX_INT_SUPPORTED       0x00000002
914
#define PXE_ROMID_IMP_CMD_COMPLETE_INT_SUPPORTED        0x00000001
914
#define PXE_ROMID_IMP_CMD_COMPLETE_INT_SUPPORTED        0x00000001
915
 
915
 
916
 
916
 
917
typedef struct s_pxe_cdb {
917
typedef struct s_pxe_cdb {
918
PXE_OPCODE OpCode;
918
PXE_OPCODE OpCode;
919
PXE_OPFLAGS OpFlags;
919
PXE_OPFLAGS OpFlags;
920
PXE_UINT16 CPBsize;
920
PXE_UINT16 CPBsize;
921
PXE_UINT16 DBsize;
921
PXE_UINT16 DBsize;
922
UINT64 CPBaddr;
922
UINT64 CPBaddr;
923
UINT64 DBaddr;
923
UINT64 DBaddr;
924
PXE_STATCODE StatCode;
924
PXE_STATCODE StatCode;
925
PXE_STATFLAGS StatFlags;
925
PXE_STATFLAGS StatFlags;
926
PXE_UINT16 IFnum;
926
PXE_UINT16 IFnum;
927
PXE_CONTROL Control;
927
PXE_CONTROL Control;
928
} PXE_CDB;
928
} PXE_CDB;
929
 
929
 
930
 
930
 
931
typedef union u_pxe_ip_addr {
931
typedef union u_pxe_ip_addr {
932
PXE_IPV6 IPv6;
932
PXE_IPV6 IPv6;
933
PXE_IPV4 IPv4;
933
PXE_IPV4 IPv4;
934
} PXE_IP_ADDR;
934
} PXE_IP_ADDR;
935
 
935
 
936
typedef union pxe_device {
936
typedef union pxe_device {
937
//
937
//
938
// PCI and PC Card NICs are both identified using bus, device
938
// PCI and PC Card NICs are both identified using bus, device
939
// and function numbers.  For PC Card, this may require PC
939
// and function numbers.  For PC Card, this may require PC
940
// Card services to be loaded in the BIOS or preboot
940
// Card services to be loaded in the BIOS or preboot
941
// environment.
941
// environment.
942
//
942
//
943
struct {
943
struct {
944
//
944
//
945
// See S/W UNDI ROMID structure definition for PCI and
945
// See S/W UNDI ROMID structure definition for PCI and
946
// PCC BusType definitions.
946
// PCC BusType definitions.
947
//
947
//
948
PXE_UINT32 BusType;
948
PXE_UINT32 BusType;
949
 
949
 
950
//
950
//
951
// Bus, device & function numbers that locate this device.
951
// Bus, device & function numbers that locate this device.
952
//
952
//
953
PXE_UINT16 Bus;
953
PXE_UINT16 Bus;
954
PXE_UINT8 Device;
954
PXE_UINT8 Device;
955
PXE_UINT8 Function;
955
PXE_UINT8 Function;
956
} PCI, PCC;
956
} PCI, PCC;
957
 
957
 
958
//
958
//
959
// %%TBD - More information is needed about enumerating
959
// %%TBD - More information is needed about enumerating
960
// USB and 1394 devices.
960
// USB and 1394 devices.
961
//
961
//
962
struct {
962
struct {
963
PXE_UINT32 BusType;
963
PXE_UINT32 BusType;
964
PXE_UINT32 tdb;
964
PXE_UINT32 tdb;
965
} USB, _1394;
965
} USB, _1394;
966
} PXE_DEVICE;
966
} PXE_DEVICE;
967
 
967
 
968
// cpb and db definitions
968
// cpb and db definitions
969
 
969
 
970
#define MAX_PCI_CONFIG_LEN 64   // # of dwords
970
#define MAX_PCI_CONFIG_LEN 64   // # of dwords
971
#define MAX_EEPROM_LEN 128       // #of dwords
971
#define MAX_EEPROM_LEN 128       // #of dwords
972
#define MAX_XMIT_BUFFERS    32  // recycling Q length for xmit_done
972
#define MAX_XMIT_BUFFERS    32  // recycling Q length for xmit_done
973
#define MAX_MCAST_ADDRESS_CNT 8
973
#define MAX_MCAST_ADDRESS_CNT 8
974
 
974
 
975
typedef struct s_pxe_cpb_start {
975
typedef struct s_pxe_cpb_start {
976
    //
976
    //
977
    // PXE_VOID Delay(PXE_UINT64 microseconds);
977
    // PXE_VOID Delay(PXE_UINT64 microseconds);
978
    //
978
    //
979
    // UNDI will never request a delay smaller than 10 microseconds
979
    // UNDI will never request a delay smaller than 10 microseconds
980
    // and will always request delays in increments of 10 microseconds.
980
    // and will always request delays in increments of 10 microseconds.
981
    // The Delay() CallBack routine must delay between n and n + 10 
981
    // The Delay() CallBack routine must delay between n and n + 10 
982
    // microseconds before returning control to the UNDI.
982
    // microseconds before returning control to the UNDI.
983
    //
983
    //
984
    // This field cannot be set to zero.
984
    // This field cannot be set to zero.
985
    //
985
    //
986
    PXE_UINT64 Delay;
986
    PXE_UINT64 Delay;
987
 
987
 
988
    //
988
    //
989
    // PXE_VOID Block(PXE_UINT32 enable);
989
    // PXE_VOID Block(PXE_UINT32 enable);
990
    //
990
    //
991
    // UNDI may need to block multi-threaded/multi-processor access to
991
    // UNDI may need to block multi-threaded/multi-processor access to
992
    // critical code sections when programming or accessing the network
992
    // critical code sections when programming or accessing the network
993
    // device.  To this end, a blocking service is needed by the UNDI.
993
    // device.  To this end, a blocking service is needed by the UNDI.
994
    // When UNDI needs a block, it will call Block() passing a non-zero
994
    // When UNDI needs a block, it will call Block() passing a non-zero
995
    // value.  When UNDI no longer needs a block, it will call Block()
995
    // value.  When UNDI no longer needs a block, it will call Block()
996
    // with a zero value.  When called, if the Block() is already enabled,
996
    // with a zero value.  When called, if the Block() is already enabled,
997
    // do not return control to the UNDI until the previous Block() is
997
    // do not return control to the UNDI until the previous Block() is
998
    // disabled.
998
    // disabled.
999
    //
999
    //
1000
    // This field cannot be set to zero.
1000
    // This field cannot be set to zero.
1001
    //
1001
    //
1002
    PXE_UINT64 Block;
1002
    PXE_UINT64 Block;
1003
 
1003
 
1004
    //
1004
    //
1005
    // PXE_VOID Virt2Phys(PXE_UINT64 virtual, PXE_UINT64 physical_ptr);
1005
    // PXE_VOID Virt2Phys(PXE_UINT64 virtual, PXE_UINT64 physical_ptr);
1006
    //
1006
    //
1007
    // UNDI will pass the virtual address of a buffer and the virtual
1007
    // UNDI will pass the virtual address of a buffer and the virtual
1008
    // address of a 64-bit physical buffer.  Convert the virtual address
1008
    // address of a 64-bit physical buffer.  Convert the virtual address
1009
    // to a physical address and write the result to the physical address
1009
    // to a physical address and write the result to the physical address
1010
    // buffer.  If virtual and physical addresses are the same, just
1010
    // buffer.  If virtual and physical addresses are the same, just
1011
    // copy the virtual address to the physical address buffer.
1011
    // copy the virtual address to the physical address buffer.
1012
    //
1012
    //
1013
    // This field can be set to zero if virtual and physical addresses 
1013
    // This field can be set to zero if virtual and physical addresses 
1014
    // are equal.
1014
    // are equal.
1015
    //
1015
    //
1016
    PXE_UINT64 Virt2Phys;
1016
    PXE_UINT64 Virt2Phys;
1017
    //
1017
    //
1018
    // PXE_VOID Mem_IO(PXE_UINT8 read_write, PXE_UINT8 len, PXE_UINT64 port, 
1018
    // PXE_VOID Mem_IO(PXE_UINT8 read_write, PXE_UINT8 len, PXE_UINT64 port, 
1019
    //              PXE_UINT64 buf_addr);
1019
    //              PXE_UINT64 buf_addr);
1020
    //
1020
    //
1021
    // UNDI will read or write the device io space using this call back 
1021
    // UNDI will read or write the device io space using this call back 
1022
    // function. It passes the number of bytes as the len parameter and it 
1022
    // function. It passes the number of bytes as the len parameter and it 
1023
    // will be either 1,2,4 or 8.
1023
    // will be either 1,2,4 or 8.
1024
    //
1024
    //
1025
    // This field can not be set to zero.
1025
    // This field can not be set to zero.
1026
    //
1026
    //
1027
    PXE_UINT64 Mem_IO;
1027
    PXE_UINT64 Mem_IO;
1028
} PXE_CPB_START;
1028
} PXE_CPB_START;
1029
 
1029
 
1030
#define PXE_DELAY_MILLISECOND                   1000
1030
#define PXE_DELAY_MILLISECOND                   1000
1031
#define PXE_DELAY_SECOND                    1000000
1031
#define PXE_DELAY_SECOND                    1000000
1032
#define PXE_IO_READ                     0
1032
#define PXE_IO_READ                     0
1033
#define PXE_IO_WRITE                        1
1033
#define PXE_IO_WRITE                        1
1034
#define PXE_MEM_READ                        2
1034
#define PXE_MEM_READ                        2
1035
#define PXE_MEM_WRITE                       4
1035
#define PXE_MEM_WRITE                       4
1036
 
1036
 
1037
 
1037
 
1038
typedef struct s_pxe_db_get_init_info {
1038
typedef struct s_pxe_db_get_init_info {
1039
    //
1039
    //
1040
    // Minimum length of locked memory buffer that must be given to
1040
    // Minimum length of locked memory buffer that must be given to
1041
    // the Initialize command. Giving UNDI more memory will generally
1041
    // the Initialize command. Giving UNDI more memory will generally
1042
    // give better performance.
1042
    // give better performance.
1043
    //
1043
    //
1044
    // If MemoryRequired is zero, the UNDI does not need and will not
1044
    // If MemoryRequired is zero, the UNDI does not need and will not
1045
    // use system memory to receive and transmit packets.
1045
    // use system memory to receive and transmit packets.
1046
    //
1046
    //
1047
    PXE_UINT32 MemoryRequired;
1047
    PXE_UINT32 MemoryRequired;
1048
 
1048
 
1049
    //
1049
    //
1050
    // Maximum frame data length for Tx/Rx excluding the media header.
1050
    // Maximum frame data length for Tx/Rx excluding the media header.
1051
    //
1051
    //
1052
    PXE_UINT32 FrameDataLen;
1052
    PXE_UINT32 FrameDataLen;
1053
 
1053
 
1054
    //
1054
    //
1055
    // Supported link speeds are in units of mega bits.  Common ethernet
1055
    // Supported link speeds are in units of mega bits.  Common ethernet
1056
    // values are 10, 100 and 1000.  Unused LinkSpeeds[] entries are zero
1056
    // values are 10, 100 and 1000.  Unused LinkSpeeds[] entries are zero
1057
    // filled.
1057
    // filled.
1058
    //
1058
    //
1059
    PXE_UINT32 LinkSpeeds[4];
1059
    PXE_UINT32 LinkSpeeds[4];
1060
 
1060
 
1061
    //
1061
    //
1062
    // Number of non-volatile storage items.
1062
    // Number of non-volatile storage items.
1063
    //
1063
    //
1064
    PXE_UINT32 NvCount;
1064
    PXE_UINT32 NvCount;
1065
 
1065
 
1066
    //
1066
    //
1067
    // Width of non-volatile storage item in bytes.  0, 1, 2 or 4
1067
    // Width of non-volatile storage item in bytes.  0, 1, 2 or 4
1068
    //
1068
    //
1069
    PXE_UINT16 NvWidth;
1069
    PXE_UINT16 NvWidth;
1070
 
1070
 
1071
    //
1071
    //
1072
    // Media header length.  This is the typical media header length for
1072
    // Media header length.  This is the typical media header length for
1073
    // this UNDI.  This information is needed when allocating receive
1073
    // this UNDI.  This information is needed when allocating receive
1074
    // and transmit buffers.
1074
    // and transmit buffers.
1075
    //
1075
    //
1076
    PXE_UINT16 MediaHeaderLen;
1076
    PXE_UINT16 MediaHeaderLen;
1077
 
1077
 
1078
    //
1078
    //
1079
    // Number of bytes in the NIC hardware (MAC) address.
1079
    // Number of bytes in the NIC hardware (MAC) address.
1080
    //
1080
    //
1081
    PXE_UINT16 HWaddrLen;
1081
    PXE_UINT16 HWaddrLen;
1082
 
1082
 
1083
    //
1083
    //
1084
    // Maximum number of multicast MAC addresses in the multicast
1084
    // Maximum number of multicast MAC addresses in the multicast
1085
    // MAC address filter list.
1085
    // MAC address filter list.
1086
    //
1086
    //
1087
    PXE_UINT16 MCastFilterCnt;
1087
    PXE_UINT16 MCastFilterCnt;
1088
 
1088
 
1089
    //
1089
    //
1090
    // Default number and size of transmit and receive buffers that will 
1090
    // Default number and size of transmit and receive buffers that will 
1091
    // be allocated by the UNDI.  If MemoryRequired is non-zero, this 
1091
    // be allocated by the UNDI.  If MemoryRequired is non-zero, this 
1092
    // allocation will come out of the memory buffer given to the Initialize 
1092
    // allocation will come out of the memory buffer given to the Initialize 
1093
    // command.  If MemoryRequired is zero, this allocation will come out of 
1093
    // command.  If MemoryRequired is zero, this allocation will come out of 
1094
    // memory on the NIC.
1094
    // memory on the NIC.
1095
    //
1095
    //
1096
    PXE_UINT16 TxBufCnt;
1096
    PXE_UINT16 TxBufCnt;
1097
    PXE_UINT16 TxBufSize;
1097
    PXE_UINT16 TxBufSize;
1098
    PXE_UINT16 RxBufCnt;
1098
    PXE_UINT16 RxBufCnt;
1099
    PXE_UINT16 RxBufSize;
1099
    PXE_UINT16 RxBufSize;
1100
 
1100
 
1101
    //
1101
    //
1102
    // Hardware interface types defined in the Assigned Numbers RFC
1102
    // Hardware interface types defined in the Assigned Numbers RFC
1103
    // and used in DHCP and ARP packets.
1103
    // and used in DHCP and ARP packets.
1104
    // See the PXE_IFTYPE typedef and PXE_IFTYPE_xxx macros.
1104
    // See the PXE_IFTYPE typedef and PXE_IFTYPE_xxx macros.
1105
    //
1105
    //
1106
    PXE_UINT8 IFtype;
1106
    PXE_UINT8 IFtype;
1107
 
1107
 
1108
    //
1108
    //
1109
    // Supported duplex.  See PXE_DUPLEX_xxxxx #defines below.
1109
    // Supported duplex.  See PXE_DUPLEX_xxxxx #defines below.
1110
    //
1110
    //
1111
    PXE_UINT8 Duplex;
1111
    PXE_UINT8 Duplex;
1112
 
1112
 
1113
    //
1113
    //
1114
    // Supported loopback options.  See PXE_LOOPBACK_xxxxx #defines below.
1114
    // Supported loopback options.  See PXE_LOOPBACK_xxxxx #defines below.
1115
    //
1115
    //
1116
    PXE_UINT8 LoopBack;
1116
    PXE_UINT8 LoopBack;
1117
} PXE_DB_GET_INIT_INFO;
1117
} PXE_DB_GET_INIT_INFO;
1118
 
1118
 
1119
#define PXE_MAX_TXRX_UNIT_ETHER             1500
1119
#define PXE_MAX_TXRX_UNIT_ETHER             1500
1120
 
1120
 
1121
#define PXE_HWADDR_LEN_ETHER                    0x0006
1121
#define PXE_HWADDR_LEN_ETHER                    0x0006
1122
#define PXE_MAC_HEADER_LEN_ETHER                0x000E
1122
#define PXE_MAC_HEADER_LEN_ETHER                0x000E
1123
 
1123
 
1124
#define PXE_DUPLEX_ENABLE_FULL_SUPPORTED            1
1124
#define PXE_DUPLEX_ENABLE_FULL_SUPPORTED            1
1125
#define PXE_DUPLEX_FORCE_FULL_SUPPORTED         2
1125
#define PXE_DUPLEX_FORCE_FULL_SUPPORTED         2
1126
 
1126
 
1127
#define PXE_LOOPBACK_INTERNAL_SUPPORTED         1
1127
#define PXE_LOOPBACK_INTERNAL_SUPPORTED         1
1128
#define PXE_LOOPBACK_EXTERNAL_SUPPORTED         2
1128
#define PXE_LOOPBACK_EXTERNAL_SUPPORTED         2
1129
 
1129
 
1130
 
1130
 
1131
typedef struct s_pxe_pci_config_info {
1131
typedef struct s_pxe_pci_config_info {
1132
    //
1132
    //
1133
    // This is the flag field for the PXE_DB_GET_CONFIG_INFO union.
1133
    // This is the flag field for the PXE_DB_GET_CONFIG_INFO union.
1134
    // For PCI bus devices, this field is set to PXE_BUSTYPE_PCI.
1134
    // For PCI bus devices, this field is set to PXE_BUSTYPE_PCI.
1135
    //
1135
    //
1136
    PXE_UINT32 BusType;
1136
    PXE_UINT32 BusType;
1137
 
1137
 
1138
    //
1138
    //
1139
    // This identifies the PCI network device that this UNDI interface
1139
    // This identifies the PCI network device that this UNDI interface
1140
    // is bound to.
1140
    // is bound to.
1141
    //
1141
    //
1142
    PXE_UINT16 Bus;
1142
    PXE_UINT16 Bus;
1143
    PXE_UINT8 Device;
1143
    PXE_UINT8 Device;
1144
    PXE_UINT8 Function;
1144
    PXE_UINT8 Function;
1145
 
1145
 
1146
    //
1146
    //
1147
    // This is a copy of the PCI configuration space for this 
1147
    // This is a copy of the PCI configuration space for this 
1148
    // network device.
1148
    // network device.
1149
    //
1149
    //
1150
    union {
1150
    union {
1151
        PXE_UINT8 Byte[256];
1151
        PXE_UINT8 Byte[256];
1152
        PXE_UINT16 Word[128];
1152
        PXE_UINT16 Word[128];
1153
        PXE_UINT32 Dword[64];
1153
        PXE_UINT32 Dword[64];
1154
    } Config;
1154
    } Config;
1155
} PXE_PCI_CONFIG_INFO;
1155
} PXE_PCI_CONFIG_INFO;
1156
 
1156
 
1157
 
1157
 
1158
typedef struct s_pxe_pcc_config_info {
1158
typedef struct s_pxe_pcc_config_info {
1159
    //
1159
    //
1160
    // This is the flag field for the PXE_DB_GET_CONFIG_INFO union.
1160
    // This is the flag field for the PXE_DB_GET_CONFIG_INFO union.
1161
    // For PCC bus devices, this field is set to PXE_BUSTYPE_PCC.
1161
    // For PCC bus devices, this field is set to PXE_BUSTYPE_PCC.
1162
    //
1162
    //
1163
    PXE_UINT32 BusType;
1163
    PXE_UINT32 BusType;
1164
   
1164
   
1165
    //
1165
    //
1166
    // This identifies the PCC network device that this UNDI interface
1166
    // This identifies the PCC network device that this UNDI interface
1167
    // is bound to.
1167
    // is bound to.
1168
    //
1168
    //
1169
    PXE_UINT16 Bus;
1169
    PXE_UINT16 Bus;
1170
    PXE_UINT8 Device;
1170
    PXE_UINT8 Device;
1171
    PXE_UINT8 Function;
1171
    PXE_UINT8 Function;
1172
 
1172
 
1173
    //
1173
    //
1174
    // This is a copy of the PCC configuration space for this 
1174
    // This is a copy of the PCC configuration space for this 
1175
    // network device.
1175
    // network device.
1176
    //
1176
    //
1177
    union {
1177
    union {
1178
        PXE_UINT8 Byte[256];
1178
        PXE_UINT8 Byte[256];
1179
        PXE_UINT16 Word[128];
1179
        PXE_UINT16 Word[128];
1180
        PXE_UINT32 Dword[64];
1180
        PXE_UINT32 Dword[64];
1181
    } Config;
1181
    } Config;
1182
} PXE_PCC_CONFIG_INFO;
1182
} PXE_PCC_CONFIG_INFO;
1183
 
1183
 
1184
 
1184
 
1185
typedef struct s_pxe_usb_config_info {
1185
typedef struct s_pxe_usb_config_info {
1186
    PXE_UINT32 BusType;
1186
    PXE_UINT32 BusType;
1187
    // %%TBD What should we return here...
1187
    // %%TBD What should we return here...
1188
} PXE_USB_CONFIG_INFO;
1188
} PXE_USB_CONFIG_INFO;
1189
 
1189
 
1190
 
1190
 
1191
typedef struct s_pxe_1394_config_info {
1191
typedef struct s_pxe_1394_config_info {
1192
    PXE_UINT32 BusType;
1192
    PXE_UINT32 BusType;
1193
    // %%TBD What should we return here...
1193
    // %%TBD What should we return here...
1194
} PXE_1394_CONFIG_INFO;
1194
} PXE_1394_CONFIG_INFO;
1195
 
1195
 
1196
 
1196
 
1197
typedef union u_pxe_db_get_config_info {
1197
typedef union u_pxe_db_get_config_info {
1198
    PXE_PCI_CONFIG_INFO pci;
1198
    PXE_PCI_CONFIG_INFO pci;
1199
    PXE_PCC_CONFIG_INFO pcc;
1199
    PXE_PCC_CONFIG_INFO pcc;
1200
    PXE_USB_CONFIG_INFO usb;
1200
    PXE_USB_CONFIG_INFO usb;
1201
    PXE_1394_CONFIG_INFO _1394;
1201
    PXE_1394_CONFIG_INFO _1394;
1202
} PXE_DB_GET_CONFIG_INFO;
1202
} PXE_DB_GET_CONFIG_INFO;
1203
 
1203
 
1204
 
1204
 
1205
typedef struct s_pxe_cpb_initialize {
1205
typedef struct s_pxe_cpb_initialize {
1206
    //
1206
    //
1207
    // Address of first (lowest) byte of the memory buffer.  This buffer must
1207
    // Address of first (lowest) byte of the memory buffer.  This buffer must
1208
    // be in contiguous physical memory and cannot be swapped out.  The UNDI
1208
    // be in contiguous physical memory and cannot be swapped out.  The UNDI
1209
    // will be using this for transmit and receive buffering.
1209
    // will be using this for transmit and receive buffering.
1210
    //
1210
    //
1211
    PXE_UINT64 MemoryAddr;
1211
    PXE_UINT64 MemoryAddr;
1212
 
1212
 
1213
    //
1213
    //
1214
    // MemoryLength must be greater than or equal to MemoryRequired
1214
    // MemoryLength must be greater than or equal to MemoryRequired
1215
    // returned by the Get Init Info command.
1215
    // returned by the Get Init Info command.
1216
    //
1216
    //
1217
    PXE_UINT32 MemoryLength;
1217
    PXE_UINT32 MemoryLength;
1218
 
1218
 
1219
    //
1219
    //
1220
    // Desired link speed in Mbit/sec.  Common ethernet values are 10, 100
1220
    // Desired link speed in Mbit/sec.  Common ethernet values are 10, 100
1221
    // and 1000.  Setting a value of zero will auto-detect and/or use the
1221
    // and 1000.  Setting a value of zero will auto-detect and/or use the
1222
    // default link speed (operation depends on UNDI/NIC functionality).
1222
    // default link speed (operation depends on UNDI/NIC functionality).
1223
    //
1223
    //
1224
    PXE_UINT32 LinkSpeed;
1224
    PXE_UINT32 LinkSpeed;
1225
 
1225
 
1226
    //
1226
    //
1227
    // Suggested number and size of receive and transmit buffers to
1227
    // Suggested number and size of receive and transmit buffers to
1228
    // allocate.  If MemoryAddr and MemoryLength are non-zero, this
1228
    // allocate.  If MemoryAddr and MemoryLength are non-zero, this
1229
    // allocation comes out of the supplied memory buffer.  If MemoryAddr 
1229
    // allocation comes out of the supplied memory buffer.  If MemoryAddr 
1230
    // and MemoryLength are zero, this allocation comes out of memory
1230
    // and MemoryLength are zero, this allocation comes out of memory
1231
    // on the NIC.
1231
    // on the NIC.
1232
    //
1232
    //
1233
    // If these fields are set to zero, the UNDI will allocate buffer
1233
    // If these fields are set to zero, the UNDI will allocate buffer
1234
    // counts and sizes as it sees fit.
1234
    // counts and sizes as it sees fit.
1235
    //
1235
    //
1236
    PXE_UINT16 TxBufCnt;
1236
    PXE_UINT16 TxBufCnt;
1237
    PXE_UINT16 TxBufSize;
1237
    PXE_UINT16 TxBufSize;
1238
    PXE_UINT16 RxBufCnt;
1238
    PXE_UINT16 RxBufCnt;
1239
    PXE_UINT16 RxBufSize;
1239
    PXE_UINT16 RxBufSize;
1240
 
1240
 
1241
    //
1241
    //
1242
    // The following configuration parameters are optional and must be zero 
1242
    // The following configuration parameters are optional and must be zero 
1243
    // to use the default values.
1243
    // to use the default values.
1244
    //
1244
    //
1245
    PXE_UINT8 Duplex;
1245
    PXE_UINT8 Duplex;
1246
 
1246
 
1247
    PXE_UINT8 LoopBack;
1247
    PXE_UINT8 LoopBack;
1248
} PXE_CPB_INITIALIZE;
1248
} PXE_CPB_INITIALIZE;
1249
 
1249
 
1250
 
1250
 
1251
#define PXE_DUPLEX_DEFAULT                  0x00
1251
#define PXE_DUPLEX_DEFAULT                  0x00
1252
#define PXE_FORCE_FULL_DUPLEX                   0x01
1252
#define PXE_FORCE_FULL_DUPLEX                   0x01
1253
#define PXE_ENABLE_FULL_DUPLEX              0x02
1253
#define PXE_ENABLE_FULL_DUPLEX              0x02
1254
 
1254
 
1255
#define LOOPBACK_NORMAL 0
1255
#define LOOPBACK_NORMAL 0
1256
#define LOOPBACK_INTERNAL 1
1256
#define LOOPBACK_INTERNAL 1
1257
#define LOOPBACK_EXTERNAL 2
1257
#define LOOPBACK_EXTERNAL 2
1258
 
1258
 
1259
 
1259
 
1260
typedef struct s_pxe_db_initialize {
1260
typedef struct s_pxe_db_initialize {
1261
    //
1261
    //
1262
    // Actual amount of memory used from the supplied memory buffer.  This
1262
    // Actual amount of memory used from the supplied memory buffer.  This
1263
    // may be less that the amount of memory suppllied and may be zero if
1263
    // may be less that the amount of memory suppllied and may be zero if
1264
    // the UNDI and network device do not use external memory buffers.
1264
    // the UNDI and network device do not use external memory buffers.
1265
    //
1265
    //
1266
    // Memory used by the UNDI and network device is allocated from the 
1266
    // Memory used by the UNDI and network device is allocated from the 
1267
    // lowest memory buffer address.
1267
    // lowest memory buffer address.
1268
    //
1268
    //
1269
    PXE_UINT32 MemoryUsed;
1269
    PXE_UINT32 MemoryUsed;
1270
 
1270
 
1271
    //
1271
    //
1272
    // Actual number and size of receive and transmit buffers that were
1272
    // Actual number and size of receive and transmit buffers that were
1273
    // allocated.
1273
    // allocated.
1274
    //
1274
    //
1275
    PXE_UINT16 TxBufCnt;
1275
    PXE_UINT16 TxBufCnt;
1276
    PXE_UINT16 TxBufSize;
1276
    PXE_UINT16 TxBufSize;
1277
    PXE_UINT16 RxBufCnt;
1277
    PXE_UINT16 RxBufCnt;
1278
    PXE_UINT16 RxBufSize;
1278
    PXE_UINT16 RxBufSize;
1279
} PXE_DB_INITIALIZE;
1279
} PXE_DB_INITIALIZE;
1280
 
1280
 
1281
 
1281
 
1282
typedef struct s_pxe_cpb_receive_filters {
1282
typedef struct s_pxe_cpb_receive_filters {
1283
    //
1283
    //
1284
    // List of multicast MAC addresses.  This list, if present, will
1284
    // List of multicast MAC addresses.  This list, if present, will
1285
    // replace the existing multicast MAC address filter list.
1285
    // replace the existing multicast MAC address filter list.
1286
    //
1286
    //
1287
    PXE_MAC_ADDR MCastList[MAX_MCAST_ADDRESS_CNT];
1287
    PXE_MAC_ADDR MCastList[MAX_MCAST_ADDRESS_CNT];
1288
} PXE_CPB_RECEIVE_FILTERS;
1288
} PXE_CPB_RECEIVE_FILTERS;
1289
 
1289
 
1290
 
1290
 
1291
typedef struct s_pxe_db_receive_filters {
1291
typedef struct s_pxe_db_receive_filters {
1292
    //
1292
    //
1293
    // Filtered multicast MAC address list.
1293
    // Filtered multicast MAC address list.
1294
    //
1294
    //
1295
    PXE_MAC_ADDR MCastList[MAX_MCAST_ADDRESS_CNT];
1295
    PXE_MAC_ADDR MCastList[MAX_MCAST_ADDRESS_CNT];
1296
} PXE_DB_RECEIVE_FILTERS;
1296
} PXE_DB_RECEIVE_FILTERS;
1297
 
1297
 
1298
 
1298
 
1299
typedef struct s_pxe_cpb_station_address {
1299
typedef struct s_pxe_cpb_station_address {
1300
    //
1300
    //
1301
    // If supplied and supported, the current station MAC address
1301
    // If supplied and supported, the current station MAC address
1302
    // will be changed.
1302
    // will be changed.
1303
    //
1303
    //
1304
    PXE_MAC_ADDR StationAddr;
1304
    PXE_MAC_ADDR StationAddr;
1305
} PXE_CPB_STATION_ADDRESS;
1305
} PXE_CPB_STATION_ADDRESS;
1306
 
1306
 
1307
 
1307
 
1308
typedef struct s_pxe_dpb_station_address {
1308
typedef struct s_pxe_dpb_station_address {
1309
    //
1309
    //
1310
    // Current station MAC address.
1310
    // Current station MAC address.
1311
    //
1311
    //
1312
    PXE_MAC_ADDR StationAddr;
1312
    PXE_MAC_ADDR StationAddr;
1313
 
1313
 
1314
    //
1314
    //
1315
    // Station broadcast MAC address.
1315
    // Station broadcast MAC address.
1316
    //
1316
    //
1317
    PXE_MAC_ADDR BroadcastAddr;
1317
    PXE_MAC_ADDR BroadcastAddr;
1318
 
1318
 
1319
    //
1319
    //
1320
    // Permanent station MAC address.
1320
    // Permanent station MAC address.
1321
    //
1321
    //
1322
    PXE_MAC_ADDR PermanentAddr;
1322
    PXE_MAC_ADDR PermanentAddr;
1323
} PXE_DB_STATION_ADDRESS;
1323
} PXE_DB_STATION_ADDRESS;
1324
 
1324
 
1325
 
1325
 
1326
typedef struct s_pxe_db_statistics {
1326
typedef struct s_pxe_db_statistics {
1327
    //
1327
    //
1328
    // Bit field identifying what statistic data is collected by the 
1328
    // Bit field identifying what statistic data is collected by the 
1329
    // UNDI/NIC.
1329
    // UNDI/NIC.
1330
    // If bit 0x00 is set, Data[0x00] is collected.
1330
    // If bit 0x00 is set, Data[0x00] is collected.
1331
    // If bit 0x01 is set, Data[0x01] is collected.
1331
    // If bit 0x01 is set, Data[0x01] is collected.
1332
    // If bit 0x20 is set, Data[0x20] is collected.
1332
    // If bit 0x20 is set, Data[0x20] is collected.
1333
    // If bit 0x21 is set, Data[0x21] is collected.
1333
    // If bit 0x21 is set, Data[0x21] is collected.
1334
    // Etc.
1334
    // Etc.
1335
    //
1335
    //
1336
    PXE_UINT64 Supported;
1336
    PXE_UINT64 Supported;
1337
 
1337
 
1338
    //
1338
    //
1339
    // Statistic data.
1339
    // Statistic data.
1340
    //
1340
    //
1341
    PXE_UINT64 Data[64];
1341
    PXE_UINT64 Data[64];
1342
} PXE_DB_STATISTICS;
1342
} PXE_DB_STATISTICS;
1343
 
1343
 
1344
//
1344
//
1345
// Total number of frames received.  Includes frames with errors and
1345
// Total number of frames received.  Includes frames with errors and
1346
// dropped frames.
1346
// dropped frames.
1347
//
1347
//
1348
#define PXE_STATISTICS_RX_TOTAL_FRAMES          0x00
1348
#define PXE_STATISTICS_RX_TOTAL_FRAMES          0x00
1349
 
1349
 
1350
//
1350
//
1351
// Number of valid frames received and copied into receive buffers.
1351
// Number of valid frames received and copied into receive buffers.
1352
//
1352
//
1353
#define PXE_STATISTICS_RX_GOOD_FRAMES           0x01
1353
#define PXE_STATISTICS_RX_GOOD_FRAMES           0x01
1354
 
1354
 
1355
//
1355
//
1356
// Number of frames below the minimum length for the media.
1356
// Number of frames below the minimum length for the media.
1357
// This would be <64 for ethernet.
1357
// This would be <64 for ethernet.
1358
//
1358
//
1359
#define PXE_STATISTICS_RX_UNDERSIZE_FRAMES          0x02
1359
#define PXE_STATISTICS_RX_UNDERSIZE_FRAMES          0x02
1360
 
1360
 
1361
//
1361
//
1362
// Number of frames longer than the maxminum length for the
1362
// Number of frames longer than the maxminum length for the
1363
// media.  This would be >1500 for ethernet.
1363
// media.  This would be >1500 for ethernet.
1364
//
1364
//
1365
#define PXE_STATISTICS_RX_OVERSIZE_FRAMES           0x03
1365
#define PXE_STATISTICS_RX_OVERSIZE_FRAMES           0x03
1366
 
1366
 
1367
//
1367
//
1368
// Valid frames that were dropped because receive buffers were full.
1368
// Valid frames that were dropped because receive buffers were full.
1369
//
1369
//
1370
#define PXE_STATISTICS_RX_DROPPED_FRAMES            0x04
1370
#define PXE_STATISTICS_RX_DROPPED_FRAMES            0x04
1371
 
1371
 
1372
//
1372
//
1373
// Number of valid unicast frames received and not dropped.
1373
// Number of valid unicast frames received and not dropped.
1374
//
1374
//
1375
#define PXE_STATISTICS_RX_UNICAST_FRAMES            0x05
1375
#define PXE_STATISTICS_RX_UNICAST_FRAMES            0x05
1376
 
1376
 
1377
//
1377
//
1378
// Number of valid broadcast frames received and not dropped.
1378
// Number of valid broadcast frames received and not dropped.
1379
//
1379
//
1380
#define PXE_STATISTICS_RX_BROADCAST_FRAMES          0x06
1380
#define PXE_STATISTICS_RX_BROADCAST_FRAMES          0x06
1381
 
1381
 
1382
//
1382
//
1383
// Number of valid mutlicast frames received and not dropped.
1383
// Number of valid mutlicast frames received and not dropped.
1384
//
1384
//
1385
#define PXE_STATISTICS_RX_MULTICAST_FRAMES          0x07
1385
#define PXE_STATISTICS_RX_MULTICAST_FRAMES          0x07
1386
 
1386
 
1387
//
1387
//
1388
// Number of frames w/ CRC or alignment errors.
1388
// Number of frames w/ CRC or alignment errors.
1389
//
1389
//
1390
#define PXE_STATISTICS_RX_CRC_ERROR_FRAMES          0x08
1390
#define PXE_STATISTICS_RX_CRC_ERROR_FRAMES          0x08
1391
 
1391
 
1392
//
1392
//
1393
// Total number of bytes received.  Includes frames with errors
1393
// Total number of bytes received.  Includes frames with errors
1394
// and dropped frames.
1394
// and dropped frames.
1395
//
1395
//
1396
#define PXE_STATISTICS_RX_TOTAL_BYTES           0x09
1396
#define PXE_STATISTICS_RX_TOTAL_BYTES           0x09
1397
 
1397
 
1398
//
1398
//
1399
// Transmit statistics.
1399
// Transmit statistics.
1400
//
1400
//
1401
#define PXE_STATISTICS_TX_TOTAL_FRAMES          0x0A
1401
#define PXE_STATISTICS_TX_TOTAL_FRAMES          0x0A
1402
#define PXE_STATISTICS_TX_GOOD_FRAMES           0x0B
1402
#define PXE_STATISTICS_TX_GOOD_FRAMES           0x0B
1403
#define PXE_STATISTICS_TX_UNDERSIZE_FRAMES          0x0C
1403
#define PXE_STATISTICS_TX_UNDERSIZE_FRAMES          0x0C
1404
#define PXE_STATISTICS_TX_OVERSIZE_FRAMES           0x0D
1404
#define PXE_STATISTICS_TX_OVERSIZE_FRAMES           0x0D
1405
#define PXE_STATISTICS_TX_DROPPED_FRAMES            0x0E
1405
#define PXE_STATISTICS_TX_DROPPED_FRAMES            0x0E
1406
#define PXE_STATISTICS_TX_UNICAST_FRAMES            0x0F
1406
#define PXE_STATISTICS_TX_UNICAST_FRAMES            0x0F
1407
#define PXE_STATISTICS_TX_BROADCAST_FRAMES          0x10
1407
#define PXE_STATISTICS_TX_BROADCAST_FRAMES          0x10
1408
#define PXE_STATISTICS_TX_MULTICAST_FRAMES          0x11
1408
#define PXE_STATISTICS_TX_MULTICAST_FRAMES          0x11
1409
#define PXE_STATISTICS_TX_CRC_ERROR_FRAMES          0x12
1409
#define PXE_STATISTICS_TX_CRC_ERROR_FRAMES          0x12
1410
#define PXE_STATISTICS_TX_TOTAL_BYTES           0x13
1410
#define PXE_STATISTICS_TX_TOTAL_BYTES           0x13
1411
 
1411
 
1412
//
1412
//
1413
// Number of collisions detection on this subnet.
1413
// Number of collisions detection on this subnet.
1414
//
1414
//
1415
#define PXE_STATISTICS_COLLISIONS               0x14
1415
#define PXE_STATISTICS_COLLISIONS               0x14
1416
 
1416
 
1417
//
1417
//
1418
// Number of frames destined for unsupported protocol.
1418
// Number of frames destined for unsupported protocol.
1419
//
1419
//
1420
#define PXE_STATISTICS_UNSUPPORTED_PROTOCOL         0x15
1420
#define PXE_STATISTICS_UNSUPPORTED_PROTOCOL         0x15
1421
 
1421
 
1422
 
1422
 
1423
typedef struct s_pxe_cpb_mcast_ip_to_mac {
1423
typedef struct s_pxe_cpb_mcast_ip_to_mac {
1424
    //
1424
    //
1425
    // Multicast IP address to be converted to multicast MAC address.
1425
    // Multicast IP address to be converted to multicast MAC address.
1426
    //
1426
    //
1427
    PXE_IP_ADDR IP;
1427
    PXE_IP_ADDR IP;
1428
} PXE_CPB_MCAST_IP_TO_MAC;
1428
} PXE_CPB_MCAST_IP_TO_MAC;
1429
 
1429
 
1430
 
1430
 
1431
typedef struct s_pxe_db_mcast_ip_to_mac {
1431
typedef struct s_pxe_db_mcast_ip_to_mac {
1432
    //
1432
    //
1433
    // Multicast MAC address.
1433
    // Multicast MAC address.
1434
    //
1434
    //
1435
    PXE_MAC_ADDR MAC;
1435
    PXE_MAC_ADDR MAC;
1436
} PXE_DB_MCAST_IP_TO_MAC;
1436
} PXE_DB_MCAST_IP_TO_MAC;
1437
 
1437
 
1438
 
1438
 
1439
typedef struct s_pxe_cpb_nvdata_sparse {
1439
typedef struct s_pxe_cpb_nvdata_sparse {
1440
    //
1440
    //
1441
    // NvData item list.  Only items in this list will be updated.
1441
    // NvData item list.  Only items in this list will be updated.
1442
    //
1442
    //
1443
    struct {
1443
    struct {
1444
        //  Non-volatile storage address to be changed.
1444
        //  Non-volatile storage address to be changed.
1445
        PXE_UINT32 Addr;
1445
        PXE_UINT32 Addr;
1446
 
1446
 
1447
        // Data item to write into above storage address.
1447
        // Data item to write into above storage address.
1448
   
1448
   
1449
        union {
1449
        union {
1450
            PXE_UINT8 Byte;
1450
            PXE_UINT8 Byte;
1451
            PXE_UINT16 Word;
1451
            PXE_UINT16 Word;
1452
            PXE_UINT32 Dword;
1452
            PXE_UINT32 Dword;
1453
        } Data;
1453
        } Data;
1454
    } Item[MAX_EEPROM_LEN];
1454
    } Item[MAX_EEPROM_LEN];
1455
} PXE_CPB_NVDATA_SPARSE;
1455
} PXE_CPB_NVDATA_SPARSE;
1456
 
1456
 
1457
 
1457
 
1458
//
1458
//
1459
// When using bulk update, the size of the CPB structure must be
1459
// When using bulk update, the size of the CPB structure must be
1460
// the same size as the non-volatile NIC storage.
1460
// the same size as the non-volatile NIC storage.
1461
//
1461
//
1462
typedef union u_pxe_cpb_nvdata_bulk {
1462
typedef union u_pxe_cpb_nvdata_bulk {
1463
    //
1463
    //
1464
    // Array of byte-wide data items.
1464
    // Array of byte-wide data items.
1465
    //
1465
    //
1466
    PXE_UINT8 Byte[MAX_EEPROM_LEN << 2];
1466
    PXE_UINT8 Byte[MAX_EEPROM_LEN << 2];
1467
 
1467
 
1468
    //
1468
    //
1469
    // Array of word-wide data items.
1469
    // Array of word-wide data items.
1470
    //
1470
    //
1471
    PXE_UINT16 Word[MAX_EEPROM_LEN << 1];
1471
    PXE_UINT16 Word[MAX_EEPROM_LEN << 1];
1472
 
1472
 
1473
    //
1473
    //
1474
    // Array of dword-wide data items.
1474
    // Array of dword-wide data items.
1475
    //
1475
    //
1476
    PXE_UINT32 Dword[MAX_EEPROM_LEN];
1476
    PXE_UINT32 Dword[MAX_EEPROM_LEN];
1477
} PXE_CPB_NVDATA_BULK;
1477
} PXE_CPB_NVDATA_BULK;
1478
 
1478
 
1479
typedef struct s_pxe_db_nvdata {
1479
typedef struct s_pxe_db_nvdata {
1480
 
1480
 
1481
    // Arrays of data items from non-volatile storage.
1481
    // Arrays of data items from non-volatile storage.
1482
 
1482
 
1483
    union {
1483
    union {
1484
        //
1484
        //
1485
        // Array of byte-wide data items.
1485
        // Array of byte-wide data items.
1486
        //
1486
        //
1487
        PXE_UINT8 Byte[MAX_EEPROM_LEN << 2];
1487
        PXE_UINT8 Byte[MAX_EEPROM_LEN << 2];
1488
 
1488
 
1489
        //
1489
        //
1490
        // Array of word-wide data items.
1490
        // Array of word-wide data items.
1491
        //
1491
        //
1492
        PXE_UINT16 Word[MAX_EEPROM_LEN << 1];
1492
        PXE_UINT16 Word[MAX_EEPROM_LEN << 1];
1493
 
1493
 
1494
        // Array of dword-wide data items.
1494
        // Array of dword-wide data items.
1495
 
1495
 
1496
        PXE_UINT32 Dword[MAX_EEPROM_LEN];
1496
        PXE_UINT32 Dword[MAX_EEPROM_LEN];
1497
    } Data;
1497
    } Data;
1498
} PXE_DB_NVDATA;
1498
} PXE_DB_NVDATA;
1499
 
1499
 
1500
 
1500
 
1501
typedef struct s_pxe_db_get_status {
1501
typedef struct s_pxe_db_get_status {
1502
    //
1502
    //
1503
    // Length of next receive frame (header + data).  If this is zero,
1503
    // Length of next receive frame (header + data).  If this is zero,
1504
    // there is no next receive frame available.
1504
    // there is no next receive frame available.
1505
    //
1505
    //
1506
    PXE_UINT32 RxFrameLen;
1506
    PXE_UINT32 RxFrameLen;
1507
 
1507
 
1508
    //
1508
    //
1509
    // Reserved, set to zero.
1509
    // Reserved, set to zero.
1510
    //
1510
    //
1511
    PXE_UINT32 reserved;
1511
    PXE_UINT32 reserved;
1512
 
1512
 
1513
    //
1513
    //
1514
    //  Addresses of transmitted buffers that need to be recycled.
1514
    //  Addresses of transmitted buffers that need to be recycled.
1515
    //
1515
    //
1516
    PXE_UINT64 TxBuffer[MAX_XMIT_BUFFERS];
1516
    PXE_UINT64 TxBuffer[MAX_XMIT_BUFFERS];
1517
} PXE_DB_GET_STATUS;
1517
} PXE_DB_GET_STATUS;
1518
 
1518
 
1519
 
1519
 
1520
 
1520
 
1521
typedef struct s_pxe_cpb_fill_header {
1521
typedef struct s_pxe_cpb_fill_header {
1522
    //
1522
    //
1523
    // Source and destination MAC addresses.  These will be copied into
1523
    // Source and destination MAC addresses.  These will be copied into
1524
    // the media header without doing byte swapping.
1524
    // the media header without doing byte swapping.
1525
    //
1525
    //
1526
    PXE_MAC_ADDR SrcAddr;
1526
    PXE_MAC_ADDR SrcAddr;
1527
    PXE_MAC_ADDR DestAddr;
1527
    PXE_MAC_ADDR DestAddr;
1528
 
1528
 
1529
    //
1529
    //
1530
    // Address of first byte of media header.  The first byte of packet data
1530
    // Address of first byte of media header.  The first byte of packet data
1531
    // follows the last byte of the media header.
1531
    // follows the last byte of the media header.
1532
    //
1532
    //
1533
    PXE_UINT64 MediaHeader;
1533
    PXE_UINT64 MediaHeader;
1534
 
1534
 
1535
    //
1535
    //
1536
    // Length of packet data in bytes (not including the media header).
1536
    // Length of packet data in bytes (not including the media header).
1537
    //
1537
    //
1538
    PXE_UINT32 PacketLen;
1538
    PXE_UINT32 PacketLen;
1539
 
1539
 
1540
    //
1540
    //
1541
    // Protocol type.  This will be copied into the media header without
1541
    // Protocol type.  This will be copied into the media header without
1542
    // doing byte swapping.  Protocol type numbers can be obtained from
1542
    // doing byte swapping.  Protocol type numbers can be obtained from
1543
    // the Assigned Numbers RFC 1700.
1543
    // the Assigned Numbers RFC 1700.
1544
    //
1544
    //
1545
    PXE_UINT16 Protocol;
1545
    PXE_UINT16 Protocol;
1546
 
1546
 
1547
    //
1547
    //
1548
    // Length of the media header in bytes.
1548
    // Length of the media header in bytes.
1549
    //
1549
    //
1550
    PXE_UINT16 MediaHeaderLen;
1550
    PXE_UINT16 MediaHeaderLen;
1551
} PXE_CPB_FILL_HEADER;
1551
} PXE_CPB_FILL_HEADER;
1552
 
1552
 
1553
 
1553
 
1554
#define PXE_PROTOCOL_ETHERNET_IP                0x0800
1554
#define PXE_PROTOCOL_ETHERNET_IP                0x0800
1555
#define PXE_PROTOCOL_ETHERNET_ARP               0x0806
1555
#define PXE_PROTOCOL_ETHERNET_ARP               0x0806
1556
#define MAX_XMIT_FRAGMENTS 16
1556
#define MAX_XMIT_FRAGMENTS 16
1557
 
1557
 
1558
typedef struct s_pxe_cpb_fill_header_fragmented {
1558
typedef struct s_pxe_cpb_fill_header_fragmented {
1559
    //
1559
    //
1560
    // Source and destination MAC addresses.  These will be copied into
1560
    // Source and destination MAC addresses.  These will be copied into
1561
    // the media header without doing byte swapping.
1561
    // the media header without doing byte swapping.
1562
    //
1562
    //
1563
    PXE_MAC_ADDR SrcAddr;
1563
    PXE_MAC_ADDR SrcAddr;
1564
    PXE_MAC_ADDR DestAddr;
1564
    PXE_MAC_ADDR DestAddr;
1565
 
1565
 
1566
    //
1566
    //
1567
    // Length of packet data in bytes (not including the media header).
1567
    // Length of packet data in bytes (not including the media header).
1568
    //
1568
    //
1569
    PXE_UINT32 PacketLen;
1569
    PXE_UINT32 PacketLen;
1570
 
1570
 
1571
    //
1571
    //
1572
    // Protocol type.  This will be copied into the media header without
1572
    // Protocol type.  This will be copied into the media header without
1573
    // doing byte swapping.  Protocol type numbers can be obtained from
1573
    // doing byte swapping.  Protocol type numbers can be obtained from
1574
    // the Assigned Numbers RFC 1700.
1574
    // the Assigned Numbers RFC 1700.
1575
    //
1575
    //
1576
    PXE_MEDIA_PROTOCOL Protocol;
1576
    PXE_MEDIA_PROTOCOL Protocol;
1577
 
1577
 
1578
    //
1578
    //
1579
    // Length of the media header in bytes.
1579
    // Length of the media header in bytes.
1580
    //
1580
    //
1581
    PXE_UINT16 MediaHeaderLen;
1581
    PXE_UINT16 MediaHeaderLen;
1582
 
1582
 
1583
    //
1583
    //
1584
    // Number of packet fragment descriptors.
1584
    // Number of packet fragment descriptors.
1585
    //
1585
    //
1586
    PXE_UINT16 FragCnt;
1586
    PXE_UINT16 FragCnt;
1587
 
1587
 
1588
    //
1588
    //
1589
    // Reserved, must be set to zero.
1589
    // Reserved, must be set to zero.
1590
    //
1590
    //
1591
    PXE_UINT16 reserved;
1591
    PXE_UINT16 reserved;
1592
 
1592
 
1593
    //
1593
    //
1594
    // Array of packet fragment descriptors.  The first byte of the media
1594
    // Array of packet fragment descriptors.  The first byte of the media
1595
    // header is the first byte of the first fragment.
1595
    // header is the first byte of the first fragment.
1596
    //
1596
    //
1597
    struct {
1597
    struct {
1598
        //
1598
        //
1599
        // Address of this packet fragment.
1599
        // Address of this packet fragment.
1600
        //
1600
        //
1601
        PXE_UINT64 FragAddr;
1601
        PXE_UINT64 FragAddr;
1602
 
1602
 
1603
        //
1603
        //
1604
        // Length of this packet fragment.
1604
        // Length of this packet fragment.
1605
        //
1605
        //
1606
        PXE_UINT32 FragLen;
1606
        PXE_UINT32 FragLen;
1607
 
1607
 
1608
        //
1608
        //
1609
        // Reserved, must be set to zero.
1609
        // Reserved, must be set to zero.
1610
        //
1610
        //
1611
        PXE_UINT32 reserved;
1611
        PXE_UINT32 reserved;
1612
    } FragDesc[MAX_XMIT_FRAGMENTS];
1612
    } FragDesc[MAX_XMIT_FRAGMENTS];
1613
} PXE_CPB_FILL_HEADER_FRAGMENTED;
1613
} PXE_CPB_FILL_HEADER_FRAGMENTED;
1614
 
1614
 
1615
 
1615
 
1616
 
1616
 
1617
typedef struct s_pxe_cpb_transmit {
1617
typedef struct s_pxe_cpb_transmit {
1618
    //
1618
    //
1619
    // Address of first byte of frame buffer.  This is also the first byte
1619
    // Address of first byte of frame buffer.  This is also the first byte
1620
    // of the media header.
1620
    // of the media header.
1621
    //
1621
    //
1622
    PXE_UINT64 FrameAddr;
1622
    PXE_UINT64 FrameAddr;
1623
 
1623
 
1624
    //
1624
    //
1625
    // Length of the data portion of the frame buffer in bytes.  Do not
1625
    // Length of the data portion of the frame buffer in bytes.  Do not
1626
    // include the length of the media header.
1626
    // include the length of the media header.
1627
    //
1627
    //
1628
    PXE_UINT32 DataLen;
1628
    PXE_UINT32 DataLen;
1629
 
1629
 
1630
    //
1630
    //
1631
    // Length of the media header in bytes.
1631
    // Length of the media header in bytes.
1632
    //
1632
    //
1633
    PXE_UINT16 MediaheaderLen;
1633
    PXE_UINT16 MediaheaderLen;
1634
 
1634
 
1635
    //
1635
    //
1636
    // Reserved, must be zero.
1636
    // Reserved, must be zero.
1637
    //
1637
    //
1638
    PXE_UINT16 reserved;
1638
    PXE_UINT16 reserved;
1639
} PXE_CPB_TRANSMIT;
1639
} PXE_CPB_TRANSMIT;
1640
 
1640
 
1641
 
1641
 
1642
 
1642
 
1643
typedef struct s_pxe_cpb_transmit_fragments {
1643
typedef struct s_pxe_cpb_transmit_fragments {
1644
    //
1644
    //
1645
    // Length of packet data in bytes (not including the media header).
1645
    // Length of packet data in bytes (not including the media header).
1646
    //
1646
    //
1647
    PXE_UINT32 FrameLen;
1647
    PXE_UINT32 FrameLen;
1648
 
1648
 
1649
    //
1649
    //
1650
    // Length of the media header in bytes.
1650
    // Length of the media header in bytes.
1651
    //
1651
    //
1652
    PXE_UINT16 MediaheaderLen;
1652
    PXE_UINT16 MediaheaderLen;
1653
 
1653
 
1654
    //
1654
    //
1655
    // Number of packet fragment descriptors.
1655
    // Number of packet fragment descriptors.
1656
    //
1656
    //
1657
    PXE_UINT16 FragCnt;
1657
    PXE_UINT16 FragCnt;
1658
 
1658
 
1659
    //
1659
    //
1660
    // Array of frame fragment descriptors.  The first byte of the first
1660
    // Array of frame fragment descriptors.  The first byte of the first
1661
    // fragment is also the first byte of the media header.
1661
    // fragment is also the first byte of the media header.
1662
    //
1662
    //
1663
    struct {
1663
    struct {
1664
        //
1664
        //
1665
        // Address of this frame fragment.
1665
        // Address of this frame fragment.
1666
        //
1666
        //
1667
        PXE_UINT64 FragAddr;
1667
        PXE_UINT64 FragAddr;
1668
 
1668
 
1669
        //
1669
        //
1670
        // Length of this frame fragment.
1670
        // Length of this frame fragment.
1671
        //
1671
        //
1672
        PXE_UINT32 FragLen;
1672
        PXE_UINT32 FragLen;
1673
 
1673
 
1674
        //
1674
        //
1675
        // Reserved, must be set to zero.
1675
        // Reserved, must be set to zero.
1676
        //
1676
        //
1677
        PXE_UINT32 reserved;
1677
        PXE_UINT32 reserved;
1678
    } FragDesc[MAX_XMIT_FRAGMENTS];
1678
    } FragDesc[MAX_XMIT_FRAGMENTS];
1679
} PXE_CPB_TRANSMIT_FRAGMENTS;
1679
} PXE_CPB_TRANSMIT_FRAGMENTS;
1680
 
1680
 
1681
 
1681
 
1682
typedef struct s_pxe_cpb_receive {
1682
typedef struct s_pxe_cpb_receive {
1683
    //
1683
    //
1684
    // Address of first byte of receive buffer.  This is also the first byte
1684
    // Address of first byte of receive buffer.  This is also the first byte
1685
    // of the frame header.
1685
    // of the frame header.
1686
    //
1686
    //
1687
    PXE_UINT64 BufferAddr;
1687
    PXE_UINT64 BufferAddr;
1688
 
1688
 
1689
    //
1689
    //
1690
    // Length of receive buffer.  This must be large enough to hold the
1690
    // Length of receive buffer.  This must be large enough to hold the
1691
    // received frame (media header + data).  If the length of smaller than
1691
    // received frame (media header + data).  If the length of smaller than
1692
    // the received frame, data will be lost.
1692
    // the received frame, data will be lost.
1693
    //
1693
    //
1694
    PXE_UINT32 BufferLen;
1694
    PXE_UINT32 BufferLen;
1695
 
1695
 
1696
    //
1696
    //
1697
    // Reserved, must be set to zero.
1697
    // Reserved, must be set to zero.
1698
    //
1698
    //
1699
    PXE_UINT32 reserved;
1699
    PXE_UINT32 reserved;
1700
} PXE_CPB_RECEIVE;
1700
} PXE_CPB_RECEIVE;
1701
 
1701
 
1702
 
1702
 
1703
typedef struct s_pxe_db_receive {
1703
typedef struct s_pxe_db_receive {
1704
    //
1704
    //
1705
    // Source and destination MAC addresses from media header.
1705
    // Source and destination MAC addresses from media header.
1706
    //
1706
    //
1707
    PXE_MAC_ADDR SrcAddr;
1707
    PXE_MAC_ADDR SrcAddr;
1708
    PXE_MAC_ADDR DestAddr;
1708
    PXE_MAC_ADDR DestAddr;
1709
 
1709
 
1710
    //
1710
    //
1711
    // Length of received frame.  May be larger than receive buffer size.
1711
    // Length of received frame.  May be larger than receive buffer size.
1712
    // The receive buffer will not be overwritten.  This is how to tell
1712
    // The receive buffer will not be overwritten.  This is how to tell
1713
    // if data was lost because the receive buffer was too small.
1713
    // if data was lost because the receive buffer was too small.
1714
    //
1714
    //
1715
    PXE_UINT32 FrameLen;
1715
    PXE_UINT32 FrameLen;
1716
 
1716
 
1717
    //
1717
    //
1718
    // Protocol type from media header.
1718
    // Protocol type from media header.
1719
    //
1719
    //
1720
    PXE_MEDIA_PROTOCOL Protocol;
1720
    PXE_MEDIA_PROTOCOL Protocol;
1721
 
1721
 
1722
    //
1722
    //
1723
    // Length of media header in received frame.
1723
    // Length of media header in received frame.
1724
    //
1724
    //
1725
    PXE_UINT16 MediaHeaderLen;
1725
    PXE_UINT16 MediaHeaderLen;
1726
 
1726
 
1727
    //
1727
    //
1728
    // Type of receive frame.
1728
    // Type of receive frame.
1729
    //
1729
    //
1730
    PXE_FRAME_TYPE Type;
1730
    PXE_FRAME_TYPE Type;
1731
 
1731
 
1732
    //
1732
    //
1733
    // Reserved, must be zero.
1733
    // Reserved, must be zero.
1734
    //
1734
    //
1735
    PXE_UINT8 reserved[7];
1735
    PXE_UINT8 reserved[7];
1736
 
1736
 
1737
} PXE_DB_RECEIVE;
1737
} PXE_DB_RECEIVE;
1738
 
1738
 
1739
#pragma pack()
1739
#pragma pack()
1740
 
1740
 
1741
/* EOF - efi_pxe.h */
1741
/* EOF - efi_pxe.h */
1742
#endif /* _EFI_PXE_H */
1742
#endif /* _EFI_PXE_H */
1743
 
1743
 
1744
 
1744