dashboard
repositories
activity
search
login
ljy
/
RK3588_XEN
forked from
~ljy/RK3588_XEN
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
set hp_det gpio
hc
2024-08-12
233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
[~ljy/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