dashboard
repositories
activity
search
login
luoshi
/
RK3588_XEN
forked from
~ljy/RK3588_XEN
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
ubuntu20.04 init
hc
2024-03-25
edb30157bad0c0001c32b854271ace01d3b9a16a
[~luoshi/RK3588_XEN.git]
/
uefi
/
edk2-platforms
/
Silicon
/
Broadcom
/
Drivers
/
Net
/
Include
/
Protocol
/
BcmGenetPlatformDevice.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @file
Copyright (c) 2020, ARM Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef BCM_GENET_PLATFORM_DEVICE_H
#define BCM_GENET_PLATFORM_DEVICE_H
#include <Uefi/UefiBaseType.h>
#define BCM_GENET_PLATFORM_DEVICE_PROTOCOL_GUID \
{0x5e485a22, 0x1bb0, 0x4e22, {0x85, 0x49, 0x41, 0xfc, 0xec, 0x85, 0xdf, 0xd3}}
typedef struct {
EFI_PHYSICAL_ADDRESS BaseAddress;
EFI_MAC_ADDRESS MacAddress;
} BCM_GENET_PLATFORM_DEVICE_PROTOCOL;
extern EFI_GUID gBcmGenetPlatformDeviceProtocolGuid;
#endif