1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| /** @file
| *
| * Copyright (c) 2016-2018, Hisilicon Limited. All rights reserved.
| * Copyright (c) 2016-2018, Linaro Limited. All rights reserved.
| *
| * SPDX-License-Identifier: BSD-2-Clause-Patent
| *
| **/
|
| #include <OemNicConfig.h>
|
|
| EFI_STATUS
| EFIAPI OemGetMac2P (
| IN OUT EFI_MAC_ADDRESS *Mac,
| IN UINTN Port
| )
| {
| OemGetMac (Mac, Port);
|
| return EFI_SUCCESS;
| }
|
| EFI_STATUS
| EFIAPI OemSetMac2P (
| IN EFI_MAC_ADDRESS *Mac,
| IN UINTN Port
| )
| {
| OemSetMac (Mac, Port);
|
| return EFI_SUCCESS;
| }
|
| HISI_BOARD_NIC_PROTOCOL mHisiBoardNicProtocol2P = {
| .GetMac = OemGetMac2P,
| .SetMac = OemSetMac2P,
| };
|
|
| EFI_STATUS
| EFIAPI
| OemNicConfigEntry (
| IN EFI_HANDLE ImageHandle,
| IN EFI_SYSTEM_TABLE *SystemTable
| )
| {
| EFI_STATUS Status;
|
| Status = gBS->InstallProtocolInterface (
| &ImageHandle,
| &gHisiBoardNicProtocolGuid,
| EFI_NATIVE_INTERFACE,
| &mHisiBoardNicProtocol2P
| );
|
| if (EFI_ERROR (Status)) {
| DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Install Protocol failed %r\n",
| __FUNCTION__, __LINE__, Status));
| return Status;
| }
|
| return EFI_SUCCESS;
| }
|
|
|