0
0
mirror of https://github.com/edk2-porting/edk2-msm synced 2025-05-13 18:32:55 +00:00
Files
Xilin Wu 1cc6cfc41a Project refactor
🤯
2022-10-25 20:54:23 +08:00

14 lines
320 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_ */