Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | /* |
Rajan Vaja | 8368761 | 2018-01-17 02:39:20 -0800 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* ZynqMP power management enums and defines */ |
| 8 | |
| 9 | #ifndef _PM_DEFS_H_ |
| 10 | #define _PM_DEFS_H_ |
| 11 | |
| 12 | /********************************************************************* |
| 13 | * Macro definitions |
| 14 | ********************************************************************/ |
| 15 | |
| 16 | /* |
| 17 | * Version number is a 32bit value, like: |
| 18 | * (PM_VERSION_MAJOR << 16) | PM_VERSION_MINOR |
| 19 | */ |
Jolly Shah | abee2a4 | 2018-02-07 15:37:01 -0800 | [diff] [blame] | 20 | #define PM_VERSION_MAJOR 1 |
| 21 | #define PM_VERSION_MINOR 0 |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 22 | |
| 23 | #define PM_VERSION ((PM_VERSION_MAJOR << 16) | PM_VERSION_MINOR) |
| 24 | |
| 25 | /* Capabilities for RAM */ |
| 26 | #define PM_CAP_ACCESS 0x1U |
| 27 | #define PM_CAP_CONTEXT 0x2U |
| 28 | |
| 29 | #define MAX_LATENCY (~0U) |
| 30 | #define MAX_QOS 100U |
| 31 | |
Filip Drazic | 0bd9d0c | 2016-07-20 17:17:39 +0200 | [diff] [blame] | 32 | /* State arguments of the self suspend */ |
| 33 | #define PM_STATE_CPU_IDLE 0x0U |
| 34 | #define PM_STATE_SUSPEND_TO_RAM 0xFU |
| 35 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 36 | /********************************************************************* |
| 37 | * Enum definitions |
| 38 | ********************************************************************/ |
| 39 | |
| 40 | enum pm_api_id { |
| 41 | /* Miscellaneous API functions: */ |
| 42 | PM_GET_API_VERSION = 1, /* Do not change or move */ |
| 43 | PM_SET_CONFIGURATION, |
| 44 | PM_GET_NODE_STATUS, |
| 45 | PM_GET_OP_CHARACTERISTIC, |
| 46 | PM_REGISTER_NOTIFIER, |
| 47 | /* API for suspending of PUs: */ |
| 48 | PM_REQ_SUSPEND, |
| 49 | PM_SELF_SUSPEND, |
| 50 | PM_FORCE_POWERDOWN, |
| 51 | PM_ABORT_SUSPEND, |
| 52 | PM_REQ_WAKEUP, |
| 53 | PM_SET_WAKEUP_SOURCE, |
| 54 | PM_SYSTEM_SHUTDOWN, |
| 55 | /* API for managing PM slaves: */ |
| 56 | PM_REQ_NODE, |
| 57 | PM_RELEASE_NODE, |
| 58 | PM_SET_REQUIREMENT, |
| 59 | PM_SET_MAX_LATENCY, |
| 60 | /* Direct control API functions: */ |
| 61 | PM_RESET_ASSERT, |
| 62 | PM_RESET_GET_STATUS, |
| 63 | PM_MMIO_WRITE, |
| 64 | PM_MMIO_READ, |
Nava kishore Manne | 33d3927 | 2016-08-20 23:11:11 +0530 | [diff] [blame] | 65 | PM_INIT, |
Nava kishore Manne | 68d460c | 2016-08-20 23:18:09 +0530 | [diff] [blame] | 66 | PM_FPGA_LOAD, |
| 67 | PM_FPGA_GET_STATUS, |
Siva Durga Prasad Paladugu | 16427d1 | 2016-08-24 11:45:47 +0530 | [diff] [blame] | 68 | PM_GET_CHIPID, |
Rajan Vaja | 670bec0 | 2018-01-18 22:54:07 -0800 | [diff] [blame] | 69 | PM_SECURE_RSA_AES, |
| 70 | PM_SECURE_SHA, |
| 71 | PM_SECURE_RSA, |
Rajan Vaja | 8368761 | 2018-01-17 02:39:20 -0800 | [diff] [blame] | 72 | PM_PINCTRL_REQUEST, |
| 73 | PM_PINCTRL_RELEASE, |
| 74 | PM_PINCTRL_GET_FUNCTION, |
| 75 | PM_PINCTRL_SET_FUNCTION, |
| 76 | PM_PINCTRL_CONFIG_PARAM_GET, |
| 77 | PM_PINCTRL_CONFIG_PARAM_SET, |
Rajan Vaja | 5529a01 | 2018-01-17 02:39:23 -0800 | [diff] [blame] | 78 | PM_IOCTL, |
Rajan Vaja | 3511613 | 2018-01-17 02:39:25 -0800 | [diff] [blame] | 79 | /* API to query information from firmware */ |
| 80 | PM_QUERY_DATA, |
| 81 | /* Clock control API functions */ |
| 82 | PM_CLOCK_ENABLE, |
| 83 | PM_CLOCK_DISABLE, |
| 84 | PM_CLOCK_GETSTATE, |
| 85 | PM_CLOCK_SETDIVIDER, |
| 86 | PM_CLOCK_GETDIVIDER, |
| 87 | PM_CLOCK_SETRATE, |
| 88 | PM_CLOCK_GETRATE, |
| 89 | PM_CLOCK_SETPARENT, |
| 90 | PM_CLOCK_GETPARENT, |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 91 | PM_API_MAX |
| 92 | }; |
| 93 | |
| 94 | enum pm_node_id { |
| 95 | NODE_UNKNOWN = 0, |
| 96 | NODE_APU, |
| 97 | NODE_APU_0, |
| 98 | NODE_APU_1, |
| 99 | NODE_APU_2, |
| 100 | NODE_APU_3, |
| 101 | NODE_RPU, |
| 102 | NODE_RPU_0, |
| 103 | NODE_RPU_1, |
Rajan Vaja | 670bec0 | 2018-01-18 22:54:07 -0800 | [diff] [blame] | 104 | NODE_PLD, |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 105 | NODE_FPD, |
| 106 | NODE_OCM_BANK_0, |
| 107 | NODE_OCM_BANK_1, |
| 108 | NODE_OCM_BANK_2, |
| 109 | NODE_OCM_BANK_3, |
| 110 | NODE_TCM_0_A, |
| 111 | NODE_TCM_0_B, |
| 112 | NODE_TCM_1_A, |
| 113 | NODE_TCM_1_B, |
| 114 | NODE_L2, |
| 115 | NODE_GPU_PP_0, |
| 116 | NODE_GPU_PP_1, |
| 117 | NODE_USB_0, |
| 118 | NODE_USB_1, |
| 119 | NODE_TTC_0, |
| 120 | NODE_TTC_1, |
| 121 | NODE_TTC_2, |
| 122 | NODE_TTC_3, |
| 123 | NODE_SATA, |
| 124 | NODE_ETH_0, |
| 125 | NODE_ETH_1, |
| 126 | NODE_ETH_2, |
| 127 | NODE_ETH_3, |
| 128 | NODE_UART_0, |
| 129 | NODE_UART_1, |
| 130 | NODE_SPI_0, |
| 131 | NODE_SPI_1, |
| 132 | NODE_I2C_0, |
| 133 | NODE_I2C_1, |
| 134 | NODE_SD_0, |
| 135 | NODE_SD_1, |
| 136 | NODE_DP, |
| 137 | NODE_GDMA, |
| 138 | NODE_ADMA, |
| 139 | NODE_NAND, |
| 140 | NODE_QSPI, |
| 141 | NODE_GPIO, |
| 142 | NODE_CAN_0, |
| 143 | NODE_CAN_1, |
| 144 | NODE_AFI, |
| 145 | NODE_APLL, |
| 146 | NODE_VPLL, |
| 147 | NODE_DPLL, |
| 148 | NODE_RPLL, |
| 149 | NODE_IOPLL, |
| 150 | NODE_DDR, |
Mirela Simonovic | 0ff06ce | 2016-06-07 18:15:40 +0200 | [diff] [blame] | 151 | NODE_IPI_APU, |
Mirela Simonovic | 9b984be | 2016-06-17 16:17:23 +0200 | [diff] [blame] | 152 | NODE_IPI_RPU_0, |
Filip Drazic | 35e99e2 | 2016-07-26 12:07:05 +0200 | [diff] [blame] | 153 | NODE_GPU, |
| 154 | NODE_PCIE, |
| 155 | NODE_PCAP, |
| 156 | NODE_RTC, |
Rajan Vaja | 670bec0 | 2018-01-18 22:54:07 -0800 | [diff] [blame] | 157 | NODE_LPD, |
| 158 | NODE_VCU, |
| 159 | NODE_IPI_RPU_1, |
| 160 | NODE_IPI_PL_0, |
| 161 | NODE_IPI_PL_1, |
| 162 | NODE_IPI_PL_2, |
| 163 | NODE_IPI_PL_3, |
| 164 | NODE_PL, |
Rajan Vaja | 0ac2be1 | 2018-01-17 02:39:21 -0800 | [diff] [blame] | 165 | NODE_GEM_TSU, |
| 166 | NODE_SWDT_0, |
| 167 | NODE_SWDT_1, |
| 168 | NODE_CSU, |
| 169 | NODE_PJTAG, |
| 170 | NODE_TRACE, |
| 171 | NODE_TESTSCAN, |
| 172 | NODE_PMU, |
| 173 | NODE_MAX, |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 174 | }; |
| 175 | |
| 176 | enum pm_request_ack { |
| 177 | REQ_ACK_NO = 1, |
| 178 | REQ_ACK_BLOCKING, |
| 179 | REQ_ACK_NON_BLOCKING, |
| 180 | }; |
| 181 | |
| 182 | enum pm_abort_reason { |
| 183 | ABORT_REASON_WKUP_EVENT = 100, |
| 184 | ABORT_REASON_PU_BUSY, |
| 185 | ABORT_REASON_NO_PWRDN, |
| 186 | ABORT_REASON_UNKNOWN, |
| 187 | }; |
| 188 | |
| 189 | enum pm_suspend_reason { |
| 190 | SUSPEND_REASON_PU_REQ = 201, |
| 191 | SUSPEND_REASON_ALERT, |
| 192 | SUSPEND_REASON_SYS_SHUTDOWN, |
| 193 | }; |
| 194 | |
| 195 | enum pm_ram_state { |
| 196 | PM_RAM_STATE_OFF = 1, |
| 197 | PM_RAM_STATE_RETENTION, |
| 198 | PM_RAM_STATE_ON, |
| 199 | }; |
| 200 | |
| 201 | enum pm_opchar_type { |
| 202 | PM_OPCHAR_TYPE_POWER = 1, |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 203 | PM_OPCHAR_TYPE_TEMP, |
Anes Hadziahmetagic | 92aee01 | 2016-05-12 16:17:30 +0200 | [diff] [blame] | 204 | PM_OPCHAR_TYPE_LATENCY, |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | /** |
| 208 | * @PM_RET_SUCCESS: success |
| 209 | * @PM_RET_ERROR_ARGS: illegal arguments provided |
| 210 | * @PM_RET_ERROR_ACCESS: access rights violation |
| 211 | * @PM_RET_ERROR_TIMEOUT: timeout in communication with PMU |
| 212 | * @PM_RET_ERROR_NOTSUPPORTED: feature not supported |
| 213 | * @PM_RET_ERROR_PROC: node is not a processor node |
| 214 | * @PM_RET_ERROR_API_ID: illegal API ID |
| 215 | * @PM_RET_ERROR_OTHER: other error |
| 216 | */ |
| 217 | enum pm_ret_status { |
| 218 | PM_RET_SUCCESS, |
| 219 | PM_RET_ERROR_ARGS, |
| 220 | PM_RET_ERROR_ACCESS, |
| 221 | PM_RET_ERROR_TIMEOUT, |
| 222 | PM_RET_ERROR_NOTSUPPORTED, |
| 223 | PM_RET_ERROR_PROC, |
| 224 | PM_RET_ERROR_API_ID, |
| 225 | PM_RET_ERROR_FAILURE, |
| 226 | PM_RET_ERROR_COMMUNIC, |
| 227 | PM_RET_ERROR_DOUBLEREQ, |
| 228 | PM_RET_ERROR_OTHER, |
| 229 | }; |
| 230 | |
| 231 | /** |
| 232 | * @PM_INITIAL_BOOT: boot is a fresh system startup |
| 233 | * @PM_RESUME: boot is a resume |
| 234 | * @PM_BOOT_ERROR: error, boot cause cannot be identified |
| 235 | */ |
| 236 | enum pm_boot_status { |
| 237 | PM_INITIAL_BOOT, |
| 238 | PM_RESUME, |
| 239 | PM_BOOT_ERROR, |
| 240 | }; |
| 241 | |
Soren Brinkmann | 58fbb9b | 2016-09-02 09:50:54 -0700 | [diff] [blame] | 242 | enum pm_shutdown_type { |
| 243 | PMF_SHUTDOWN_TYPE_SHUTDOWN, |
| 244 | PMF_SHUTDOWN_TYPE_RESET, |
| 245 | }; |
| 246 | |
| 247 | enum pm_shutdown_subtype { |
| 248 | PMF_SHUTDOWN_SUBTYPE_SUBSYSTEM, |
| 249 | PMF_SHUTDOWN_SUBTYPE_PS_ONLY, |
| 250 | PMF_SHUTDOWN_SUBTYPE_SYSTEM, |
| 251 | }; |
| 252 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 253 | #endif /* _PM_DEFS_H_ */ |