0
0
mirror of https://github.com/edk2-porting/edk2-msm synced 2025-05-12 19:13:32 +00:00
Files
2023-08-20 14:51:21 +08:00

15 lines
321 B
C

#ifndef _PLATFORM_UTILS_H_
#define _PLATFORM_UTILS_H_
#include <Library/PcdLib.h>
#define GICR_WAKER 0x0014
#define GICR_SIZE 0x20000
#define GICR_WAKER_CURRENT_CPU FixedPcdGet64(PcdGicRedistributorsBase) + GICR_WAKER
#define GIC_WAKER_PROCESSORSLEEP 2
VOID PlatformInitialize(VOID);
#endif /* _PLATFORM_UTILS_H_ */