1 | /** @file
|
---|
2 | Implementation of resetting a network adapter.
|
---|
3 |
|
---|
4 | Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #include "Snp.h"
|
---|
11 |
|
---|
12 | /**
|
---|
13 | Call UNDI to reset the NIC.
|
---|
14 |
|
---|
15 | @param Snp Pointer to the snp driver structure.
|
---|
16 |
|
---|
17 | @return EFI_SUCCESSFUL The NIC was reset.
|
---|
18 | @retval EFI_DEVICE_ERROR The NIC cannot be reset.
|
---|
19 |
|
---|
20 | **/
|
---|
21 | EFI_STATUS
|
---|
22 | PxeReset (
|
---|
23 | SNP_DRIVER *Snp
|
---|
24 | )
|
---|
25 | {
|
---|
26 | Snp->Cdb.OpCode = PXE_OPCODE_RESET;
|
---|
27 | Snp->Cdb.OpFlags = PXE_OPFLAGS_NOT_USED;
|
---|
28 | Snp->Cdb.CPBsize = PXE_CPBSIZE_NOT_USED;
|
---|
29 | Snp->Cdb.DBsize = PXE_DBSIZE_NOT_USED;
|
---|
30 | Snp->Cdb.CPBaddr = PXE_CPBADDR_NOT_USED;
|
---|
31 | Snp->Cdb.DBaddr = PXE_DBADDR_NOT_USED;
|
---|
32 | Snp->Cdb.StatCode = PXE_STATCODE_INITIALIZE;
|
---|
33 | Snp->Cdb.StatFlags = PXE_STATFLAGS_INITIALIZE;
|
---|
34 | Snp->Cdb.IFnum = Snp->IfNum;
|
---|
35 | Snp->Cdb.Control = PXE_CONTROL_LAST_CDB_IN_LIST;
|
---|
36 |
|
---|
37 | //
|
---|
38 | // Issue UNDI command and check result.
|
---|
39 | //
|
---|
40 | DEBUG ((DEBUG_NET, "\nsnp->undi.reset() "));
|
---|
41 |
|
---|
42 | (*Snp->IssueUndi32Command)((UINT64)(UINTN)&Snp->Cdb);
|
---|
43 |
|
---|
44 | if (Snp->Cdb.StatCode != PXE_STATCODE_SUCCESS) {
|
---|
45 | DEBUG (
|
---|
46 | (DEBUG_WARN,
|
---|
47 | "\nsnp->undi32.reset() %xh:%xh\n",
|
---|
48 | Snp->Cdb.StatFlags,
|
---|
49 | Snp->Cdb.StatCode)
|
---|
50 | );
|
---|
51 |
|
---|
52 | //
|
---|
53 | // UNDI could not be reset. Return UNDI error.
|
---|
54 | //
|
---|
55 | return EFI_DEVICE_ERROR;
|
---|
56 | }
|
---|
57 |
|
---|
58 | return EFI_SUCCESS;
|
---|
59 | }
|
---|
60 |
|
---|
61 | /**
|
---|
62 | Resets a network adapter and reinitializes it with the parameters that were
|
---|
63 | provided in the previous call to Initialize().
|
---|
64 |
|
---|
65 | This function resets a network adapter and reinitializes it with the parameters
|
---|
66 | that were provided in the previous call to Initialize(). The transmit and
|
---|
67 | receive queues are emptied and all pending interrupts are cleared.
|
---|
68 | Receive filters, the station address, the statistics, and the multicast-IP-to-HW
|
---|
69 | MAC addresses are not reset by this call. If the network interface was
|
---|
70 | successfully reset, then EFI_SUCCESS will be returned. If the driver has not
|
---|
71 | been initialized, EFI_DEVICE_ERROR will be returned.
|
---|
72 |
|
---|
73 | @param This A pointer to the EFI_SIMPLE_NETWORK_PROTOCOL instance.
|
---|
74 | @param ExtendedVerification Indicates that the driver may perform a more
|
---|
75 | exhaustive verification operation of the device
|
---|
76 | during reset.
|
---|
77 |
|
---|
78 | @retval EFI_SUCCESS The network interface was reset.
|
---|
79 | @retval EFI_NOT_STARTED The network interface has not been started.
|
---|
80 | @retval EFI_INVALID_PARAMETER One or more of the parameters has an unsupported value.
|
---|
81 | @retval EFI_DEVICE_ERROR The command could not be sent to the network interface.
|
---|
82 | @retval EFI_UNSUPPORTED This function is not supported by the network interface.
|
---|
83 |
|
---|
84 | **/
|
---|
85 | EFI_STATUS
|
---|
86 | EFIAPI
|
---|
87 | SnpUndi32Reset (
|
---|
88 | IN EFI_SIMPLE_NETWORK_PROTOCOL *This,
|
---|
89 | IN BOOLEAN ExtendedVerification
|
---|
90 | )
|
---|
91 | {
|
---|
92 | SNP_DRIVER *Snp;
|
---|
93 | EFI_TPL OldTpl;
|
---|
94 | EFI_STATUS Status;
|
---|
95 |
|
---|
96 | //
|
---|
97 | // There is no support when ExtendedVerification is set to FALSE.
|
---|
98 | //
|
---|
99 | if (!ExtendedVerification) {
|
---|
100 | DEBUG ((DEBUG_WARN, "ExtendedVerification = %d is not implemented!\n", ExtendedVerification));
|
---|
101 | return EFI_INVALID_PARAMETER;
|
---|
102 | }
|
---|
103 |
|
---|
104 | if (This == NULL) {
|
---|
105 | return EFI_INVALID_PARAMETER;
|
---|
106 | }
|
---|
107 |
|
---|
108 | Snp = EFI_SIMPLE_NETWORK_DEV_FROM_THIS (This);
|
---|
109 |
|
---|
110 | OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
---|
111 |
|
---|
112 | switch (Snp->Mode.State) {
|
---|
113 | case EfiSimpleNetworkInitialized:
|
---|
114 | break;
|
---|
115 |
|
---|
116 | case EfiSimpleNetworkStopped:
|
---|
117 | Status = EFI_NOT_STARTED;
|
---|
118 | goto ON_EXIT;
|
---|
119 |
|
---|
120 | default:
|
---|
121 | Status = EFI_DEVICE_ERROR;
|
---|
122 | goto ON_EXIT;
|
---|
123 | }
|
---|
124 |
|
---|
125 | Status = PxeReset (Snp);
|
---|
126 |
|
---|
127 | ON_EXIT:
|
---|
128 | gBS->RestoreTPL (OldTpl);
|
---|
129 |
|
---|
130 | return Status;
|
---|
131 | }
|
---|