Olivier Deprez | 9938c13 | 2021-04-21 11:22:23 +0200 | [diff] [blame] | 1 | FF-A manifest binding to device tree |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 2 | ==================================== |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 3 | |
| 4 | This document defines the nodes and properties used to define a partition, |
Olivier Deprez | 9938c13 | 2021-04-21 11:22:23 +0200 | [diff] [blame] | 5 | according to the FF-A specification. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 6 | |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 7 | Partition Properties |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 8 | -------------------- |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 9 | |
| 10 | - compatible [mandatory] |
| 11 | - value type: <string> |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 12 | - Must be the string "arm,ffa-manifest-X.Y" which specifies the major and |
David Horstmann | 051fd6d | 2020-11-12 15:19:04 +0000 | [diff] [blame] | 13 | minor versions of the device tree binding for the FFA manifest represented |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 14 | by this node. The minor number is incremented if the binding changes in a |
| 15 | backwards compatible manner. |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 16 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 17 | - X is an integer representing the major version number of this document. |
| 18 | - Y is an integer representing the minor version number of this document. |
| 19 | |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 20 | - ffa-version [mandatory] |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 21 | - value type: <u32> |
| 22 | - Must be two 16 bits values (X, Y), concatenated as 31:16 -> X, |
| 23 | 15:0 -> Y, where: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 24 | |
Olivier Deprez | 9938c13 | 2021-04-21 11:22:23 +0200 | [diff] [blame] | 25 | - X is the major version of FF-A expected by the partition at the FFA |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 26 | instance it will execute. |
Olivier Deprez | 9938c13 | 2021-04-21 11:22:23 +0200 | [diff] [blame] | 27 | - Y is the minor version of FF-A expected by the partition at the FFA |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 28 | instance it will execute. |
| 29 | |
| 30 | - uuid [mandatory] |
| 31 | - value type: <prop-encoded-array> |
| 32 | - An array consisting of 4 <u32> values, identifying the UUID of the service |
| 33 | implemented by this partition. The UUID format is described in RFC 4122. |
Sami Mujawar | 13a1f8f | 2025-03-03 10:08:54 +0000 | [diff] [blame^] | 34 | - These 4 <u32> values are packed similar to the UUID register mapping |
| 35 | specified in section '5.3 Unique Identification format', SMC Calling |
| 36 | Convention, DEN0028, v1.6 G BET0 |
| 37 | (https://developer.arm.com/documentation/den0028/latest/). |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 38 | |
| 39 | - id |
| 40 | - value type: <u32> |
| 41 | - Pre-allocated partition ID. |
| 42 | |
| 43 | - auxiliary-id |
| 44 | - value type: <u32> |
| 45 | - Pre-allocated ID that could be used in memory management transactions. |
| 46 | |
| 47 | - description |
| 48 | - value type: <string> |
| 49 | - Name of the partition e.g. for debugging purposes. |
| 50 | |
| 51 | - execution-ctx-count [mandatory] |
| 52 | - value type: <u32> |
| 53 | - Number of vCPUs that a VM or SP wants to instantiate. |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 54 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 55 | - In the absence of virtualization, this is the number of execution |
| 56 | contexts that a partition implements. |
| 57 | - If value of this field = 1 and number of PEs > 1 then the partition is |
| 58 | treated as UP & migrate capable. |
| 59 | - If the value of this field > 1 then the partition is treated as a MP |
| 60 | capable partition irrespective of the number of PEs. |
| 61 | |
| 62 | - exception-level [mandatory] |
| 63 | - value type: <u32> |
| 64 | - The target exception level for the partition: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 65 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 66 | - 0x0: EL1 |
| 67 | - 0x1: S_EL0 |
| 68 | - 0x2: S_EL1 |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 69 | |
| 70 | - execution-state [mandatory] |
| 71 | - value type: <u32> |
| 72 | - The target execution state of the partition: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 73 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 74 | - 0: AArch64 |
| 75 | - 1: AArch32 |
| 76 | |
| 77 | - load-address |
| 78 | - value type: <u64> |
| 79 | - Physical base address of the partition in memory. Absence of this field |
| 80 | indicates that the partition is position independent and can be loaded at |
| 81 | any address chosen at boot time. |
| 82 | |
| 83 | - entrypoint-offset |
| 84 | - value type: <u64> |
| 85 | - Offset from the base of the partition's binary image to the entry point of |
| 86 | the partition. Absence of this field indicates that the entry point is at |
| 87 | offset 0x0 from the base of the partition's binary. |
| 88 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 89 | - xlat-granule |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 90 | - value type: <u32> |
| 91 | - Translation granule used with the partition: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 92 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 93 | - 0x0: 4k |
| 94 | - 0x1: 16k |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 95 | - 0x2: 64k |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 96 | |
| 97 | - boot-order |
Madhukar Pappireddy | c85a69e | 2024-07-25 17:46:08 -0500 | [diff] [blame] | 98 | - value type: <u32> |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 99 | - A unique number amongst all partitions that specifies if this partition |
| 100 | must be booted before others. The partition with the smaller number will be |
Madhukar Pappireddy | c85a69e | 2024-07-25 17:46:08 -0500 | [diff] [blame] | 101 | booted first. Highest vlue allowed for this field is 0xFFFF. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 102 | |
| 103 | - rx-tx-buffer |
| 104 | - value type: "memory-regions" node |
| 105 | - Specific "memory-regions" nodes that describe the RX/TX buffers expected |
| 106 | by the partition. |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 107 | The "compatible" must be the string "arm,ffa-manifest-rx_tx-buffer". |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 108 | |
| 109 | - messaging-method [mandatory] |
Madhukar Pappireddy | c85a69e | 2024-07-25 17:46:08 -0500 | [diff] [blame] | 110 | - value type: <u32> |
Maksims Svecovs | dfdec7c | 2021-05-06 14:17:00 +0100 | [diff] [blame] | 111 | - Specifies which messaging methods are supported by the partition, set bit |
| 112 | means the feature is supported, clear bit - not supported: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 113 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 114 | - Bit[0]: partition can receive direct requests via FFA_MSG_SEND_DIRECT_REQ ABI if set |
| 115 | - Bit[1]: partition can send direct requests via FFA_MSG_SEND_DIRECT_REQ ABI if set |
Maksims Svecovs | 1471320 | 2021-05-06 19:03:48 +0100 | [diff] [blame] | 116 | - Bit[2]: partition can send and receive indirect messages |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 117 | - Bit[9]: partition can receive direct requests via FFA_MSG_SEND_DIRECT_REQ2 ABI if set |
| 118 | - Bit[10]: partition can send direct requests via FFA_MSG_SEND_DIRECT_REQ2 ABI if set |
Maksims Svecovs | 1471320 | 2021-05-06 19:03:48 +0100 | [diff] [blame] | 119 | |
| 120 | - managed-exit |
| 121 | - value type: <empty> |
| 122 | - Specifies if managed exit is supported. |
Madhukar Pappireddy | bfc7aa8 | 2022-09-01 10:57:21 -0500 | [diff] [blame] | 123 | - This field is deprecated in favor of ns-interrupts-action field in the FF-A |
| 124 | v1.1 EAC0 spec. |
| 125 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 126 | - managed-exit-virq |
| 127 | - value type: <empty> |
| 128 | - Indicates if the partition needs managed exit, if supported, to be signaled |
Madhukar Pappireddy | 0db63cc | 2024-09-18 10:20:07 -0500 | [diff] [blame] | 129 | through vIRQ signal. |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 130 | |
Madhukar Pappireddy | bfc7aa8 | 2022-09-01 10:57:21 -0500 | [diff] [blame] | 131 | - ns-interrupts-action [mandatory] |
| 132 | - value type: <u32> |
| 133 | - Specifies the action that the SPMC must take in response to a Non-secure |
| 134 | physical interrupt. |
| 135 | |
| 136 | - 0x0: Non-secure interrupt is queued |
| 137 | - 0x1: Non-secure interrupt is signaled after a managed exit |
| 138 | - 0x2: Non-secure interrupt is signaled |
| 139 | |
| 140 | - This field supersedes the managed-exit field in the FF-A v1.0 spec. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 141 | |
Madhukar Pappireddy | eff48e0 | 2023-01-26 08:47:58 -0600 | [diff] [blame] | 142 | - other-s-interrupts-action |
| 143 | - value type: <u32> |
| 144 | - Specifies the action that the SPMC must take in response to a Other-Secure |
| 145 | physical interrupt. |
| 146 | |
| 147 | - 0x0: Other-Secure interrupt is queued |
| 148 | - 0x1: Other-Secure interrupt is signaled |
| 149 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 150 | - has-primary-scheduler |
| 151 | - value type: <empty> |
| 152 | - Presence of this field indicates that the partition implements the primary |
| 153 | scheduler. If so, run-time EL must be EL1. |
| 154 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 155 | - time-slice-mem |
| 156 | - value type: <empty> |
| 157 | - Presence of this field indicates that the partition doesn't expect the |
| 158 | partition manager to time slice long running memory management functions. |
| 159 | |
| 160 | - gp-register-num |
| 161 | - value type: <u32> |
J-Alves | cfc6e23 | 2022-05-24 12:13:08 +0100 | [diff] [blame] | 162 | - The field specifies the general purpose register number but not its width. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 163 | The width is derived from the partition's execution state, as specified in |
| 164 | the partition properties. For example, if the number value is 1 then the |
| 165 | general-purpose register used will be x1 in AArch64 state and w1 in AArch32 |
| 166 | state. |
J-Alves | cfc6e23 | 2022-05-24 12:13:08 +0100 | [diff] [blame] | 167 | Presence of this field indicates that the partition expects the address of |
| 168 | the FF-A boot information blob to be passed in the specified general purpose |
| 169 | register. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 170 | |
Marc Bonnici | 25f4b54 | 2022-04-12 17:18:13 +0100 | [diff] [blame] | 171 | - power-management-messages |
| 172 | - value type: <u32> |
| 173 | - Specifies which power management messages a partition subscribes to. |
| 174 | A set bit means the partition should be informed of the power event, clear |
| 175 | bit - should not be informed of event: |
| 176 | |
| 177 | - Bit[0]: CPU_OFF |
| 178 | - Bit[1]: CPU_SUSPEND |
| 179 | - Bit[2]: CPU_SUSPEND_RESUME |
| 180 | |
Balint Dobszay | 251be5f | 2024-07-10 11:46:37 +0200 | [diff] [blame] | 181 | - vm-availability-messages |
| 182 | - value type: <u32> |
| 183 | - Specifies which VM availability messages a partition subscribes to. A set |
| 184 | bit means the partition should be informed of the event, clear bit - should |
| 185 | not be informed of event: |
| 186 | |
| 187 | - Bit[0]: VM created |
| 188 | - Bit[1]: VM destroyed |
| 189 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 190 | .. _memory_region_node: |
| 191 | |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 192 | Memory Regions |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 193 | -------------- |
| 194 | |
| 195 | - compatible [mandatory] |
| 196 | - value type: <string> |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 197 | - Must be the string "arm,ffa-manifest-memory-regions". |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 198 | |
| 199 | - description |
| 200 | - value type: <string> |
| 201 | - Name of the memory region e.g. for debugging purposes. |
| 202 | |
| 203 | - pages-count [mandatory] |
| 204 | - value type: <u32> |
| 205 | - Count of pages of memory region as a multiple of the translation granule |
| 206 | size |
| 207 | |
| 208 | - attributes [mandatory] |
| 209 | - value type: <u32> |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 210 | - Mapping modes: ORed to get required permission |
| 211 | |
| 212 | - 0x1: Read |
| 213 | - 0x2: Write |
| 214 | - 0x4: Execute |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 215 | - 0x8: Security state |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 216 | |
| 217 | - base-address |
| 218 | - value type: <u64> |
| 219 | - Base address of the region. The address must be aligned to the translation |
| 220 | granule size. |
| 221 | The address given may be a Physical Address (PA), Virtual Address (VA), or |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 222 | Intermediate Physical Address (IPA). Refer to the FF-A specification for |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 223 | more information on the restrictions around the address type. |
| 224 | If the base address is omitted then the partition manager must map a memory |
| 225 | region of the specified size into the partition's translation regime and |
| 226 | then communicate the region properties (including the base address chosen |
| 227 | by the partition manager) to the partition. |
| 228 | |
Davidson K | 0ce47e2 | 2024-09-03 16:35:37 +0530 | [diff] [blame] | 229 | - load-address-relative-offset |
| 230 | - value type: <u64> |
| 231 | - Offset relative to the load address of the partition. |
| 232 | When this is provided in the partition manifest, it should be added to the |
| 233 | load address to get the base address of the region. The secure partition |
| 234 | manifest can have either "base-address" or "load-address-relative-offset". |
| 235 | It cannot have both. |
| 236 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 237 | - stream-ids |
| 238 | - value type: <prop-encoded-array> |
| 239 | - List of IDs belonging to a DMA capable peripheral device that has access to |
| 240 | the memory region represented by current node. |
| 241 | - Each ID must have been declared in exactly one device region node. |
| 242 | |
| 243 | - smmu-id |
| 244 | - value type: <u32> |
| 245 | - Identifies the SMMU IP that enforces the access control for the DMA device |
| 246 | that owns the above stream-ids. |
| 247 | |
| 248 | - stream-ids-access-permissions |
| 249 | - value type: <prop-encoded-array> |
| 250 | - List of attributes representing the instruction and data access permissions |
| 251 | used by the DMA device streams to access the memory region represented by |
| 252 | current node. |
| 253 | |
| 254 | .. _device_region_node: |
| 255 | |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 256 | Device Regions |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 257 | -------------- |
| 258 | |
| 259 | - compatible [mandatory] |
| 260 | - value type: <string> |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 261 | - Must be the string "arm,ffa-manifest-device-regions". |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 262 | |
| 263 | - description |
| 264 | - value type: <string> |
| 265 | - Name of the device region e.g. for debugging purposes. |
| 266 | |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 267 | - pages-count [mandatory] |
| 268 | - value type: <u32> |
| 269 | - Count of pages of memory region as a multiple of the translation granule |
| 270 | size |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 271 | |
| 272 | - attributes [mandatory] |
| 273 | - value type: <u32> |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 274 | - Mapping modes: ORed to get required permission |
| 275 | |
| 276 | - 0x1: Read |
| 277 | - 0x2: Write |
| 278 | - 0x4: Execute |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 279 | - 0x8: Security state |
| 280 | |
| 281 | - base-address [mandatory] |
| 282 | - value type: <u64> |
| 283 | - Base address of the region. The address must be aligned to the translation |
| 284 | granule size. |
| 285 | The address given may be a Physical Address (PA), Virtual Address (VA), or |
| 286 | Intermediate Physical Address (IPA). Refer to the FF-A specification for |
| 287 | more information on the restrictions around the address type. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 288 | |
| 289 | - smmu-id |
| 290 | - value type: <u32> |
| 291 | - On systems with multiple System Memory Management Units (SMMUs) this |
| 292 | identifier is used to inform the partition manager which SMMU the device is |
| 293 | upstream of. If the field is omitted then it is assumed that the device is |
| 294 | not upstream of any SMMU. |
| 295 | |
Louis Mayencourt | 31030e5 | 2020-04-08 13:04:33 +0100 | [diff] [blame] | 296 | - stream-ids |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 297 | - value type: <prop-encoded-array> |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 298 | - List of IDs where an ID is a unique <u32> value amongst all devices assigned |
| 299 | to the partition. |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 300 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 301 | - interrupts |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 302 | - value type: <prop-encoded-array> |
| 303 | - A list of (id, attributes) pair describing the device interrupts, where: |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 304 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 305 | - id: The <u32> interrupt IDs. |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 306 | - attributes: A <u32> value, containing attributes for each interrupt ID: |
| 307 | |
| 308 | +----------------------+----------+ |
| 309 | |Field | Bit(s) | |
| 310 | +----------------------+----------+ |
| 311 | | Priority | 7:0 | |
| 312 | +----------------------+----------+ |
| 313 | | Security state | 8 | |
| 314 | +----------------------+----------+ |
| 315 | | Config(Edge/Level) | 9 | |
| 316 | +----------------------+----------+ |
| 317 | | Type(SPI/PPI/SGI) | 11:10 | |
| 318 | +----------------------+----------+ |
Louis Mayencourt | 950ef2f | 2020-03-27 11:49:20 +0000 | [diff] [blame] | 319 | |
Olivier Deprez | 7a632c5 | 2022-05-12 18:17:05 +0200 | [diff] [blame] | 320 | Security state: |
| 321 | - Secure: 1 |
| 322 | - Non-secure: 0 |
| 323 | |
| 324 | Configuration: |
| 325 | - Edge triggered: 0 |
| 326 | - Level triggered: 1 |
| 327 | |
| 328 | Type: |
| 329 | - SPI: 0b10 |
| 330 | - PPI: 0b01 |
| 331 | - SGI: 0b00 |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 332 | |
Raghu Krishnamurthy | 7e7242d | 2023-01-16 12:43:40 -0800 | [diff] [blame] | 333 | - interrupts-target |
| 334 | - value type: <prop-encoded-array> |
| 335 | - A list of (id, mpdir upper bits, mpidr lower bits) tuples describing which |
| 336 | mpidr the interrupt is routed to, where: |
| 337 | |
| 338 | - id: The <u32> interrupt ID. Must be one of those specified in the |
| 339 | "interrupts" field. |
| 340 | - mpidr upper bits: The <u32> describing the upper bits of the 64 bits |
| 341 | mpidr |
| 342 | - mpidr lower bits: The <u32> describing the lower bits of the 64 bits |
| 343 | mpidr |
| 344 | |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 345 | - exclusive-access |
| 346 | - value type: <empty> |
| 347 | - Presence of this field implies that this endpoint must be granted exclusive |
David Horstmann | 051fd6d | 2020-11-12 15:19:04 +0000 | [diff] [blame] | 348 | access and ownership of this device's MMIO region. |
Louis Mayencourt | 5f0fc15 | 2019-11-29 15:05:14 +0000 | [diff] [blame] | 349 | |
| 350 | -------------- |
| 351 | |
Madhukar Pappireddy | 5df35bb | 2024-07-25 17:40:23 -0500 | [diff] [blame] | 352 | *Copyright (c) 2019-2024, Arm Limited and Contributors. All rights reserved.* |