]> git.proxmox.com Git - mirror_edk2.git/blame - OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/Ax88772.h
OptionRomPkg: Ax88772b: Fixing register access issue in Apple Eth Adapter
[mirror_edk2.git] / OptionRomPkg / Bus / Usb / UsbNetworking / Ax88772b / Ax88772.h
CommitLineData
7f556e4d 1/** @file\r
2 Definitions for ASIX AX88772 Ethernet adapter.\r
3\r
a94b1b86 4 Copyright (c) 2011 - 2015, Intel Corporation\r
7f556e4d 5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _AX88772_H_\r
16#define _AX88772_H_\r
17\r
18#include <Uefi.h>\r
19\r
20#include <Guid/EventGroup.h>\r
7f556e4d 21\r
22#include <IndustryStandard/Pci.h>\r
23\r
24#include <Library/BaseMemoryLib.h>\r
25#include <Library/DebugLib.h>\r
26#include <Library/DevicePathLib.h>\r
27#include <Library/UefiBootServicesTableLib.h>\r
28#include <Library/UefiDriverEntryPoint.h>\r
29#include <Library/UefiLib.h>\r
30#include <Library/UefiRuntimeLib.h>\r
31\r
32#include <Protocol/DevicePath.h>\r
33#include <Protocol/LoadedImage.h>\r
34#include <Protocol/NetworkInterfaceIdentifier.h>\r
35#include <Protocol/SimpleNetwork.h>\r
36#include <Protocol/UsbIo.h>\r
37\r
38#define MAX_QUEUE_SIZE 50\r
39#define MAX_BULKIN_SIZE 16384\r
40#define HW_HDR_LENGTH 8\r
41\r
42\r
43#define MAX_LINKIDLE_THRESHOLD 20000\r
44\r
45\r
46\r
47//------------------------------------------------------------------------------\r
48// Macros\r
49//------------------------------------------------------------------------------\r
50\r
51#if defined(_MSC_VER) /* Handle Microsoft VC++ compiler specifics. */\r
52#define DBG_ENTER() DEBUG (( 0xffffffff, "Entering " __FUNCTION__ "\n" )) ///< Display routine entry\r
53#define DBG_EXIT() DEBUG (( 0xffffffff, "Exiting " __FUNCTION__ "\n" )) ///< Display routine exit\r
54#define DBG_EXIT_DEC(Status) DEBUG (( 0xffffffff, "Exiting " __FUNCTION__ ", Status: %d\n", Status )) ///< Display routine exit with decimal value\r
55#define DBG_EXIT_HEX(Status) DEBUG (( 0xffffffff, "Exiting " __FUNCTION__ ", Status: 0x%08x\n", Status )) ///< Display routine exit with hex value\r
56#define DBG_EXIT_STATUS(Status) DEBUG (( 0xffffffff, "Exiting " __FUNCTION__ ", Status: %r\n", Status )) ///< Display routine exit with status value\r
57#define DBG_EXIT_TF(Status) DEBUG (( 0xffffffff, "Exiting " __FUNCTION__ ", returning %s\n", (FALSE == Status) ? L"FALSE" : L"TRUE" )) ///< Display routine with TRUE/FALSE value\r
58#else // _MSC_VER\r
59#define DBG_ENTER() ///< Display routine entry\r
60#define DBG_EXIT() ///< Display routine exit\r
61#define DBG_EXIT_DEC(Status) ///< Display routine exit with decimal value\r
62#define DBG_EXIT_HEX(Status) ///< Display routine exit with hex value\r
63#define DBG_EXIT_STATUS(Status) ///< Display routine exit with status value\r
64#define DBG_EXIT_TF(Status) ///< Display routine with TRUE/FALSE value\r
65#endif // _MSC_VER\r
66\r
67#define USB_IS_IN_ENDPOINT(EndPointAddr) (((EndPointAddr) & BIT7) != 0) ///< Return TRUE/FALSE for IN direction\r
68#define USB_IS_OUT_ENDPOINT(EndPointAddr) (((EndPointAddr) & BIT7) == 0) ///< Return TRUE/FALSE for OUT direction\r
69#define USB_IS_BULK_ENDPOINT(Attribute) (((Attribute) & (BIT0 | BIT1)) == USB_ENDPOINT_BULK) ///< Return TRUE/FALSE for BULK type\r
70#define USB_IS_INTERRUPT_ENDPOINT(Attribute) (((Attribute) & (BIT0 | BIT1)) == USB_ENDPOINT_INTERRUPT) ///< Return TRUE/FALSE for INTERRUPT type\r
71\r
72\r
73#define PRINT(_L_STR) (gST->ConOut->OutputString(gST->ConOut,(_L_STR)))\r
74//------------------------------------------------------------------------------\r
75// Constants\r
76//------------------------------------------------------------------------------\r
77\r
78#define DEBUG_RX_BROADCAST 0x40000000 ///< Display RX broadcast messages\r
79#define DEBUG_RX_MULTICAST 0x20000000 ///< Display RX multicast messages\r
80#define DEBUG_RX_UNICAST 0x10000000 ///< Display RX unicast messages\r
81#define DEBUG_MAC_ADDRESS 0x08000000 ///< Display the MAC address\r
82#define DEBUG_LINK 0x04000000 ///< Display the link status\r
83#define DEBUG_TX 0x02000000 ///< Display the TX messages\r
84#define DEBUG_PHY 0x01000000 ///< Display the PHY register values\r
85#define DEBUG_SROM 0x00800000 ///< Display the SROM contents\r
86#define DEBUG_TIMER 0x00400000 ///< Display the timer routine entry/exit\r
87#define DEBUG_TPL 0x00200000 ///< Display the timer routine entry/exit\r
88\r
89#define AX88772_MAX_PKT_SIZE 2048 ///< Maximum packet size\r
90\r
91#define ETHERNET_HEADER_SIZE sizeof ( ETHERNET_HEADER ) ///< Size in bytes of the Ethernet header\r
92#define MIN_ETHERNET_PKT_SIZE 60 ///< Minimum packet size including Ethernet header\r
93#define MAX_ETHERNET_PKT_SIZE 1500 ///< Ethernet spec 3.1.1: Minimum packet size\r
94\r
95#define USB_NETWORK_CLASS 0x09 ///< USB Network class code\r
96#define USB_BUS_TIMEOUT 1000 ///< USB timeout in milliseconds\r
97\r
98#define TIMER_MSEC 20 ///< Polling interval for the NIC\r
99//#define TPL_AX88772 TPL_CALLBACK ///< TPL for routine synchronization\r
100\r
101#define HC_DEBUG 0\r
102#define BULKIN_TIMEOUT 20\r
103#define AUTONEG_DELAY 500000\r
104#define AUTONEG_POLLCNT 20\r
105\r
106/**\r
107 Verify new TPL value\r
108\r
109 This macro which is enabled when debug is enabled verifies that\r
110 the new TPL value is >= the current TPL value.\r
111**/\r
112#ifdef VERIFY_TPL\r
113#undef VERIFY_TPL\r
114#endif // VERIFY_TPL\r
115\r
116#if !defined(MDEPKG_NDEBUG)\r
117\r
118#define VERIFY_TPL(tpl) \\r
119{ \\r
120 EFI_TPL PreviousTpl; \\r
121 \\r
122 PreviousTpl = gBS->RaiseTPL ( TPL_HIGH_LEVEL ); \\r
123 gBS->RestoreTPL ( PreviousTpl ); \\r
124 if ( PreviousTpl > tpl ) { \\r
125 DEBUG (( DEBUG_ERROR, "Current TPL: %d, New TPL: %d\r\n", PreviousTpl, tpl )); \\r
126 ASSERT ( PreviousTpl <= tpl ); \\r
127 } \\r
128}\r
129\r
130#else // MDEPKG_NDEBUG\r
131\r
132#define VERIFY_TPL(tpl)\r
133\r
134#endif // MDEPKG_NDEBUG\r
135\r
136//------------------------------------------------------------------------------\r
137// Hardware Definition\r
138//------------------------------------------------------------------------------\r
139\r
140#define FreeQueueSize 10\r
141\r
142#define DEV_SIGNATURE SIGNATURE_32 ('A','X','8','8') ///< Signature of data structures in memory\r
143\r
7f556e4d 144#define RESET_MSEC 1000 ///< Reset duration\r
145#define PHY_RESET_MSEC 500 ///< PHY reset duration\r
146\r
147//\r
148// RX Control register\r
149//\r
150\r
151#define RXC_PRO 0x0001 ///< Receive all packets\r
152#define RXC_AMALL 0x0002 ///< Receive all multicast packets\r
153#define RXC_SEP 0x0004 ///< Save error packets\r
154#define RXC_AB 0x0008 ///< Receive broadcast packets\r
155#define RXC_AM 0x0010 ///< Use multicast destination address hash table\r
156#define RXC_AP 0x0020 ///< Accept physical address from Multicast Filter\r
157#define RXC_SO 0x0080 ///< Start operation\r
158#define RXC_MFB 0x0300 ///< Maximum frame burst\r
159#define RXC_MFB_2048 0 ///< Maximum frame size: 2048 bytes\r
160#define RXC_MFB_4096 0x0100 ///< Maximum frame size: 4096 bytes\r
161#define RXC_MFB_8192 0x0200 ///< Maximum frame size: 8192 bytes\r
162#define RXC_MFB_16384 0x0300 ///< Maximum frame size: 16384 bytes\r
163\r
164/*Freddy*/\r
165#define RXC_RH1M 0x0100 ///< Rx header 1\r
166#define RXC_RH2M 0x0200 ///< Rx header 2\r
167#define RXC_RH3M 0x0400 ///< Rx header 3\r
168/*Freddy*/\r
169\r
170//\r
171// Medium Status register\r
172//\r
173\r
174#define MS_FD 0x0002 ///< Full duplex\r
175#define MS_ONE 0x0004 ///< Must be one\r
176#define MS_RFC 0x0010 ///< RX flow control enable\r
177#define MS_TFC 0x0020 ///< TX flow control enable\r
178#define MS_PF 0x0080 ///< Pause frame enable\r
179#define MS_RE 0x0100 ///< Receive enable\r
180#define MS_PS 0x0200 ///< Port speed 1=100, 0=10 Mbps\r
181#define MS_SBP 0x0800 ///< Stop back pressure\r
182#define MS_SM 0x1000 ///< Super MAC support\r
183\r
184//\r
185// Software PHY Select register\r
186//\r
187\r
188#define SPHY_PSEL (1 << 0) ///< Select internal PHY\r
189#define SPHY_SSMII (1 << 2)\r
190#define SPHY_SSEN (1 << 4)\r
191#define SPHY_ASEL 0x02 ///< 1=Auto select, 0=Manual select\r
192\r
193//\r
194// Software Reset register\r
195//\r
196\r
197#define SRR_RR 0x01 ///< Clear receive frame length error\r
198#define SRR_RT 0x02 ///< Clear transmit frame length error\r
199#define SRR_BZTYPE 0x04 ///< External PHY reset pin tri-state enable\r
200#define SRR_PRL 0x08 ///< External PHY reset pin level\r
201#define SRR_BZ 0x10 ///< Force Bulk to return zero length packet\r
202#define SRR_IPRL 0x20 ///< Internal PHY reset control\r
203#define SRR_IPPD 0x40 ///< Internal PHY power down\r
204\r
205//\r
206// PHY ID values\r
207//\r
208\r
209#define PHY_ID_INTERNAL 0x0010 ///< Internal PHY\r
210\r
211//\r
212// USB Commands\r
213//\r
214\r
215#define CMD_PHY_ACCESS_SOFTWARE 0x06 ///< Software in control of PHY\r
216#define CMD_PHY_REG_READ 0x07 ///< Read PHY register, Value: PHY, Index: Register, Data: Register value\r
217#define CMD_PHY_REG_WRITE 0x08 ///< Write PHY register, Value: PHY, Index: Register, Data: New 16-bit value\r
218#define CMD_PHY_ACCESS_HARDWARE 0x0a ///< Hardware in control of PHY\r
219#define CMD_SROM_READ 0x0b ///< Read SROM register: Value: Address, Data: Value\r
220#define CMD_RX_CONTROL_WRITE 0x10 ///< Set the RX control register, Value: New value\r
221#define CMD_GAPS_WRITE 0x12 ///< Write the gaps register, Value: New value\r
222#define CMD_MAC_ADDRESS_READ 0x13 ///< Read the MAC address, Data: 6 byte MAC address\r
223#define CMD_MAC_ADDRESS_WRITE 0x14 ///< Set the MAC address, Data: New 6 byte MAC address\r
224#define CMD_MULTICAST_HASH_WRITE 0x16 ///< Write the multicast hash table, Data: New 8 byte value\r
225#define CMD_MULTICAST_HASH_READ 0x16 ///< Read the multicast hash table\r
226#define CMD_MEDIUM_STATUS_READ 0x1a ///< Read medium status register, Data: Register value\r
227#define CMD_MEDIUM_STATUS_WRITE 0x1b ///< Write medium status register, Value: New value\r
228#define CMD_WRITE_GPIOS 0x1f\r
229#define CMD_RESET 0x20 ///< Reset register, Value: New value\r
230#define CMD_PHY_SELECT 0x22 ///< PHY select register, Value: New value\r
231\r
232/*Freddy*/\r
233#define CMD_RXQTC 0x2a ///< RX Queue Cascade Threshold Control Register\r
234/*Freddy*/\r
235\r
236//------------------------------\r
237// USB Endpoints\r
238//------------------------------\r
239\r
240#define CONTROL_ENDPOINT 0 ///< Control endpoint\r
241#define INTERRUPT_ENDPOINT 1 ///< Interrupt endpoint\r
242#define BULK_IN_ENDPOINT 2 ///< Receive endpoint\r
243#define BULK_OUT_ENDPOINT 3 ///< Transmit endpoint\r
244\r
245//------------------------------\r
246// PHY Registers\r
247//------------------------------\r
248\r
249#define PHY_BMCR 0 ///< Control register\r
250#define PHY_BMSR 1 ///< Status register\r
251#define PHY_ANAR 4 ///< Autonegotiation advertisement register\r
252#define PHY_ANLPAR 5 ///< Autonegotiation link parter ability register\r
253#define PHY_ANER 6 ///< Autonegotiation expansion register\r
254\r
255// BMCR - Register 0\r
256\r
257#define BMCR_RESET 0x8000 ///< 1 = Reset the PHY, bit clears after reset\r
258#define BMCR_LOOPBACK 0x4000 ///< 1 = Loopback enabled\r
259#define BMCR_100MBPS 0x2000 ///< 100 Mbits/Sec\r
260#define BMCR_10MBPS 0 ///< 10 Mbits/Sec\r
261#define BMCR_AUTONEGOTIATION_ENABLE 0x1000 ///< 1 = Enable autonegotiation\r
262#define BMCR_POWER_DOWN 0x0800 ///< 1 = Power down\r
263#define BMCR_ISOLATE 0x0400 ///< 0 = Isolate PHY\r
264#define BMCR_RESTART_AUTONEGOTIATION 0x0200 ///< 1 = Restart autonegotiation\r
265#define BMCR_FULL_DUPLEX 0x0100 ///< Full duplex operation\r
266#define BMCR_HALF_DUPLEX 0 ///< Half duplex operation\r
267#define BMCR_COLLISION_TEST 0x0080 ///< 1 = Collision test enabled\r
268\r
269// BSMR - Register 1\r
270\r
271#define BMSR_100BASET4 0x8000 ///< 1 = 100BASE-T4 mode\r
272#define BMSR_100BASETX_FDX 0x4000 ///< 1 = 100BASE-TX full duplex\r
273#define BMSR_100BASETX_HDX 0x2000 ///< 1 = 100BASE-TX half duplex\r
274#define BMSR_10BASET_FDX 0x1000 ///< 1 = 10BASE-T full duplex\r
275#define BMSR_10BASET_HDX 0x0800 ///< 1 = 10BASE-T half duplex\r
276#define BMSR_MF 0x0040 ///< 1 = PHY accepts frames with preamble suppressed\r
277#define BMSR_AUTONEG_CMPLT 0x0020 ///< 1 = Autonegotiation complete\r
278#define BMSR_RF 0x0010 ///< 1 = Remote fault\r
279#define BMSR_AUTONEG 0x0008 ///< 1 = Able to perform autonegotiation\r
280#define BMSR_LINKST 0x0004 ///< 1 = Link up\r
281#define BMSR_JABBER_DETECT 0x0002 ///< 1 = jabber condition detected\r
282#define BMSR_EXTENDED_CAPABILITY 0x0001 ///< 1 = Extended register capable\r
283\r
284// ANAR and ANLPAR Registers 4, 5\r
285\r
286#define AN_NP 0x8000 ///< 1 = Next page available\r
287#define AN_ACK 0x4000 ///< 1 = Link partner acknowledged\r
288#define AN_RF 0x2000 ///< 1 = Remote fault indicated by link partner\r
289#define AN_FCS 0x0400 ///< 1 = Flow control ability\r
290#define AN_T4 0x0200 ///< 1 = 100BASE-T4 support\r
291#define AN_TX_FDX 0x0100 ///< 1 = 100BASE-TX Full duplex\r
292#define AN_TX_HDX 0x0080 ///< 1 = 100BASE-TX support\r
293#define AN_10_FDX 0x0040 ///< 1 = 10BASE-T Full duplex\r
294#define AN_10_HDX 0x0020 ///< 1 = 10BASE-T support\r
295#define AN_CSMA_CD 0x0001 ///< 1 = IEEE 802.3 CSMA/CD support\r
296\r
9a1c4bec
SS
297// asix_flags defines\r
298#define FLAG_NONE 0\r
299#define FLAG_TYPE_AX88172 BIT0\r
300#define FLAG_TYPE_AX88772 BIT1\r
301#define FLAG_TYPE_AX88772B BIT2\r
302#define FLAG_EEPROM_MAC BIT3 // initial mac address in eeprom\r
7f556e4d 303\r
304//------------------------------------------------------------------------------\r
305// Data Types\r
306//------------------------------------------------------------------------------\r
307\r
9a1c4bec
SS
308typedef struct {\r
309 UINT16 VendorId;\r
310 UINT16 ProductId;\r
311 INT32 Flags;\r
312}ASIX_DONGLE;\r
313\r
7f556e4d 314/**\r
315 Ethernet header layout\r
316\r
317 IEEE 802.3-2002 Part 3 specification, section 3.1.1.\r
318**/\r
319#pragma pack(1)\r
320typedef struct {\r
321 UINT8 dest_addr[PXE_HWADDR_LEN_ETHER]; ///< Destination LAN address\r
322 UINT8 src_addr[PXE_HWADDR_LEN_ETHER]; ///< Source LAN address\r
323 UINT16 type; ///< Protocol or length\r
324} ETHERNET_HEADER;\r
325#pragma pack()\r
326\r
327/**\r
328 Receive and Transmit packet structure\r
329**/\r
330#pragma pack(1)\r
331typedef struct _RX_TX_PACKET {\r
332 struct _RX_TX_PACKET * pNext; ///< Next receive packet\r
333 UINT16 Length; ///< Packet length\r
334 UINT16 LengthBar; ///< Complement of the length\r
335 UINT8 Data[ AX88772_MAX_PKT_SIZE ]; ///< Received packet data\r
336} RX_TX_PACKET;\r
337#pragma pack()\r
338\r
339\r
340#pragma pack(1)\r
341typedef struct _RX_PKT {\r
342 struct _RX_PKT *pNext;\r
343 BOOLEAN f_Used;\r
344 UINT16 Length;\r
345 UINT8 Data [AX88772_MAX_PKT_SIZE] ;\r
346} RX_PKT;\r
347#pragma pack()\r
348\r
349/**\r
350 AX88772 control structure\r
351\r
352 The driver uses this structure to manage the Asix AX88772 10/100\r
353 Ethernet controller.\r
354**/\r
355typedef struct {\r
356 UINTN Signature; ///< Structure identification\r
357\r
358 //\r
359 // USB data\r
360 //\r
361 EFI_HANDLE Controller; ///< Controller handle\r
362 EFI_USB_IO_PROTOCOL * pUsbIo; ///< USB driver interface\r
363\r
364 //\r
365 // Simple network protocol data\r
366 //\r
367 EFI_SIMPLE_NETWORK_PROTOCOL SimpleNetwork; ///< Driver's network stack interface\r
368 EFI_SIMPLE_NETWORK_PROTOCOL SimpleNetwork_Backup;\r
369 EFI_SIMPLE_NETWORK_MODE SimpleNetworkData; ///< Data for simple network\r
370\r
371 //\r
372 // Ethernet controller data\r
373 //\r
374 BOOLEAN bInitialized; ///< Controller initialized\r
375 VOID * pTxBuffer; ///< Last transmit buffer\r
376 UINT16 PhyId; ///< PHY ID\r
377\r
378 //\r
379 // Link state\r
380 //\r
381 BOOLEAN b100Mbps; ///< Current link speed, FALSE = 10 Mbps\r
382 BOOLEAN bComplete; ///< Current state of auto-negotiation\r
383 BOOLEAN bFullDuplex; ///< Current duplex\r
384 BOOLEAN bLinkUp; ///< Current link state\r
385 UINTN LinkIdleCnt;\r
386 UINTN PollCount; ///< Number of times the autonegotiation status was polled\r
387 UINT16 CurRxControl;\r
388 //\r
389 // Receive buffer list\r
390 //\r
391 RX_TX_PACKET * pRxTest;\r
392 RX_TX_PACKET * pTxTest;\r
393\r
394 INT8 MulticastHash[8];\r
395 EFI_MAC_ADDRESS MAC;\r
396 BOOLEAN bHavePkt;\r
397 \r
398 EFI_DEVICE_PATH_PROTOCOL *MyDevPath;\r
399 \r
400 EFI_DRIVER_BINDING_PROTOCOL * DrvBind;\r
401 \r
402 RX_PKT * QueueHead;\r
403 RX_PKT * pNextFill;\r
404 RX_PKT * pFirstFill;\r
405 UINTN PktCntInQueue;\r
406 UINT8 * pBulkInBuff;\r
7361d3ff
SS
407\r
408 INT32 Flags;\r
409\r
7f556e4d 410} NIC_DEVICE;\r
411\r
412#define DEV_FROM_SIMPLE_NETWORK(a) CR (a, NIC_DEVICE, SimpleNetwork, DEV_SIGNATURE) ///< Locate NIC_DEVICE from Simple Network Protocol\r
413\r
414//------------------------------------------------------------------------------\r
415// Simple Network Protocol\r
416//------------------------------------------------------------------------------\r
417\r
418/**\r
419 Reset the network adapter.\r
420\r
421 Resets a network adapter and reinitializes it with the parameters that\r
422 were provided in the previous call to Initialize (). The transmit and\r
423 receive queues are cleared. Receive filters, the station address, the\r
424 statistics, and the multicast-IP-to-HW MAC addresses are not reset by\r
425 this call.\r
426\r
427 This routine calls ::Ax88772Reset to perform the adapter specific\r
428 reset operation. This routine also starts the link negotiation\r
429 by calling ::Ax88772NegotiateLinkStart.\r
430\r
431 @param [in] pSimpleNetwork Protocol instance pointer\r
432 @param [in] bExtendedVerification Indicates that the driver may perform a more\r
433 exhaustive verification operation of the device\r
434 during reset.\r
435\r
436 @retval EFI_SUCCESS This operation was successful.\r
437 @retval EFI_NOT_STARTED The network interface was not started.\r
438 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
439 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
440 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
441 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
442\r
443**/\r
444EFI_STATUS\r
445EFIAPI\r
446SN_Reset (\r
447 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork,\r
448 IN BOOLEAN bExtendedVerification\r
449 );\r
450\r
451/**\r
452 Initialize the simple network protocol.\r
453\r
454 This routine calls ::Ax88772MacAddressGet to obtain the\r
455 MAC address.\r
456\r
457 @param [in] pNicDevice NIC_DEVICE_INSTANCE pointer\r
458\r
459 @retval EFI_SUCCESS Setup was successful\r
460\r
461**/\r
462EFI_STATUS\r
463SN_Setup (\r
464 IN NIC_DEVICE * pNicDevice\r
465 );\r
466\r
467/**\r
468 This routine starts the network interface.\r
469\r
470 @param [in] pSimpleNetwork Protocol instance pointer\r
471\r
472 @retval EFI_SUCCESS This operation was successful.\r
473 @retval EFI_ALREADY_STARTED The network interface was already started.\r
474 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
475 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
476 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
477 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
478\r
479**/\r
480EFI_STATUS\r
481EFIAPI\r
482SN_Start (\r
483 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork\r
484 );\r
485\r
486/**\r
487 Set the MAC address.\r
488 \r
489 This function modifies or resets the current station address of a\r
490 network interface. If Reset is TRUE, then the current station address\r
491 is set ot the network interface's permanent address. If Reset if FALSE\r
492 then the current station address is changed to the address specified by\r
493 pNew.\r
494\r
495 This routine calls ::Ax88772MacAddressSet to update the MAC address\r
496 in the network adapter.\r
497\r
498 @param [in] pSimpleNetwork Protocol instance pointer\r
499 @param [in] bReset Flag used to reset the station address to the\r
500 network interface's permanent address.\r
501 @param [in] pNew New station address to be used for the network\r
502 interface.\r
503\r
504 @retval EFI_SUCCESS This operation was successful.\r
505 @retval EFI_NOT_STARTED The network interface was not started.\r
506 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
507 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
508 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
509 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
510\r
511**/\r
512EFI_STATUS\r
513EFIAPI\r
514SN_StationAddress (\r
515 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork,\r
516 IN BOOLEAN bReset,\r
517 IN EFI_MAC_ADDRESS * pNew\r
518 );\r
519\r
520/**\r
521 This function resets or collects the statistics on a network interface.\r
522 If the size of the statistics table specified by StatisticsSize is not\r
523 big enough for all of the statistics that are collected by the network\r
524 interface, then a partial buffer of statistics is returned in\r
525 StatisticsTable.\r
526\r
527 @param [in] pSimpleNetwork Protocol instance pointer\r
528 @param [in] bReset Set to TRUE to reset the statistics for the network interface.\r
529 @param [in, out] pStatisticsSize On input the size, in bytes, of StatisticsTable. On output\r
530 the size, in bytes, of the resulting table of statistics.\r
531 @param [out] pStatisticsTable A pointer to the EFI_NETWORK_STATISTICS structure that\r
532 conains the statistics.\r
533\r
534 @retval EFI_SUCCESS This operation was successful.\r
535 @retval EFI_NOT_STARTED The network interface was not started.\r
536 @retval EFI_BUFFER_TOO_SMALL The pStatisticsTable is NULL or the buffer is too small.\r
537 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
538 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
539 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
540 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
541\r
542**/\r
543EFI_STATUS\r
544EFIAPI\r
545SN_Statistics (\r
546 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork,\r
547 IN BOOLEAN bReset,\r
548 IN OUT UINTN * pStatisticsSize,\r
549 OUT EFI_NETWORK_STATISTICS * pStatisticsTable\r
550 );\r
551\r
552/**\r
553 This function stops a network interface. This call is only valid\r
554 if the network interface is in the started state.\r
555\r
556 @param [in] pSimpleNetwork Protocol instance pointer\r
557\r
558 @retval EFI_SUCCESS This operation was successful.\r
559 @retval EFI_NOT_STARTED The network interface was not started.\r
560 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
561 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
562 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
563 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
564\r
565**/\r
566EFI_STATUS\r
567EFIAPI\r
568SN_Stop (\r
569 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork\r
570 );\r
571\r
572/**\r
573 This function releases the memory buffers assigned in the Initialize() call.\r
574 Pending transmits and receives are lost, and interrupts are cleared and disabled.\r
575 After this call, only Initialize() and Stop() calls may be used.\r
576\r
577 @param [in] pSimpleNetwork Protocol instance pointer\r
578\r
579 @retval EFI_SUCCESS This operation was successful.\r
580 @retval EFI_NOT_STARTED The network interface was not started.\r
581 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
582 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
583 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
584 @retval EFI_UNSUPPORTED The increased buffer size feature is not supported.\r
585\r
586**/\r
587EFI_STATUS\r
588EFIAPI\r
589SN_Shutdown (\r
590 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork\r
591 );\r
592\r
593/**\r
594 Send a packet over the network.\r
595\r
596 This function places the packet specified by Header and Buffer on\r
597 the transmit queue. This function performs a non-blocking transmit\r
598 operation. When the transmit is complete, the buffer is returned\r
599 via the GetStatus() call.\r
600\r
601 This routine calls ::Ax88772Rx to empty the network adapter of\r
602 receive packets. The routine then passes the transmit packet\r
603 to the network adapter.\r
604\r
605 @param [in] pSimpleNetwork Protocol instance pointer\r
606 @param [in] HeaderSize The size, in bytes, of the media header to be filled in by\r
607 the Transmit() function. If HeaderSize is non-zero, then\r
608 it must be equal to SimpleNetwork->Mode->MediaHeaderSize\r
609 and DestAddr and Protocol parameters must not be NULL.\r
610 @param [in] BufferSize The size, in bytes, of the entire packet (media header and\r
611 data) to be transmitted through the network interface.\r
612 @param [in] pBuffer A pointer to the packet (media header followed by data) to\r
613 to be transmitted. This parameter can not be NULL. If\r
614 HeaderSize is zero, then the media header is Buffer must\r
615 already be filled in by the caller. If HeaderSize is nonzero,\r
616 then the media header will be filled in by the Transmit()\r
617 function.\r
618 @param [in] pSrcAddr The source HW MAC address. If HeaderSize is zero, then\r
619 this parameter is ignored. If HeaderSize is nonzero and\r
620 SrcAddr is NULL, then SimpleNetwork->Mode->CurrentAddress\r
621 is used for the source HW MAC address.\r
622 @param [in] pDestAddr The destination HW MAC address. If HeaderSize is zero, then\r
623 this parameter is ignored.\r
624 @param [in] pProtocol The type of header to build. If HeaderSize is zero, then\r
625 this parameter is ignored.\r
626\r
627 @retval EFI_SUCCESS This operation was successful.\r
628 @retval EFI_NOT_STARTED The network interface was not started.\r
629 @retval EFI_NOT_READY The network interface is too busy to accept this transmit request.\r
630 @retval EFI_BUFFER_TOO_SMALL The BufferSize parameter is too small.\r
631 @retval EFI_INVALID_PARAMETER pSimpleNetwork parameter was NULL or did not point to a valid\r
632 EFI_SIMPLE_NETWORK_PROTOCOL structure.\r
633 @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.\r
634\r
635**/\r
636EFI_STATUS\r
637EFIAPI\r
638SN_Transmit (\r
639 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork,\r
640 IN UINTN HeaderSize,\r
641 IN UINTN BufferSize,\r
642 IN VOID * pBuffer,\r
643 IN EFI_MAC_ADDRESS * pSrcAddr,\r
644 IN EFI_MAC_ADDRESS * pDestAddr,\r
645 IN UINT16 * pProtocol\r
646 );\r
647\r
648//------------------------------------------------------------------------------\r
649// Support Routines\r
650//------------------------------------------------------------------------------\r
651\r
652/**\r
653 Get the MAC address\r
654\r
655 This routine calls ::Ax88772UsbCommand to request the MAC\r
656 address from the network adapter.\r
657\r
658 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
659 @param [out] pMacAddress Address of a six byte buffer to receive the MAC address.\r
660\r
661 @retval EFI_SUCCESS The MAC address is available.\r
662 @retval other The MAC address is not valid.\r
663\r
664**/\r
665EFI_STATUS\r
666Ax88772MacAddressGet (\r
667 IN NIC_DEVICE * pNicDevice,\r
668 OUT UINT8 * pMacAddress\r
669 );\r
670\r
671/**\r
672 Set the MAC address\r
673\r
674 This routine calls ::Ax88772UsbCommand to set the MAC address\r
675 in the network adapter.\r
676\r
677 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
678 @param [in] pMacAddress Address of a six byte buffer to containing the new MAC address.\r
679\r
680 @retval EFI_SUCCESS The MAC address was set.\r
681 @retval other The MAC address was not set.\r
682\r
683**/\r
684EFI_STATUS\r
685Ax88772MacAddressSet (\r
686 IN NIC_DEVICE * pNicDevice,\r
687 IN UINT8 * pMacAddress\r
688 );\r
689\r
690/**\r
691 Clear the multicast hash table\r
692\r
693 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
694\r
695**/\r
696VOID\r
697Ax88772MulticastClear (\r
698 IN NIC_DEVICE * pNicDevice\r
699 );\r
700\r
701/**\r
702 Enable a multicast address in the multicast hash table\r
703\r
704 This routine calls ::Ax88772Crc to compute the hash bit for\r
705 this MAC address.\r
706\r
707 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
708 @param [in] pMacAddress Address of a six byte buffer to containing the MAC address.\r
709\r
710**/\r
711VOID\r
712Ax88772MulticastSet (\r
713 IN NIC_DEVICE * pNicDevice,\r
714 IN UINT8 * pMacAddress\r
715 );\r
716\r
717/**\r
718 Start the link negotiation\r
719\r
720 This routine calls ::Ax88772PhyWrite to start the PHY's link\r
721 negotiation.\r
722\r
723 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
724\r
725 @retval EFI_SUCCESS The link negotiation was started.\r
726 @retval other Failed to start the link negotiation.\r
727\r
728**/\r
729EFI_STATUS\r
730Ax88772NegotiateLinkStart (\r
731 IN NIC_DEVICE * pNicDevice\r
732 );\r
733\r
734/**\r
735 Complete the negotiation of the PHY link\r
736\r
737 This routine calls ::Ax88772PhyRead to determine if the\r
738 link negotiation is complete.\r
739\r
740 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
741 @param [in, out] pPollCount Address of number of times this routine was polled\r
742 @param [out] pbComplete Address of boolean to receive complate status.\r
743 @param [out] pbLinkUp Address of boolean to receive link status, TRUE=up.\r
744 @param [out] pbHiSpeed Address of boolean to receive link speed, TRUE=100Mbps.\r
745 @param [out] pbFullDuplex Address of boolean to receive link duplex, TRUE=full.\r
746\r
747 @retval EFI_SUCCESS The MAC address is available.\r
748 @retval other The MAC address is not valid.\r
749\r
750**/\r
751EFI_STATUS\r
752Ax88772NegotiateLinkComplete (\r
753 IN NIC_DEVICE * pNicDevice,\r
754 IN OUT UINTN * pPollCount,\r
755 OUT BOOLEAN * pbComplete,\r
756 OUT BOOLEAN * pbLinkUp,\r
757 OUT BOOLEAN * pbHiSpeed,\r
758 OUT BOOLEAN * pbFullDuplex\r
759 );\r
760\r
761/**\r
762 Read a register from the PHY\r
763\r
764 This routine calls ::Ax88772UsbCommand to read a PHY register.\r
765\r
766 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
767 @param [in] RegisterAddress Number of the register to read.\r
768 @param [in, out] pPhyData Address of a buffer to receive the PHY register value\r
769\r
770 @retval EFI_SUCCESS The PHY data is available.\r
771 @retval other The PHY data is not valid.\r
772\r
773**/\r
774EFI_STATUS\r
775Ax88772PhyRead (\r
776 IN NIC_DEVICE * pNicDevice,\r
777 IN UINT8 RegisterAddress,\r
778 IN OUT UINT16 * pPhyData\r
779 );\r
780\r
781/**\r
782 Write to a PHY register\r
783\r
784 This routine calls ::Ax88772UsbCommand to write a PHY register.\r
785\r
786 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
787 @param [in] RegisterAddress Number of the register to read.\r
788 @param [in] PhyData Address of a buffer to receive the PHY register value\r
789\r
790 @retval EFI_SUCCESS The PHY data was written.\r
791 @retval other Failed to wwrite the PHY register.\r
792\r
793**/\r
794EFI_STATUS\r
795Ax88772PhyWrite (\r
796 IN NIC_DEVICE * pNicDevice,\r
797 IN UINT8 RegisterAddress,\r
798 IN UINT16 PhyData\r
799 );\r
800\r
801/**\r
802 Reset the AX88772\r
803\r
804 This routine uses ::Ax88772UsbCommand to reset the network\r
805 adapter. This routine also uses ::Ax88772PhyWrite to reset\r
806 the PHY.\r
807\r
808 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
809\r
810 @retval EFI_SUCCESS The MAC address is available.\r
811 @retval other The MAC address is not valid.\r
812\r
813**/\r
814EFI_STATUS\r
815Ax88772Reset (\r
816 IN NIC_DEVICE * pNicDevice\r
817 );\r
818\r
819VOID\r
820Ax88772ChkLink (\r
821 IN NIC_DEVICE * pNicDevice,\r
822 IN BOOLEAN bUpdateLink\r
823 );\r
824\r
825/**\r
826 Receive a frame from the network.\r
827\r
828 This routine polls the USB receive interface for a packet. If a packet\r
829 is available, this routine adds the receive packet to the list of\r
830 pending receive packets.\r
831\r
832 This routine calls ::Ax88772NegotiateLinkComplete to verify\r
833 that the link is up. This routine also calls ::SN_Reset to\r
834 reset the network adapter when necessary. Finally this\r
835 routine attempts to receive one or more packets from the\r
836 network adapter.\r
837\r
838 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
839 @param [in] bUpdateLink TRUE = Update link status\r
840\r
841**/\r
842VOID\r
843Ax88772Rx (\r
844 IN NIC_DEVICE * pNicDevice,\r
845 IN BOOLEAN bUpdateLink\r
846 );\r
847\r
848/**\r
849 Enable or disable the receiver\r
850\r
851 This routine calls ::Ax88772UsbCommand to update the\r
852 receiver state. This routine also calls ::Ax88772MacAddressSet\r
853 to establish the MAC address for the network adapter.\r
854\r
855 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
856 @param [in] RxFilter Simple network RX filter mask value\r
857\r
858 @retval EFI_SUCCESS The MAC address was set.\r
859 @retval other The MAC address was not set.\r
860\r
861**/\r
862EFI_STATUS\r
863Ax88772RxControl (\r
864 IN NIC_DEVICE * pNicDevice,\r
865 IN UINT32 RxFilter\r
866 );\r
867\r
868/**\r
869 Read an SROM location\r
870\r
871 This routine calls ::Ax88772UsbCommand to read data from the\r
872 SROM.\r
873\r
874 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
875 @param [in] Address SROM address\r
876 @param [out] pData Buffer to receive the data\r
877\r
878 @retval EFI_SUCCESS The read was successful\r
879 @retval other The read failed\r
880\r
881**/\r
882EFI_STATUS\r
883Ax88772SromRead (\r
884 IN NIC_DEVICE * pNicDevice,\r
885 IN UINT32 Address,\r
886 OUT UINT16 * pData\r
887 );\r
888\r
889/**\r
890 Send a command to the USB device.\r
891\r
892 @param [in] pNicDevice Pointer to the NIC_DEVICE structure\r
893 @param [in] pRequest Pointer to the request structure\r
894 @param [in, out] pBuffer Data buffer address\r
895\r
896 @retval EFI_SUCCESS The USB transfer was successful\r
897 @retval other The USB transfer failed\r
898\r
899**/\r
900EFI_STATUS\r
901Ax88772UsbCommand (\r
902 IN NIC_DEVICE * pNicDevice,\r
903 IN USB_DEVICE_REQUEST * pRequest,\r
904 IN OUT VOID * pBuffer\r
905 );\r
906\r
907//------------------------------------------------------------------------------\r
908// EFI Component Name Protocol Support\r
909//------------------------------------------------------------------------------\r
910\r
911extern EFI_COMPONENT_NAME_PROTOCOL gComponentName; ///< Component name protocol declaration\r
912extern EFI_COMPONENT_NAME2_PROTOCOL gComponentName2; ///< Component name 2 protocol declaration\r
913\r
914/**\r
915 Retrieves a Unicode string that is the user readable name of the driver.\r
916\r
917 This function retrieves the user readable name of a driver in the form of a\r
918 Unicode string. If the driver specified by This has a user readable name in\r
919 the language specified by Language, then a pointer to the driver name is\r
920 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified\r
921 by This does not support the language specified by Language,\r
922 then EFI_UNSUPPORTED is returned.\r
923\r
924 @param [in] pThis A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
925 EFI_COMPONENT_NAME_PROTOCOL instance.\r
926 @param [in] pLanguage A pointer to a Null-terminated ASCII string\r
927 array indicating the language. This is the\r
928 language of the driver name that the caller is\r
929 requesting, and it must match one of the\r
930 languages specified in SupportedLanguages. The\r
931 number of languages supported by a driver is up\r
932 to the driver writer. Language is specified\r
933 in RFC 3066 or ISO 639-2 language code format.\r
934 @param [out] ppDriverName A pointer to the Unicode string to return.\r
935 This Unicode string is the name of the\r
936 driver specified by This in the language\r
937 specified by Language.\r
938\r
939 @retval EFI_SUCCESS The Unicode string for the Driver specified by\r
940 This and the language specified by Language was\r
941 returned in DriverName.\r
942 @retval EFI_INVALID_PARAMETER Language is NULL.\r
943 @retval EFI_INVALID_PARAMETER DriverName is NULL.\r
944 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
945 the language specified by Language.\r
946\r
947**/\r
948EFI_STATUS\r
949EFIAPI\r
950GetDriverName (\r
951 IN EFI_COMPONENT_NAME_PROTOCOL * pThis,\r
952 IN CHAR8 * pLanguage,\r
953 OUT CHAR16 ** ppDriverName\r
954 );\r
955\r
956\r
957/**\r
958 Retrieves a Unicode string that is the user readable name of the controller\r
959 that is being managed by a driver.\r
960\r
961 This function retrieves the user readable name of the controller specified by\r
962 ControllerHandle and ChildHandle in the form of a Unicode string. If the\r
963 driver specified by This has a user readable name in the language specified by\r
964 Language, then a pointer to the controller name is returned in ControllerName,\r
965 and EFI_SUCCESS is returned. If the driver specified by This is not currently\r
966 managing the controller specified by ControllerHandle and ChildHandle,\r
967 then EFI_UNSUPPORTED is returned. If the driver specified by This does not\r
968 support the language specified by Language, then EFI_UNSUPPORTED is returned.\r
969\r
970 @param [in] pThis A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
971 EFI_COMPONENT_NAME_PROTOCOL instance.\r
972 @param [in] ControllerHandle The handle of a controller that the driver\r
973 specified by This is managing. This handle\r
974 specifies the controller whose name is to be\r
975 returned.\r
976 @param [in] ChildHandle The handle of the child controller to retrieve\r
977 the name of. This is an optional parameter that\r
978 may be NULL. It will be NULL for device\r
979 drivers. It will also be NULL for a bus drivers\r
980 that wish to retrieve the name of the bus\r
981 controller. It will not be NULL for a bus\r
982 driver that wishes to retrieve the name of a\r
983 child controller.\r
984 @param [in] pLanguage A pointer to a Null-terminated ASCII string\r
985 array indicating the language. This is the\r
986 language of the driver name that the caller is\r
987 requesting, and it must match one of the\r
988 languages specified in SupportedLanguages. The\r
989 number of languages supported by a driver is up\r
990 to the driver writer. Language is specified in\r
991 RFC 3066 or ISO 639-2 language code format.\r
992 @param [out] ppControllerName A pointer to the Unicode string to return.\r
993 This Unicode string is the name of the\r
994 controller specified by ControllerHandle and\r
995 ChildHandle in the language specified by\r
996 Language from the point of view of the driver\r
997 specified by This.\r
998\r
999 @retval EFI_SUCCESS The Unicode string for the user readable name in\r
1000 the language specified by Language for the\r
1001 driver specified by This was returned in\r
1002 DriverName.\r
1003 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.\r
1004 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid\r
1005 EFI_HANDLE.\r
1006 @retval EFI_INVALID_PARAMETER Language is NULL.\r
1007 @retval EFI_INVALID_PARAMETER ControllerName is NULL.\r
1008 @retval EFI_UNSUPPORTED The driver specified by This is not currently\r
1009 managing the controller specified by\r
1010 ControllerHandle and ChildHandle.\r
1011 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
1012 the language specified by Language.\r
1013\r
1014**/\r
1015EFI_STATUS\r
1016EFIAPI\r
1017GetControllerName (\r
1018 IN EFI_COMPONENT_NAME_PROTOCOL * pThis,\r
1019 IN EFI_HANDLE ControllerHandle,\r
1020 IN OPTIONAL EFI_HANDLE ChildHandle,\r
1021 IN CHAR8 * pLanguage,\r
1022 OUT CHAR16 ** ppControllerName\r
1023 );\r
1024 \r
1025VOID \r
1026FillPkt2Queue (\r
1027 IN EFI_SIMPLE_NETWORK_PROTOCOL * pSimpleNetwork,\r
1028 IN UINTN BufLength);\r
1029\r
1030//------------------------------------------------------------------------------\r
1031\r
1032#endif // _AX88772_H_\r