diff options
| author | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | 2015-05-26 12:10:32 -0400 |
|---|---|---|
| committer | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | 2015-10-02 09:35:17 -0400 |
| commit | a5c00bb28da0bb34f901d090839fc448246aa996 (patch) | |
| tree | 2588a66ac9d6d872e3e3dabd2c0ecc629a537dea /include/uapi | |
| parent | 5f004e0c9fb152a080b47d06dc48bdd29765a734 (diff) | |
drivers: firmware: psci: add extended stateid power_state support
PSCI v1.0 augmented the power_state parameter format specification
(extended stateid) and introduced a way to probe it through the
PSCI_FEATURES interface.
This patch implements code that detects the power_state format at
run-time through the PSCI_FEATURES interface, so that the power_state
argument can be properly detected and validated in the kernel according
to the information provided through firmware.
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Tested-by: Jisheng Zhang <jszhang@marvell.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/psci.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/uapi/linux/psci.h b/include/uapi/linux/psci.h index 187b828d77b3..0a9485f3c6c3 100644 --- a/include/uapi/linux/psci.h +++ b/include/uapi/linux/psci.h | |||
| @@ -58,6 +58,13 @@ | |||
| 58 | #define PSCI_0_2_POWER_STATE_AFFL_MASK \ | 58 | #define PSCI_0_2_POWER_STATE_AFFL_MASK \ |
| 59 | (0x3 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | 59 | (0x3 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) |
| 60 | 60 | ||
| 61 | /* PSCI extended power state encoding for CPU_SUSPEND function */ | ||
| 62 | #define PSCI_1_0_EXT_POWER_STATE_ID_MASK 0xfffffff | ||
| 63 | #define PSCI_1_0_EXT_POWER_STATE_ID_SHIFT 0 | ||
| 64 | #define PSCI_1_0_EXT_POWER_STATE_TYPE_SHIFT 30 | ||
| 65 | #define PSCI_1_0_EXT_POWER_STATE_TYPE_MASK \ | ||
| 66 | (0x1 << PSCI_1_0_EXT_POWER_STATE_TYPE_SHIFT) | ||
| 67 | |||
| 61 | /* PSCI v0.2 affinity level state returned by AFFINITY_INFO */ | 68 | /* PSCI v0.2 affinity level state returned by AFFINITY_INFO */ |
| 62 | #define PSCI_0_2_AFFINITY_LEVEL_ON 0 | 69 | #define PSCI_0_2_AFFINITY_LEVEL_ON 0 |
| 63 | #define PSCI_0_2_AFFINITY_LEVEL_OFF 1 | 70 | #define PSCI_0_2_AFFINITY_LEVEL_OFF 1 |
| @@ -78,6 +85,11 @@ | |||
| 78 | #define PSCI_VERSION_MINOR(ver) \ | 85 | #define PSCI_VERSION_MINOR(ver) \ |
| 79 | ((ver) & PSCI_VERSION_MINOR_MASK) | 86 | ((ver) & PSCI_VERSION_MINOR_MASK) |
| 80 | 87 | ||
| 88 | /* PSCI features decoding (>=1.0) */ | ||
| 89 | #define PSCI_1_0_FEATURES_CPU_SUSPEND_PF_SHIFT 1 | ||
| 90 | #define PSCI_1_0_FEATURES_CPU_SUSPEND_PF_MASK \ | ||
| 91 | (0x1 << PSCI_1_0_FEATURES_CPU_SUSPEND_PF_SHIFT) | ||
| 92 | |||
| 81 | /* PSCI return values (inclusive of all PSCI versions) */ | 93 | /* PSCI return values (inclusive of all PSCI versions) */ |
| 82 | #define PSCI_RET_SUCCESS 0 | 94 | #define PSCI_RET_SUCCESS 0 |
| 83 | #define PSCI_RET_NOT_SUPPORTED -1 | 95 | #define PSCI_RET_NOT_SUPPORTED -1 |
