Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Remote Processor Framework |
| 3 | * |
| 4 | * Copyright(c) 2011 Texas Instruments, Inc. |
| 5 | * Copyright(c) 2011 Google, Inc. |
| 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * |
| 12 | * * Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * * Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in |
| 16 | * the documentation and/or other materials provided with the |
| 17 | * distribution. |
| 18 | * * Neither the name Texas Instruments nor the names of its |
| 19 | * contributors may be used to endorse or promote products derived |
| 20 | * from this software without specific prior written permission. |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 23 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 24 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 25 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 26 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 27 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 28 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 32 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 33 | */ |
| 34 | |
| 35 | #ifndef REMOTEPROC_H |
| 36 | #define REMOTEPROC_H |
| 37 | |
| 38 | #include <linux/types.h> |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 39 | #include <linux/mutex.h> |
| 40 | #include <linux/virtio.h> |
| 41 | #include <linux/completion.h> |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 42 | #include <linux/idr.h> |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 43 | #include <linux/of.h> |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 44 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 45 | /** |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 46 | * struct resource_table - firmware resource table header |
| 47 | * @ver: version number |
| 48 | * @num: number of resource entries |
| 49 | * @reserved: reserved (must be zero) |
| 50 | * @offset: array of offsets pointing at the various resource entries |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 51 | * |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 52 | * A resource table is essentially a list of system resources required |
| 53 | * by the remote processor. It may also include configuration entries. |
| 54 | * If needed, the remote processor firmware should contain this table |
| 55 | * as a dedicated ".resource_table" ELF section. |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 56 | * |
| 57 | * Some resources entries are mere announcements, where the host is informed |
| 58 | * of specific remoteproc configuration. Other entries require the host to |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 59 | * do something (e.g. allocate a system resource). Sometimes a negotiation |
| 60 | * is expected, where the firmware requests a resource, and once allocated, |
| 61 | * the host should provide back its details (e.g. address of an allocated |
| 62 | * memory region). |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 63 | * |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 64 | * The header of the resource table, as expressed by this structure, |
| 65 | * contains a version number (should we need to change this format in the |
| 66 | * future), the number of available resource entries, and their offsets |
| 67 | * in the table. |
| 68 | * |
| 69 | * Immediately following this header are the resource entries themselves, |
| 70 | * each of which begins with a resource entry header (as described below). |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 71 | */ |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 72 | struct resource_table { |
| 73 | u32 ver; |
| 74 | u32 num; |
| 75 | u32 reserved[2]; |
| 76 | u32 offset[0]; |
| 77 | } __packed; |
| 78 | |
| 79 | /** |
| 80 | * struct fw_rsc_hdr - firmware resource entry header |
| 81 | * @type: resource type |
| 82 | * @data: resource data |
| 83 | * |
| 84 | * Every resource entry begins with a 'struct fw_rsc_hdr' header providing |
| 85 | * its @type. The content of the entry itself will immediately follow |
| 86 | * this header, and it should be parsed according to the resource type. |
| 87 | */ |
| 88 | struct fw_rsc_hdr { |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 89 | u32 type; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 90 | u8 data[0]; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 91 | } __packed; |
| 92 | |
| 93 | /** |
| 94 | * enum fw_resource_type - types of resource entries |
| 95 | * |
| 96 | * @RSC_CARVEOUT: request for allocation of a physically contiguous |
| 97 | * memory region. |
| 98 | * @RSC_DEVMEM: request to iommu_map a memory-based peripheral. |
| 99 | * @RSC_TRACE: announces the availability of a trace buffer into which |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 100 | * the remote processor will be writing logs. |
| 101 | * @RSC_VDEV: declare support for a virtio device, and serve as its |
| 102 | * virtio header. |
Ohad Ben-Cohen | e12bc14 | 2012-01-31 16:07:27 +0200 | [diff] [blame] | 103 | * @RSC_LAST: just keep this one at the end |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 104 | * |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 105 | * For more details regarding a specific resource type, please see its |
| 106 | * dedicated structure below. |
Ohad Ben-Cohen | e12bc14 | 2012-01-31 16:07:27 +0200 | [diff] [blame] | 107 | * |
| 108 | * Please note that these values are used as indices to the rproc_handle_rsc |
| 109 | * lookup table, so please keep them sane. Moreover, @RSC_LAST is used to |
| 110 | * check the validity of an index before the lookup table is accessed, so |
| 111 | * please update it as needed. |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 112 | */ |
| 113 | enum fw_resource_type { |
| 114 | RSC_CARVEOUT = 0, |
| 115 | RSC_DEVMEM = 1, |
| 116 | RSC_TRACE = 2, |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 117 | RSC_VDEV = 3, |
| 118 | RSC_LAST = 4, |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 119 | }; |
| 120 | |
Loic PALLARDY | cd58305 | 2016-09-06 09:39:42 +0200 | [diff] [blame] | 121 | #define FW_RSC_ADDR_ANY (-1) |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 122 | |
| 123 | /** |
| 124 | * struct fw_rsc_carveout - physically contiguous memory request |
| 125 | * @da: device address |
| 126 | * @pa: physical address |
| 127 | * @len: length (in bytes) |
| 128 | * @flags: iommu protection flags |
| 129 | * @reserved: reserved (must be zero) |
| 130 | * @name: human-readable name of the requested memory region |
| 131 | * |
| 132 | * This resource entry requests the host to allocate a physically contiguous |
| 133 | * memory region. |
| 134 | * |
| 135 | * These request entries should precede other firmware resource entries, |
| 136 | * as other entries might request placing other data objects inside |
| 137 | * these memory regions (e.g. data/code segments, trace resource entries, ...). |
| 138 | * |
| 139 | * Allocating memory this way helps utilizing the reserved physical memory |
| 140 | * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries |
| 141 | * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB |
| 142 | * pressure is important; it may have a substantial impact on performance. |
| 143 | * |
| 144 | * If the firmware is compiled with static addresses, then @da should specify |
| 145 | * the expected device address of this memory region. If @da is set to |
| 146 | * FW_RSC_ADDR_ANY, then the host will dynamically allocate it, and then |
| 147 | * overwrite @da with the dynamically allocated address. |
| 148 | * |
| 149 | * We will always use @da to negotiate the device addresses, even if it |
| 150 | * isn't using an iommu. In that case, though, it will obviously contain |
| 151 | * physical addresses. |
| 152 | * |
| 153 | * Some remote processors needs to know the allocated physical address |
| 154 | * even if they do use an iommu. This is needed, e.g., if they control |
| 155 | * hardware accelerators which access the physical memory directly (this |
| 156 | * is the case with OMAP4 for instance). In that case, the host will |
| 157 | * overwrite @pa with the dynamically allocated physical address. |
| 158 | * Generally we don't want to expose physical addresses if we don't have to |
| 159 | * (remote processors are generally _not_ trusted), so we might want to |
| 160 | * change this to happen _only_ when explicitly required by the hardware. |
| 161 | * |
| 162 | * @flags is used to provide IOMMU protection flags, and @name should |
| 163 | * (optionally) contain a human readable name of this carveout region |
| 164 | * (mainly for debugging purposes). |
| 165 | */ |
| 166 | struct fw_rsc_carveout { |
| 167 | u32 da; |
| 168 | u32 pa; |
| 169 | u32 len; |
| 170 | u32 flags; |
| 171 | u32 reserved; |
| 172 | u8 name[32]; |
| 173 | } __packed; |
| 174 | |
| 175 | /** |
| 176 | * struct fw_rsc_devmem - iommu mapping request |
| 177 | * @da: device address |
| 178 | * @pa: physical address |
| 179 | * @len: length (in bytes) |
| 180 | * @flags: iommu protection flags |
| 181 | * @reserved: reserved (must be zero) |
| 182 | * @name: human-readable name of the requested region to be mapped |
| 183 | * |
| 184 | * This resource entry requests the host to iommu map a physically contiguous |
| 185 | * memory region. This is needed in case the remote processor requires |
| 186 | * access to certain memory-based peripherals; _never_ use it to access |
| 187 | * regular memory. |
| 188 | * |
| 189 | * This is obviously only needed if the remote processor is accessing memory |
| 190 | * via an iommu. |
| 191 | * |
| 192 | * @da should specify the required device address, @pa should specify |
| 193 | * the physical address we want to map, @len should specify the size of |
| 194 | * the mapping and @flags is the IOMMU protection flags. As always, @name may |
| 195 | * (optionally) contain a human readable name of this mapping (mainly for |
| 196 | * debugging purposes). |
| 197 | * |
| 198 | * Note: at this point we just "trust" those devmem entries to contain valid |
| 199 | * physical addresses, but this isn't safe and will be changed: eventually we |
| 200 | * want remoteproc implementations to provide us ranges of physical addresses |
| 201 | * the firmware is allowed to request, and not allow firmwares to request |
| 202 | * access to physical addresses that are outside those ranges. |
| 203 | */ |
| 204 | struct fw_rsc_devmem { |
| 205 | u32 da; |
| 206 | u32 pa; |
| 207 | u32 len; |
| 208 | u32 flags; |
| 209 | u32 reserved; |
| 210 | u8 name[32]; |
| 211 | } __packed; |
| 212 | |
| 213 | /** |
| 214 | * struct fw_rsc_trace - trace buffer declaration |
| 215 | * @da: device address |
| 216 | * @len: length (in bytes) |
| 217 | * @reserved: reserved (must be zero) |
| 218 | * @name: human-readable name of the trace buffer |
| 219 | * |
| 220 | * This resource entry provides the host information about a trace buffer |
| 221 | * into which the remote processor will write log messages. |
| 222 | * |
| 223 | * @da specifies the device address of the buffer, @len specifies |
| 224 | * its size, and @name may contain a human readable name of the trace buffer. |
| 225 | * |
| 226 | * After booting the remote processor, the trace buffers are exposed to the |
| 227 | * user via debugfs entries (called trace0, trace1, etc..). |
| 228 | */ |
| 229 | struct fw_rsc_trace { |
| 230 | u32 da; |
| 231 | u32 len; |
| 232 | u32 reserved; |
| 233 | u8 name[32]; |
| 234 | } __packed; |
| 235 | |
| 236 | /** |
| 237 | * struct fw_rsc_vdev_vring - vring descriptor entry |
| 238 | * @da: device address |
| 239 | * @align: the alignment between the consumer and producer parts of the vring |
| 240 | * @num: num of buffers supported by this vring (must be power of two) |
| 241 | * @notifyid is a unique rproc-wide notify index for this vring. This notify |
| 242 | * index is used when kicking a remote processor, to let it know that this |
| 243 | * vring is triggered. |
Loic PALLARDY | 21b6657 | 2016-09-06 09:39:43 +0200 | [diff] [blame] | 244 | * @pa: physical address |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 245 | * |
| 246 | * This descriptor is not a resource entry by itself; it is part of the |
| 247 | * vdev resource type (see below). |
| 248 | * |
| 249 | * Note that @da should either contain the device address where |
| 250 | * the remote processor is expecting the vring, or indicate that |
| 251 | * dynamically allocation of the vring's device address is supported. |
| 252 | */ |
| 253 | struct fw_rsc_vdev_vring { |
| 254 | u32 da; |
| 255 | u32 align; |
| 256 | u32 num; |
| 257 | u32 notifyid; |
Loic PALLARDY | 21b6657 | 2016-09-06 09:39:43 +0200 | [diff] [blame] | 258 | u32 pa; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 259 | } __packed; |
| 260 | |
| 261 | /** |
| 262 | * struct fw_rsc_vdev - virtio device header |
| 263 | * @id: virtio device id (as in virtio_ids.h) |
| 264 | * @notifyid is a unique rproc-wide notify index for this vdev. This notify |
| 265 | * index is used when kicking a remote processor, to let it know that the |
| 266 | * status/features of this vdev have changes. |
| 267 | * @dfeatures specifies the virtio device features supported by the firmware |
| 268 | * @gfeatures is a place holder used by the host to write back the |
| 269 | * negotiated features that are supported by both sides. |
| 270 | * @config_len is the size of the virtio config space of this vdev. The config |
| 271 | * space lies in the resource table immediate after this vdev header. |
| 272 | * @status is a place holder where the host will indicate its virtio progress. |
| 273 | * @num_of_vrings indicates how many vrings are described in this vdev header |
| 274 | * @reserved: reserved (must be zero) |
| 275 | * @vring is an array of @num_of_vrings entries of 'struct fw_rsc_vdev_vring'. |
| 276 | * |
| 277 | * This resource is a virtio device header: it provides information about |
| 278 | * the vdev, and is then used by the host and its peer remote processors |
| 279 | * to negotiate and share certain virtio properties. |
| 280 | * |
| 281 | * By providing this resource entry, the firmware essentially asks remoteproc |
| 282 | * to statically allocate a vdev upon registration of the rproc (dynamic vdev |
| 283 | * allocation is not yet supported). |
| 284 | * |
| 285 | * Note: unlike virtualization systems, the term 'host' here means |
| 286 | * the Linux side which is running remoteproc to control the remote |
| 287 | * processors. We use the name 'gfeatures' to comply with virtio's terms, |
| 288 | * though there isn't really any virtualized guest OS here: it's the host |
| 289 | * which is responsible for negotiating the final features. |
| 290 | * Yeah, it's a bit confusing. |
| 291 | * |
| 292 | * Note: immediately following this structure is the virtio config space for |
| 293 | * this vdev (which is specific to the vdev; for more info, read the virtio |
| 294 | * spec). the size of the config space is specified by @config_len. |
| 295 | */ |
| 296 | struct fw_rsc_vdev { |
| 297 | u32 id; |
| 298 | u32 notifyid; |
| 299 | u32 dfeatures; |
| 300 | u32 gfeatures; |
| 301 | u32 config_len; |
| 302 | u8 status; |
| 303 | u8 num_of_vrings; |
| 304 | u8 reserved[2]; |
| 305 | struct fw_rsc_vdev_vring vring[0]; |
| 306 | } __packed; |
| 307 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 308 | /** |
| 309 | * struct rproc_mem_entry - memory entry descriptor |
| 310 | * @va: virtual address |
| 311 | * @dma: dma address |
| 312 | * @len: length, in bytes |
| 313 | * @da: device address |
| 314 | * @priv: associated data |
| 315 | * @node: list node |
| 316 | */ |
| 317 | struct rproc_mem_entry { |
| 318 | void *va; |
| 319 | dma_addr_t dma; |
| 320 | int len; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 321 | u32 da; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 322 | void *priv; |
| 323 | struct list_head node; |
| 324 | }; |
| 325 | |
| 326 | struct rproc; |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 327 | struct firmware; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 328 | |
| 329 | /** |
| 330 | * struct rproc_ops - platform-specific device handlers |
| 331 | * @start: power on the device and boot it |
| 332 | * @stop: power off the device |
| 333 | * @kick: kick a virtqueue (virtqueue id given as a parameter) |
Suman Anna | a01f7cd | 2015-05-22 15:45:28 -0500 | [diff] [blame] | 334 | * @da_to_va: optional platform hook to perform address translations |
Bjorn Andersson | 58b6409 | 2018-01-05 15:58:03 -0800 | [diff] [blame] | 335 | * @load_rsc_table: load resource table from firmware image |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 336 | * @find_loaded_rsc_table: find the loaded resouce table |
| 337 | * @load: load firmeware to memory, where the remote processor |
| 338 | * expects to find it |
| 339 | * @sanity_check: sanity check the fw image |
| 340 | * @get_boot_addr: get boot address to entry point specified in firmware |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 341 | */ |
| 342 | struct rproc_ops { |
| 343 | int (*start)(struct rproc *rproc); |
| 344 | int (*stop)(struct rproc *rproc); |
| 345 | void (*kick)(struct rproc *rproc, int vqid); |
Suman Anna | a01f7cd | 2015-05-22 15:45:28 -0500 | [diff] [blame] | 346 | void * (*da_to_va)(struct rproc *rproc, u64 da, int len); |
Bjorn Andersson | c1d35c1 | 2018-01-05 16:04:18 -0800 | [diff] [blame] | 347 | int (*parse_fw)(struct rproc *rproc, const struct firmware *fw); |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 348 | struct resource_table *(*find_loaded_rsc_table)( |
| 349 | struct rproc *rproc, const struct firmware *fw); |
| 350 | int (*load)(struct rproc *rproc, const struct firmware *fw); |
| 351 | int (*sanity_check)(struct rproc *rproc, const struct firmware *fw); |
| 352 | u32 (*get_boot_addr)(struct rproc *rproc, const struct firmware *fw); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 353 | }; |
| 354 | |
| 355 | /** |
| 356 | * enum rproc_state - remote processor states |
| 357 | * @RPROC_OFFLINE: device is powered off |
| 358 | * @RPROC_SUSPENDED: device is suspended; needs to be woken up to receive |
| 359 | * a message. |
| 360 | * @RPROC_RUNNING: device is up and running |
| 361 | * @RPROC_CRASHED: device has crashed; need to start recovery |
Sarangdhar Joshi | 608d792 | 2017-01-23 17:53:18 -0800 | [diff] [blame] | 362 | * @RPROC_DELETED: device is deleted |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 363 | * @RPROC_LAST: just keep this one at the end |
| 364 | * |
| 365 | * Please note that the values of these states are used as indices |
| 366 | * to rproc_state_string, a state-to-name lookup table, |
| 367 | * so please keep the two synchronized. @RPROC_LAST is used to check |
| 368 | * the validity of an index before the lookup table is accessed, so |
| 369 | * please update it as needed too. |
| 370 | */ |
| 371 | enum rproc_state { |
| 372 | RPROC_OFFLINE = 0, |
| 373 | RPROC_SUSPENDED = 1, |
| 374 | RPROC_RUNNING = 2, |
| 375 | RPROC_CRASHED = 3, |
Sarangdhar Joshi | 608d792 | 2017-01-23 17:53:18 -0800 | [diff] [blame] | 376 | RPROC_DELETED = 4, |
| 377 | RPROC_LAST = 5, |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 378 | }; |
| 379 | |
| 380 | /** |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 381 | * enum rproc_crash_type - remote processor crash types |
| 382 | * @RPROC_MMUFAULT: iommu fault |
Bjorn Andersson | b3d3903 | 2016-03-28 20:36:59 -0700 | [diff] [blame] | 383 | * @RPROC_WATCHDOG: watchdog bite |
| 384 | * @RPROC_FATAL_ERROR fatal error |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 385 | * |
| 386 | * Each element of the enum is used as an array index. So that, the value of |
| 387 | * the elements should be always something sane. |
| 388 | * |
| 389 | * Feel free to add more types when needed. |
| 390 | */ |
| 391 | enum rproc_crash_type { |
| 392 | RPROC_MMUFAULT, |
Bjorn Andersson | b3d3903 | 2016-03-28 20:36:59 -0700 | [diff] [blame] | 393 | RPROC_WATCHDOG, |
| 394 | RPROC_FATAL_ERROR, |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 395 | }; |
| 396 | |
| 397 | /** |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 398 | * struct rproc_dump_segment - segment info from ELF header |
| 399 | * @node: list node related to the rproc segment list |
| 400 | * @da: device address of the segment |
| 401 | * @size: size of the segment |
| 402 | */ |
| 403 | struct rproc_dump_segment { |
| 404 | struct list_head node; |
| 405 | |
| 406 | dma_addr_t da; |
| 407 | size_t size; |
| 408 | |
| 409 | loff_t offset; |
| 410 | }; |
| 411 | |
| 412 | /** |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 413 | * struct rproc - represents a physical remote processor device |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 414 | * @node: list node of this rproc object |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 415 | * @domain: iommu domain |
| 416 | * @name: human readable name of the rproc |
| 417 | * @firmware: name of firmware file to be loaded |
| 418 | * @priv: private data which belongs to the platform-specific rproc module |
| 419 | * @ops: platform-specific start/stop rproc handlers |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 420 | * @dev: virtual device for refcounting and common remoteproc behavior |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 421 | * @power: refcount of users who need this rproc powered up |
| 422 | * @state: state of the device |
| 423 | * @lock: lock which protects concurrent manipulations of the rproc |
| 424 | * @dbg_dir: debugfs directory of this rproc device |
| 425 | * @traces: list of trace buffers |
| 426 | * @num_traces: number of trace buffers |
| 427 | * @carveouts: list of physically contiguous memory allocations |
| 428 | * @mappings: list of iommu mappings we initiated, needed on shutdown |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 429 | * @bootaddr: address of first instruction to boot rproc with (optional) |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 430 | * @rvdevs: list of remote virtio devices |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 431 | * @subdevs: list of subdevices, to following the running state |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 432 | * @notifyids: idr for dynamically assigning rproc-wide unique notify ids |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 433 | * @index: index of this rproc device |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 434 | * @crash_handler: workqueue for handling a crash |
| 435 | * @crash_cnt: crash counter |
Fernando Guzman Lugo | 2e37abb | 2012-09-18 12:26:35 +0300 | [diff] [blame] | 436 | * @recovery_disabled: flag that state if recovery was disabled |
Sjur Brændeland | 099a3f3 | 2012-09-18 20:32:45 +0200 | [diff] [blame] | 437 | * @max_notifyid: largest allocated notify id. |
Bjorn Andersson | a0c1068 | 2016-12-30 03:21:38 -0800 | [diff] [blame] | 438 | * @table_ptr: pointer to the resource table in effect |
| 439 | * @cached_table: copy of the resource table |
Bjorn Andersson | a4b24c7 | 2018-01-05 15:57:59 -0800 | [diff] [blame] | 440 | * @table_sz: size of @cached_table |
Suman Anna | 315491e | 2015-01-09 15:21:58 -0600 | [diff] [blame] | 441 | * @has_iommu: flag to indicate if remote processor is behind an MMU |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 442 | * @dump_segments: list of segments in the firmware |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 443 | */ |
| 444 | struct rproc { |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 445 | struct list_head node; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 446 | struct iommu_domain *domain; |
| 447 | const char *name; |
Matt Redfearn | 0f57dc6 | 2016-10-17 16:48:58 +0100 | [diff] [blame] | 448 | char *firmware; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 449 | void *priv; |
Bjorn Andersson | fb98e2b | 2018-01-05 15:58:00 -0800 | [diff] [blame] | 450 | struct rproc_ops *ops; |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 451 | struct device dev; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 452 | atomic_t power; |
| 453 | unsigned int state; |
| 454 | struct mutex lock; |
| 455 | struct dentry *dbg_dir; |
| 456 | struct list_head traces; |
| 457 | int num_traces; |
| 458 | struct list_head carveouts; |
| 459 | struct list_head mappings; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 460 | u32 bootaddr; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 461 | struct list_head rvdevs; |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 462 | struct list_head subdevs; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 463 | struct idr notifyids; |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 464 | int index; |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 465 | struct work_struct crash_handler; |
Anna, Suman | f145928 | 2016-08-12 18:42:19 -0500 | [diff] [blame] | 466 | unsigned int crash_cnt; |
Fernando Guzman Lugo | 2e37abb | 2012-09-18 12:26:35 +0300 | [diff] [blame] | 467 | bool recovery_disabled; |
Sjur Brændeland | 099a3f3 | 2012-09-18 20:32:45 +0200 | [diff] [blame] | 468 | int max_notifyid; |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 469 | struct resource_table *table_ptr; |
Bjorn Andersson | a0c1068 | 2016-12-30 03:21:38 -0800 | [diff] [blame] | 470 | struct resource_table *cached_table; |
Bjorn Andersson | a4b24c7 | 2018-01-05 15:57:59 -0800 | [diff] [blame] | 471 | size_t table_sz; |
Suman Anna | 315491e | 2015-01-09 15:21:58 -0600 | [diff] [blame] | 472 | bool has_iommu; |
Bjorn Andersson | ddf7118 | 2016-08-11 14:52:50 -0700 | [diff] [blame] | 473 | bool auto_boot; |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 474 | struct list_head dump_segments; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 475 | }; |
| 476 | |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 477 | /** |
| 478 | * struct rproc_subdev - subdevice tied to a remoteproc |
| 479 | * @node: list node related to the rproc subdevs list |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 480 | * @prepare: prepare function, called before the rproc is started |
Bjorn Andersson | 618fcff | 2018-06-26 07:11:55 -0500 | [diff] [blame] | 481 | * @start: start function, called after the rproc has been started |
| 482 | * @stop: stop function, called before the rproc is stopped; the @crashed |
| 483 | * parameter indicates if this originates from a recovery |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 484 | * @unprepare: unprepare function, called after the rproc has been stopped |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 485 | */ |
| 486 | struct rproc_subdev { |
| 487 | struct list_head node; |
| 488 | |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 489 | int (*prepare)(struct rproc_subdev *subdev); |
Bjorn Andersson | 618fcff | 2018-06-26 07:11:55 -0500 | [diff] [blame] | 490 | int (*start)(struct rproc_subdev *subdev); |
| 491 | void (*stop)(struct rproc_subdev *subdev, bool crashed); |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 492 | void (*unprepare)(struct rproc_subdev *subdev); |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 493 | }; |
| 494 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 495 | /* we currently support only two vrings per rvdev */ |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 496 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 497 | #define RVDEV_NUM_VRINGS 2 |
| 498 | |
| 499 | /** |
| 500 | * struct rproc_vring - remoteproc vring state |
| 501 | * @va: virtual address |
| 502 | * @dma: dma address |
| 503 | * @len: length, in bytes |
| 504 | * @da: device address |
Ohad Ben-Cohen | 63140e0 | 2012-02-29 14:42:13 +0200 | [diff] [blame] | 505 | * @align: vring alignment |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 506 | * @notifyid: rproc-specific unique vring index |
| 507 | * @rvdev: remote vdev |
| 508 | * @vq: the virtqueue of this vring |
| 509 | */ |
| 510 | struct rproc_vring { |
| 511 | void *va; |
| 512 | dma_addr_t dma; |
| 513 | int len; |
| 514 | u32 da; |
Ohad Ben-Cohen | 63140e0 | 2012-02-29 14:42:13 +0200 | [diff] [blame] | 515 | u32 align; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 516 | int notifyid; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 517 | struct rproc_vdev *rvdev; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 518 | struct virtqueue *vq; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 519 | }; |
| 520 | |
| 521 | /** |
| 522 | * struct rproc_vdev - remoteproc state for a supported virtio device |
Bjorn Andersson | aab8d80 | 2016-10-19 19:40:06 -0700 | [diff] [blame] | 523 | * @refcount: reference counter for the vdev and vring allocations |
Bjorn Andersson | f5bcb35 | 2016-10-19 19:40:09 -0700 | [diff] [blame] | 524 | * @subdev: handle for registering the vdev as a rproc subdevice |
| 525 | * @id: virtio device id (as in virtio_ids.h) |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 526 | * @node: list node |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 527 | * @rproc: the rproc handle |
| 528 | * @vdev: the virio device |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 529 | * @vring: the vrings for this vdev |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 530 | * @rsc_offset: offset of the vdev's resource entry |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 531 | */ |
| 532 | struct rproc_vdev { |
Bjorn Andersson | aab8d80 | 2016-10-19 19:40:06 -0700 | [diff] [blame] | 533 | struct kref refcount; |
| 534 | |
Bjorn Andersson | f5bcb35 | 2016-10-19 19:40:09 -0700 | [diff] [blame] | 535 | struct rproc_subdev subdev; |
| 536 | |
| 537 | unsigned int id; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 538 | struct list_head node; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 539 | struct rproc *rproc; |
| 540 | struct virtio_device vdev; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 541 | struct rproc_vring vring[RVDEV_NUM_VRINGS]; |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 542 | u32 rsc_offset; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 543 | }; |
| 544 | |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 545 | struct rproc *rproc_get_by_phandle(phandle phandle); |
Bjorn Andersson | 7c89717 | 2017-08-27 22:34:53 -0700 | [diff] [blame] | 546 | struct rproc *rproc_get_by_child(struct device *dev); |
| 547 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 548 | struct rproc *rproc_alloc(struct device *dev, const char *name, |
Anna, Suman | 730f84c | 2016-08-12 18:42:20 -0500 | [diff] [blame] | 549 | const struct rproc_ops *ops, |
| 550 | const char *firmware, int len); |
Ohad Ben-Cohen | 160e7c8 | 2012-07-04 16:25:06 +0300 | [diff] [blame] | 551 | void rproc_put(struct rproc *rproc); |
| 552 | int rproc_add(struct rproc *rproc); |
| 553 | int rproc_del(struct rproc *rproc); |
Bjorn Andersson | 433c0e0 | 2016-10-02 17:46:38 -0700 | [diff] [blame] | 554 | void rproc_free(struct rproc *rproc); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 555 | |
| 556 | int rproc_boot(struct rproc *rproc); |
| 557 | void rproc_shutdown(struct rproc *rproc); |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 558 | void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type); |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 559 | int rproc_coredump_add_segment(struct rproc *rproc, dma_addr_t da, size_t size); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 560 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 561 | static inline struct rproc_vdev *vdev_to_rvdev(struct virtio_device *vdev) |
| 562 | { |
| 563 | return container_of(vdev, struct rproc_vdev, vdev); |
| 564 | } |
| 565 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 566 | static inline struct rproc *vdev_to_rproc(struct virtio_device *vdev) |
| 567 | { |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 568 | struct rproc_vdev *rvdev = vdev_to_rvdev(vdev); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 569 | |
| 570 | return rvdev->rproc; |
| 571 | } |
| 572 | |
Bjorn Andersson | 4902676 | 2018-06-26 07:11:57 -0500 | [diff] [blame] | 573 | void rproc_add_subdev(struct rproc *rproc, struct rproc_subdev *subdev); |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 574 | |
| 575 | void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev); |
| 576 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 577 | #endif /* REMOTEPROC_H */ |