Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | /* |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, 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 | |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 7 | |
Isla Mitchell | e363146 | 2017-07-14 10:46:32 +0100 | [diff] [blame] | 8 | #include <arch_helpers.h> |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <lib/bakery_lock.h> |
| 11 | #include <lib/mmio.h> |
Jolly Shah | c2583ab | 2019-01-08 11:31:49 -0800 | [diff] [blame] | 12 | |
| 13 | #include <ipi.h> |
Jolly Shah | 4c17237 | 2019-01-08 11:21:29 -0800 | [diff] [blame] | 14 | #include <plat_ipi.h> |
Jolly Shah | 0bfd700 | 2019-01-08 11:10:47 -0800 | [diff] [blame] | 15 | #include <plat_private.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 16 | #include <plat/common/platform.h> |
| 17 | |
Isla Mitchell | e363146 | 2017-07-14 10:46:32 +0100 | [diff] [blame] | 18 | #include "pm_ipi.h" |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 19 | |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 20 | |
Ravi Patel | 6512371 | 2020-11-23 04:19:08 -0800 | [diff] [blame] | 21 | #define ERROR_CODE_MASK 0xFFFFU |
| 22 | |
Stefan Krsmanovic | c5e9f66 | 2016-05-20 15:51:08 +0200 | [diff] [blame] | 23 | DEFINE_BAKERY_LOCK(pm_secure_lock); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 24 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 25 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 26 | * pm_ipi_init() - Initialize IPI peripheral for communication with |
| 27 | * remote processor |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 28 | * |
Wendy Liang | 328105c | 2017-10-03 23:21:11 -0700 | [diff] [blame] | 29 | * @proc Pointer to the processor who is initiating request |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 30 | * @return On success, the initialization function must return 0. |
| 31 | * Any other return value will cause the framework to ignore |
| 32 | * the service |
| 33 | * |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 34 | * Called from pm_setup initialization function |
| 35 | */ |
Wendy Liang | 328105c | 2017-10-03 23:21:11 -0700 | [diff] [blame] | 36 | int pm_ipi_init(const struct pm_proc *proc) |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 37 | { |
| 38 | bakery_lock_init(&pm_secure_lock); |
Jolly Shah | 36c930b | 2019-01-07 12:51:40 -0800 | [diff] [blame] | 39 | ipi_mb_open(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 45 | * pm_ipi_send_common() - Sends IPI request to the remote processor |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 46 | * @proc Pointer to the processor who is initiating request |
| 47 | * @payload API id and call arguments to be written in IPI buffer |
| 48 | * |
| 49 | * Send an IPI request to the power controller. Caller needs to hold |
| 50 | * the 'pm_secure_lock' lock. |
| 51 | * |
| 52 | * @return Returns status, either success or error+reason |
| 53 | */ |
| 54 | static enum pm_ret_status pm_ipi_send_common(const struct pm_proc *proc, |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 55 | uint32_t payload[PAYLOAD_ARG_CNT], |
| 56 | uint32_t is_blocking) |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 57 | { |
| 58 | unsigned int offset = 0; |
| 59 | uintptr_t buffer_base = proc->ipi->buffer_base + |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 60 | IPI_BUFFER_TARGET_REMOTE_OFFSET + |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 61 | IPI_BUFFER_REQ_OFFSET; |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 62 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 63 | payload[PAYLOAD_CRC_POS] = calculate_crc(payload, IPI_W0_TO_W6_SIZE); |
| 64 | #endif |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 65 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 66 | /* Write payload into IPI buffer */ |
| 67 | for (size_t i = 0; i < PAYLOAD_ARG_CNT; i++) { |
| 68 | mmio_write_32(buffer_base + offset, payload[i]); |
| 69 | offset += PAYLOAD_ARG_SIZE; |
| 70 | } |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 71 | |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 72 | /* Generate IPI to remote processor */ |
Venkatesh Yadav Abbarapu | efa1d32 | 2021-08-04 21:33:15 -0600 | [diff] [blame] | 73 | ipi_mb_notify(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id, |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 74 | is_blocking); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 75 | |
Venkatesh Yadav Abbarapu | efa1d32 | 2021-08-04 21:33:15 -0600 | [diff] [blame] | 76 | return PM_RET_SUCCESS; |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 80 | * pm_ipi_send_non_blocking() - Sends IPI request to the remote processor |
| 81 | * without blocking notification |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 82 | * @proc Pointer to the processor who is initiating request |
| 83 | * @payload API id and call arguments to be written in IPI buffer |
| 84 | * |
| 85 | * Send an IPI request to the power controller. |
| 86 | * |
| 87 | * @return Returns status, either success or error+reason |
| 88 | */ |
| 89 | enum pm_ret_status pm_ipi_send_non_blocking(const struct pm_proc *proc, |
| 90 | uint32_t payload[PAYLOAD_ARG_CNT]) |
| 91 | { |
| 92 | enum pm_ret_status ret; |
| 93 | |
| 94 | bakery_lock_get(&pm_secure_lock); |
| 95 | |
| 96 | ret = pm_ipi_send_common(proc, payload, IPI_NON_BLOCKING); |
| 97 | |
| 98 | bakery_lock_release(&pm_secure_lock); |
| 99 | |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 104 | * pm_ipi_send() - Sends IPI request to the remote processor |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 105 | * @proc Pointer to the processor who is initiating request |
| 106 | * @payload API id and call arguments to be written in IPI buffer |
| 107 | * |
| 108 | * Send an IPI request to the power controller. |
| 109 | * |
| 110 | * @return Returns status, either success or error+reason |
| 111 | */ |
| 112 | enum pm_ret_status pm_ipi_send(const struct pm_proc *proc, |
| 113 | uint32_t payload[PAYLOAD_ARG_CNT]) |
| 114 | { |
| 115 | enum pm_ret_status ret; |
| 116 | |
| 117 | bakery_lock_get(&pm_secure_lock); |
| 118 | |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 119 | ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 120 | |
| 121 | bakery_lock_release(&pm_secure_lock); |
| 122 | |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | |
| 127 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 128 | * pm_ipi_buff_read() - Reads IPI response after remote processor has handled |
| 129 | * interrupt |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 130 | * @proc Pointer to the processor who is waiting and reading response |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 131 | * @value Used to return value from IPI buffer element (optional) |
| 132 | * @count Number of values to return in @value |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 133 | * |
| 134 | * @return Returns status, either success or error+reason |
| 135 | */ |
| 136 | static enum pm_ret_status pm_ipi_buff_read(const struct pm_proc *proc, |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 137 | unsigned int *value, size_t count) |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 138 | { |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 139 | size_t i; |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 140 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 141 | size_t j; |
| 142 | unsigned int response_payload[PAYLOAD_ARG_CNT]; |
| 143 | #endif |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 144 | uintptr_t buffer_base = proc->ipi->buffer_base + |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 145 | IPI_BUFFER_TARGET_REMOTE_OFFSET + |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 146 | IPI_BUFFER_RESP_OFFSET; |
| 147 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 148 | /* |
| 149 | * Read response from IPI buffer |
| 150 | * buf-0: success or error+reason |
| 151 | * buf-1: value |
| 152 | * buf-2: unused |
| 153 | * buf-3: unused |
| 154 | */ |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 155 | for (i = 1; i <= count; i++) { |
| 156 | *value = mmio_read_32(buffer_base + (i * PAYLOAD_ARG_SIZE)); |
| 157 | value++; |
| 158 | } |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 159 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 160 | for (j = 0; j < PAYLOAD_ARG_CNT; j++) |
| 161 | response_payload[j] = mmio_read_32(buffer_base + |
| 162 | (j * PAYLOAD_ARG_SIZE)); |
| 163 | |
| 164 | if (response_payload[PAYLOAD_CRC_POS] != |
| 165 | calculate_crc(response_payload, IPI_W0_TO_W6_SIZE)) |
| 166 | NOTICE("ERROR in CRC response payload value:0x%x\n", |
| 167 | response_payload[PAYLOAD_CRC_POS]); |
| 168 | #endif |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 169 | |
| 170 | return mmio_read_32(buffer_base); |
| 171 | } |
| 172 | |
| 173 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 174 | * pm_ipi_buff_read_callb() - Reads IPI response after remote processor has |
| 175 | * handled interrupt |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 176 | * @value Used to return value from IPI buffer element (optional) |
| 177 | * @count Number of values to return in @value |
| 178 | * |
| 179 | * @return Returns status, either success or error+reason |
| 180 | */ |
| 181 | void pm_ipi_buff_read_callb(unsigned int *value, size_t count) |
| 182 | { |
| 183 | size_t i; |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 184 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 185 | size_t j; |
| 186 | unsigned int response_payload[PAYLOAD_ARG_CNT]; |
| 187 | #endif |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 188 | uintptr_t buffer_base = IPI_BUFFER_REMOTE_BASE + |
| 189 | IPI_BUFFER_TARGET_LOCAL_OFFSET + |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 190 | IPI_BUFFER_REQ_OFFSET; |
| 191 | |
| 192 | if (count > IPI_BUFFER_MAX_WORDS) |
| 193 | count = IPI_BUFFER_MAX_WORDS; |
| 194 | |
| 195 | for (i = 0; i <= count; i++) { |
| 196 | *value = mmio_read_32(buffer_base + (i * PAYLOAD_ARG_SIZE)); |
| 197 | value++; |
| 198 | } |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 199 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 200 | for (j = 0; j < PAYLOAD_ARG_CNT; j++) |
| 201 | response_payload[j] = mmio_read_32(buffer_base + |
| 202 | (j * PAYLOAD_ARG_SIZE)); |
| 203 | |
| 204 | if (response_payload[PAYLOAD_CRC_POS] != |
| 205 | calculate_crc(response_payload, IPI_W0_TO_W6_SIZE)) |
| 206 | NOTICE("ERROR in CRC response payload value:0x%x\n", |
| 207 | response_payload[PAYLOAD_CRC_POS]); |
| 208 | #endif |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /** |
Jolly Shah | 9bb628d | 2019-01-07 12:53:32 -0800 | [diff] [blame] | 212 | * pm_ipi_send_sync() - Sends IPI request to the remote processor |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 213 | * @proc Pointer to the processor who is initiating request |
| 214 | * @payload API id and call arguments to be written in IPI buffer |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 215 | * @value Used to return value from IPI buffer element (optional) |
| 216 | * @count Number of values to return in @value |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 217 | * |
| 218 | * Send an IPI request to the power controller and wait for it to be handled. |
| 219 | * |
| 220 | * @return Returns status, either success or error+reason and, optionally, |
| 221 | * @value |
| 222 | */ |
| 223 | enum pm_ret_status pm_ipi_send_sync(const struct pm_proc *proc, |
| 224 | uint32_t payload[PAYLOAD_ARG_CNT], |
Soren Brinkmann | d6c9e03 | 2016-09-22 11:35:47 -0700 | [diff] [blame] | 225 | unsigned int *value, size_t count) |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 226 | { |
| 227 | enum pm_ret_status ret; |
| 228 | |
| 229 | bakery_lock_get(&pm_secure_lock); |
| 230 | |
Tejas Patel | af4b10e | 2018-02-09 02:42:59 -0800 | [diff] [blame] | 231 | ret = pm_ipi_send_common(proc, payload, IPI_BLOCKING); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 232 | if (ret != PM_RET_SUCCESS) |
| 233 | goto unlock; |
| 234 | |
Ravi Patel | 6512371 | 2020-11-23 04:19:08 -0800 | [diff] [blame] | 235 | ret = ERROR_CODE_MASK & (pm_ipi_buff_read(proc, value, count)); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 236 | |
| 237 | unlock: |
| 238 | bakery_lock_release(&pm_secure_lock); |
| 239 | |
| 240 | return ret; |
| 241 | } |
Soren Brinkmann | a1b0a90 | 2016-09-30 11:30:21 -0700 | [diff] [blame] | 242 | |
Wendy Liang | 328105c | 2017-10-03 23:21:11 -0700 | [diff] [blame] | 243 | void pm_ipi_irq_enable(const struct pm_proc *proc) |
Soren Brinkmann | a1b0a90 | 2016-09-30 11:30:21 -0700 | [diff] [blame] | 244 | { |
Jolly Shah | 36c930b | 2019-01-07 12:51:40 -0800 | [diff] [blame] | 245 | ipi_mb_enable_irq(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id); |
Soren Brinkmann | a1b0a90 | 2016-09-30 11:30:21 -0700 | [diff] [blame] | 246 | } |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 247 | |
Wendy Liang | 328105c | 2017-10-03 23:21:11 -0700 | [diff] [blame] | 248 | void pm_ipi_irq_clear(const struct pm_proc *proc) |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 249 | { |
Jolly Shah | 36c930b | 2019-01-07 12:51:40 -0800 | [diff] [blame] | 250 | ipi_mb_ack(proc->ipi->local_ipi_id, proc->ipi->remote_ipi_id); |
Soren Brinkmann | 84f0af4 | 2016-09-30 14:24:25 -0700 | [diff] [blame] | 251 | } |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 252 | |
| 253 | uint32_t pm_ipi_irq_status(const struct pm_proc *proc) |
| 254 | { |
| 255 | int ret; |
| 256 | |
| 257 | ret = ipi_mb_enquire_status(proc->ipi->local_ipi_id, |
| 258 | proc->ipi->remote_ipi_id); |
| 259 | if (ret & IPI_MB_STATUS_RECV_PENDING) |
| 260 | return 1; |
| 261 | else |
| 262 | return 0; |
| 263 | } |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 264 | |
Venkatesh Yadav Abbarapu | bfa2a2a | 2021-02-19 01:40:14 -0700 | [diff] [blame] | 265 | #if IPI_CRC_CHECK |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 266 | uint32_t calculate_crc(uint32_t *payload, uint32_t bufsize) |
| 267 | { |
| 268 | uint32_t crcinit = CRC_INIT_VALUE; |
| 269 | uint32_t order = CRC_ORDER; |
| 270 | uint32_t polynom = CRC_POLYNOM; |
| 271 | uint32_t i, j, c, bit, datain, crcmask, crchighbit; |
| 272 | uint32_t crc = crcinit; |
| 273 | |
| 274 | crcmask = ((uint32_t)((1U << (order - 1U)) - 1U) << 1U) | 1U; |
| 275 | crchighbit = (uint32_t)(1U << (order - 1U)); |
| 276 | |
| 277 | for (i = 0U; i < bufsize; i++) { |
| 278 | datain = mmio_read_8((unsigned long)payload + i); |
| 279 | c = datain; |
| 280 | j = 0x80U; |
| 281 | while (j != 0U) { |
| 282 | bit = crc & crchighbit; |
| 283 | crc <<= 1U; |
| 284 | if (0U != (c & j)) |
| 285 | bit ^= crchighbit; |
| 286 | if (bit != 0U) |
| 287 | crc ^= polynom; |
| 288 | j >>= 1U; |
| 289 | } |
| 290 | crc &= crcmask; |
| 291 | } |
| 292 | return crc; |
| 293 | } |
| 294 | #endif |