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