diff options
author | Marek Vasut <marex@denx.de> | 2022-12-22 01:46:34 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2023-01-31 15:46:39 +0100 |
commit | 46dcb31065f873241c3b6076c1b500f8f90b4901 (patch) | |
tree | 5efc226cf37e8b1ee26eac6a1294da0f19e4a78b /arch | |
parent | 0b32bc4831694c0b750811589543f540a2385b40 (diff) | |
download | u-boot-46dcb31065f873241c3b6076c1b500f8f90b4901.tar.gz |
arm: psci: Add PSCI v1.1 macro
Add macro representing the PSCI v1.1 .
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/psci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h index 67e9234066..8b3fb87225 100644 --- a/arch/arm/include/asm/psci.h +++ b/arch/arm/include/asm/psci.h @@ -22,6 +22,7 @@ #include <linux/bitops.h> #endif +#define ARM_PSCI_VER_1_1 (0x00010001) #define ARM_PSCI_VER_1_0 (0x00010000) #define ARM_PSCI_VER_0_2 (0x00000002) |