diff options
Diffstat (limited to 'include/uapi/linux/psci.h')
-rw-r--r-- | include/uapi/linux/psci.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/uapi/linux/psci.h b/include/uapi/linux/psci.h index 310d83e0a91b..3d7a0fc021a7 100644 --- a/include/uapi/linux/psci.h +++ b/include/uapi/linux/psci.h | |||
@@ -46,6 +46,11 @@ | |||
46 | #define PSCI_0_2_FN64_MIGRATE PSCI_0_2_FN64(5) | 46 | #define PSCI_0_2_FN64_MIGRATE PSCI_0_2_FN64(5) |
47 | #define PSCI_0_2_FN64_MIGRATE_INFO_UP_CPU PSCI_0_2_FN64(7) | 47 | #define PSCI_0_2_FN64_MIGRATE_INFO_UP_CPU PSCI_0_2_FN64(7) |
48 | 48 | ||
49 | #define PSCI_1_0_FN_PSCI_FEATURES PSCI_0_2_FN(10) | ||
50 | #define PSCI_1_0_FN_SYSTEM_SUSPEND PSCI_0_2_FN(14) | ||
51 | |||
52 | #define PSCI_1_0_FN64_SYSTEM_SUSPEND PSCI_0_2_FN64(14) | ||
53 | |||
49 | /* PSCI v0.2 power state encoding for CPU_SUSPEND function */ | 54 | /* PSCI v0.2 power state encoding for CPU_SUSPEND function */ |
50 | #define PSCI_0_2_POWER_STATE_ID_MASK 0xffff | 55 | #define PSCI_0_2_POWER_STATE_ID_MASK 0xffff |
51 | #define PSCI_0_2_POWER_STATE_ID_SHIFT 0 | 56 | #define PSCI_0_2_POWER_STATE_ID_SHIFT 0 |
@@ -56,6 +61,13 @@ | |||
56 | #define PSCI_0_2_POWER_STATE_AFFL_MASK \ | 61 | #define PSCI_0_2_POWER_STATE_AFFL_MASK \ |
57 | (0x3 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | 62 | (0x3 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) |
58 | 63 | ||
64 | /* PSCI extended power state encoding for CPU_SUSPEND function */ | ||
65 | #define PSCI_1_0_EXT_POWER_STATE_ID_MASK 0xfffffff | ||
66 | #define PSCI_1_0_EXT_POWER_STATE_ID_SHIFT 0 | ||
67 | #define PSCI_1_0_EXT_POWER_STATE_TYPE_SHIFT 30 | ||
68 | #define PSCI_1_0_EXT_POWER_STATE_TYPE_MASK \ | ||
69 | (0x1 << PSCI_1_0_EXT_POWER_STATE_TYPE_SHIFT) | ||
70 | |||
59 | /* PSCI v0.2 affinity level state returned by AFFINITY_INFO */ | 71 | /* PSCI v0.2 affinity level state returned by AFFINITY_INFO */ |
60 | #define PSCI_0_2_AFFINITY_LEVEL_ON 0 | 72 | #define PSCI_0_2_AFFINITY_LEVEL_ON 0 |
61 | #define PSCI_0_2_AFFINITY_LEVEL_OFF 1 | 73 | #define PSCI_0_2_AFFINITY_LEVEL_OFF 1 |
@@ -76,6 +88,11 @@ | |||
76 | #define PSCI_VERSION_MINOR(ver) \ | 88 | #define PSCI_VERSION_MINOR(ver) \ |
77 | ((ver) & PSCI_VERSION_MINOR_MASK) | 89 | ((ver) & PSCI_VERSION_MINOR_MASK) |
78 | 90 | ||
91 | /* PSCI features decoding (>=1.0) */ | ||
92 | #define PSCI_1_0_FEATURES_CPU_SUSPEND_PF_SHIFT 1 | ||
93 | #define PSCI_1_0_FEATURES_CPU_SUSPEND_PF_MASK \ | ||
94 | (0x1 << PSCI_1_0_FEATURES_CPU_SUSPEND_PF_SHIFT) | ||
95 | |||
79 | /* PSCI return values (inclusive of all PSCI versions) */ | 96 | /* PSCI return values (inclusive of all PSCI versions) */ |
80 | #define PSCI_RET_SUCCESS 0 | 97 | #define PSCI_RET_SUCCESS 0 |
81 | #define PSCI_RET_NOT_SUPPORTED -1 | 98 | #define PSCI_RET_NOT_SUPPORTED -1 |
@@ -86,5 +103,6 @@ | |||
86 | #define PSCI_RET_INTERNAL_FAILURE -6 | 103 | #define PSCI_RET_INTERNAL_FAILURE -6 |
87 | #define PSCI_RET_NOT_PRESENT -7 | 104 | #define PSCI_RET_NOT_PRESENT -7 |
88 | #define PSCI_RET_DISABLED -8 | 105 | #define PSCI_RET_DISABLED -8 |
106 | #define PSCI_RET_INVALID_ADDRESS -9 | ||
89 | 107 | ||
90 | #endif /* _UAPI_LINUX_PSCI_H */ | 108 | #endif /* _UAPI_LINUX_PSCI_H */ |