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