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]; |
Gustavo A. R. Silva | 529798b | 2020-05-07 14:19:43 -0500 | [diff] [blame] | 76 | u32 offset[]; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 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; |
Gustavo A. R. Silva | 529798b | 2020-05-07 14:19:43 -0500 | [diff] [blame] | 90 | u8 data[]; |
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. |
Clement Leger | b1a1751 | 2019-06-17 14:57:30 +0200 | [diff] [blame] | 103 | * @RSC_LAST: just keep this one at the end of standard resources |
| 104 | * @RSC_VENDOR_START: start of the vendor specific resource types range |
| 105 | * @RSC_VENDOR_END: end of the vendor specific resource types range |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 106 | * |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 107 | * For more details regarding a specific resource type, please see its |
| 108 | * dedicated structure below. |
Ohad Ben-Cohen | e12bc14 | 2012-01-31 16:07:27 +0200 | [diff] [blame] | 109 | * |
| 110 | * Please note that these values are used as indices to the rproc_handle_rsc |
| 111 | * lookup table, so please keep them sane. Moreover, @RSC_LAST is used to |
| 112 | * check the validity of an index before the lookup table is accessed, so |
| 113 | * please update it as needed. |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 114 | */ |
| 115 | enum fw_resource_type { |
Clement Leger | b1a1751 | 2019-06-17 14:57:30 +0200 | [diff] [blame] | 116 | RSC_CARVEOUT = 0, |
| 117 | RSC_DEVMEM = 1, |
| 118 | RSC_TRACE = 2, |
| 119 | RSC_VDEV = 3, |
| 120 | RSC_LAST = 4, |
| 121 | RSC_VENDOR_START = 128, |
| 122 | RSC_VENDOR_END = 512, |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 123 | }; |
| 124 | |
Loic PALLARDY | cd58305 | 2016-09-06 09:39:42 +0200 | [diff] [blame] | 125 | #define FW_RSC_ADDR_ANY (-1) |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 126 | |
| 127 | /** |
| 128 | * struct fw_rsc_carveout - physically contiguous memory request |
| 129 | * @da: device address |
| 130 | * @pa: physical address |
| 131 | * @len: length (in bytes) |
| 132 | * @flags: iommu protection flags |
| 133 | * @reserved: reserved (must be zero) |
| 134 | * @name: human-readable name of the requested memory region |
| 135 | * |
| 136 | * This resource entry requests the host to allocate a physically contiguous |
| 137 | * memory region. |
| 138 | * |
| 139 | * These request entries should precede other firmware resource entries, |
| 140 | * as other entries might request placing other data objects inside |
| 141 | * these memory regions (e.g. data/code segments, trace resource entries, ...). |
| 142 | * |
| 143 | * Allocating memory this way helps utilizing the reserved physical memory |
| 144 | * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries |
| 145 | * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB |
| 146 | * pressure is important; it may have a substantial impact on performance. |
| 147 | * |
| 148 | * If the firmware is compiled with static addresses, then @da should specify |
| 149 | * the expected device address of this memory region. If @da is set to |
| 150 | * FW_RSC_ADDR_ANY, then the host will dynamically allocate it, and then |
| 151 | * overwrite @da with the dynamically allocated address. |
| 152 | * |
| 153 | * We will always use @da to negotiate the device addresses, even if it |
| 154 | * isn't using an iommu. In that case, though, it will obviously contain |
| 155 | * physical addresses. |
| 156 | * |
| 157 | * Some remote processors needs to know the allocated physical address |
| 158 | * even if they do use an iommu. This is needed, e.g., if they control |
| 159 | * hardware accelerators which access the physical memory directly (this |
| 160 | * is the case with OMAP4 for instance). In that case, the host will |
| 161 | * overwrite @pa with the dynamically allocated physical address. |
| 162 | * Generally we don't want to expose physical addresses if we don't have to |
| 163 | * (remote processors are generally _not_ trusted), so we might want to |
| 164 | * change this to happen _only_ when explicitly required by the hardware. |
| 165 | * |
| 166 | * @flags is used to provide IOMMU protection flags, and @name should |
| 167 | * (optionally) contain a human readable name of this carveout region |
| 168 | * (mainly for debugging purposes). |
| 169 | */ |
| 170 | struct fw_rsc_carveout { |
| 171 | u32 da; |
| 172 | u32 pa; |
| 173 | u32 len; |
| 174 | u32 flags; |
| 175 | u32 reserved; |
| 176 | u8 name[32]; |
| 177 | } __packed; |
| 178 | |
| 179 | /** |
| 180 | * struct fw_rsc_devmem - iommu mapping request |
| 181 | * @da: device address |
| 182 | * @pa: physical address |
| 183 | * @len: length (in bytes) |
| 184 | * @flags: iommu protection flags |
| 185 | * @reserved: reserved (must be zero) |
| 186 | * @name: human-readable name of the requested region to be mapped |
| 187 | * |
| 188 | * This resource entry requests the host to iommu map a physically contiguous |
| 189 | * memory region. This is needed in case the remote processor requires |
| 190 | * access to certain memory-based peripherals; _never_ use it to access |
| 191 | * regular memory. |
| 192 | * |
| 193 | * This is obviously only needed if the remote processor is accessing memory |
| 194 | * via an iommu. |
| 195 | * |
| 196 | * @da should specify the required device address, @pa should specify |
| 197 | * the physical address we want to map, @len should specify the size of |
| 198 | * the mapping and @flags is the IOMMU protection flags. As always, @name may |
| 199 | * (optionally) contain a human readable name of this mapping (mainly for |
| 200 | * debugging purposes). |
| 201 | * |
| 202 | * Note: at this point we just "trust" those devmem entries to contain valid |
| 203 | * physical addresses, but this isn't safe and will be changed: eventually we |
| 204 | * want remoteproc implementations to provide us ranges of physical addresses |
| 205 | * the firmware is allowed to request, and not allow firmwares to request |
| 206 | * access to physical addresses that are outside those ranges. |
| 207 | */ |
| 208 | struct fw_rsc_devmem { |
| 209 | u32 da; |
| 210 | u32 pa; |
| 211 | u32 len; |
| 212 | u32 flags; |
| 213 | u32 reserved; |
| 214 | u8 name[32]; |
| 215 | } __packed; |
| 216 | |
| 217 | /** |
| 218 | * struct fw_rsc_trace - trace buffer declaration |
| 219 | * @da: device address |
| 220 | * @len: length (in bytes) |
| 221 | * @reserved: reserved (must be zero) |
| 222 | * @name: human-readable name of the trace buffer |
| 223 | * |
| 224 | * This resource entry provides the host information about a trace buffer |
| 225 | * into which the remote processor will write log messages. |
| 226 | * |
| 227 | * @da specifies the device address of the buffer, @len specifies |
| 228 | * its size, and @name may contain a human readable name of the trace buffer. |
| 229 | * |
| 230 | * After booting the remote processor, the trace buffers are exposed to the |
| 231 | * user via debugfs entries (called trace0, trace1, etc..). |
| 232 | */ |
| 233 | struct fw_rsc_trace { |
| 234 | u32 da; |
| 235 | u32 len; |
| 236 | u32 reserved; |
| 237 | u8 name[32]; |
| 238 | } __packed; |
| 239 | |
| 240 | /** |
| 241 | * struct fw_rsc_vdev_vring - vring descriptor entry |
| 242 | * @da: device address |
| 243 | * @align: the alignment between the consumer and producer parts of the vring |
| 244 | * @num: num of buffers supported by this vring (must be power of two) |
| 245 | * @notifyid is a unique rproc-wide notify index for this vring. This notify |
| 246 | * index is used when kicking a remote processor, to let it know that this |
| 247 | * vring is triggered. |
Loic PALLARDY | 21b6657 | 2016-09-06 09:39:43 +0200 | [diff] [blame] | 248 | * @pa: physical address |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 249 | * |
| 250 | * This descriptor is not a resource entry by itself; it is part of the |
| 251 | * vdev resource type (see below). |
| 252 | * |
| 253 | * Note that @da should either contain the device address where |
| 254 | * the remote processor is expecting the vring, or indicate that |
| 255 | * dynamically allocation of the vring's device address is supported. |
| 256 | */ |
| 257 | struct fw_rsc_vdev_vring { |
| 258 | u32 da; |
| 259 | u32 align; |
| 260 | u32 num; |
| 261 | u32 notifyid; |
Loic PALLARDY | 21b6657 | 2016-09-06 09:39:43 +0200 | [diff] [blame] | 262 | u32 pa; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 263 | } __packed; |
| 264 | |
| 265 | /** |
| 266 | * struct fw_rsc_vdev - virtio device header |
| 267 | * @id: virtio device id (as in virtio_ids.h) |
| 268 | * @notifyid is a unique rproc-wide notify index for this vdev. This notify |
| 269 | * index is used when kicking a remote processor, to let it know that the |
| 270 | * status/features of this vdev have changes. |
| 271 | * @dfeatures specifies the virtio device features supported by the firmware |
| 272 | * @gfeatures is a place holder used by the host to write back the |
| 273 | * negotiated features that are supported by both sides. |
| 274 | * @config_len is the size of the virtio config space of this vdev. The config |
| 275 | * space lies in the resource table immediate after this vdev header. |
| 276 | * @status is a place holder where the host will indicate its virtio progress. |
| 277 | * @num_of_vrings indicates how many vrings are described in this vdev header |
| 278 | * @reserved: reserved (must be zero) |
| 279 | * @vring is an array of @num_of_vrings entries of 'struct fw_rsc_vdev_vring'. |
| 280 | * |
| 281 | * This resource is a virtio device header: it provides information about |
| 282 | * the vdev, and is then used by the host and its peer remote processors |
| 283 | * to negotiate and share certain virtio properties. |
| 284 | * |
| 285 | * By providing this resource entry, the firmware essentially asks remoteproc |
| 286 | * to statically allocate a vdev upon registration of the rproc (dynamic vdev |
| 287 | * allocation is not yet supported). |
| 288 | * |
| 289 | * Note: unlike virtualization systems, the term 'host' here means |
| 290 | * the Linux side which is running remoteproc to control the remote |
| 291 | * processors. We use the name 'gfeatures' to comply with virtio's terms, |
| 292 | * though there isn't really any virtualized guest OS here: it's the host |
| 293 | * which is responsible for negotiating the final features. |
| 294 | * Yeah, it's a bit confusing. |
| 295 | * |
| 296 | * Note: immediately following this structure is the virtio config space for |
| 297 | * this vdev (which is specific to the vdev; for more info, read the virtio |
| 298 | * spec). the size of the config space is specified by @config_len. |
| 299 | */ |
| 300 | struct fw_rsc_vdev { |
| 301 | u32 id; |
| 302 | u32 notifyid; |
| 303 | u32 dfeatures; |
| 304 | u32 gfeatures; |
| 305 | u32 config_len; |
| 306 | u8 status; |
| 307 | u8 num_of_vrings; |
| 308 | u8 reserved[2]; |
Gustavo A. R. Silva | 529798b | 2020-05-07 14:19:43 -0500 | [diff] [blame] | 309 | struct fw_rsc_vdev_vring vring[]; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 310 | } __packed; |
| 311 | |
Loic Pallardy | f2e74ab | 2018-07-27 15:14:38 +0200 | [diff] [blame] | 312 | struct rproc; |
| 313 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 314 | /** |
| 315 | * struct rproc_mem_entry - memory entry descriptor |
| 316 | * @va: virtual address |
| 317 | * @dma: dma address |
| 318 | * @len: length, in bytes |
| 319 | * @da: device address |
Loic Pallardy | f2e74ab | 2018-07-27 15:14:38 +0200 | [diff] [blame] | 320 | * @release: release associated memory |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 321 | * @priv: associated data |
Loic Pallardy | 3265230 | 2018-07-27 15:14:39 +0200 | [diff] [blame] | 322 | * @name: associated memory region name (optional) |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 323 | * @node: list node |
Loic Pallardy | d7c5170 | 2018-07-27 15:14:43 +0200 | [diff] [blame] | 324 | * @rsc_offset: offset in resource table |
| 325 | * @flags: iommu protection flags |
Loic Pallardy | 1429cca | 2018-07-27 15:14:44 +0200 | [diff] [blame] | 326 | * @of_resm_idx: reserved memory phandle index |
Loic Pallardy | d7c5170 | 2018-07-27 15:14:43 +0200 | [diff] [blame] | 327 | * @alloc: specific memory allocator function |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 328 | */ |
| 329 | struct rproc_mem_entry { |
| 330 | void *va; |
| 331 | dma_addr_t dma; |
Clement Leger | 096ee78 | 2020-03-02 10:38:56 +0100 | [diff] [blame] | 332 | size_t len; |
Ohad Ben-Cohen | fd2c15e | 2012-02-01 21:56:16 +0200 | [diff] [blame] | 333 | u32 da; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 334 | void *priv; |
Loic Pallardy | 3265230 | 2018-07-27 15:14:39 +0200 | [diff] [blame] | 335 | char name[32]; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 336 | struct list_head node; |
Loic Pallardy | d7c5170 | 2018-07-27 15:14:43 +0200 | [diff] [blame] | 337 | u32 rsc_offset; |
| 338 | u32 flags; |
Loic Pallardy | 1429cca | 2018-07-27 15:14:44 +0200 | [diff] [blame] | 339 | u32 of_resm_idx; |
Loic Pallardy | d7c5170 | 2018-07-27 15:14:43 +0200 | [diff] [blame] | 340 | int (*alloc)(struct rproc *rproc, struct rproc_mem_entry *mem); |
Loic Pallardy | f2e74ab | 2018-07-27 15:14:38 +0200 | [diff] [blame] | 341 | int (*release)(struct rproc *rproc, struct rproc_mem_entry *mem); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 342 | }; |
| 343 | |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 344 | struct firmware; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 345 | |
| 346 | /** |
Clement Leger | b1a1751 | 2019-06-17 14:57:30 +0200 | [diff] [blame] | 347 | * enum rsc_handling_status - return status of rproc_ops handle_rsc hook |
| 348 | * @RSC_HANDLED: resource was handled |
| 349 | * @RSC_IGNORED: resource was ignored |
| 350 | */ |
| 351 | enum rsc_handling_status { |
| 352 | RSC_HANDLED = 0, |
| 353 | RSC_IGNORED = 1, |
| 354 | }; |
| 355 | |
| 356 | /** |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 357 | * struct rproc_ops - platform-specific device handlers |
Loic Pallardy | 33467ac | 2020-04-16 19:20:35 -0500 | [diff] [blame] | 358 | * @prepare: prepare device for code loading |
| 359 | * @unprepare: unprepare device after stop |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 360 | * @start: power on the device and boot it |
| 361 | * @stop: power off the device |
Mathieu Poirier | a6a4f28 | 2020-07-14 13:50:28 -0600 | [diff] [blame] | 362 | * @attach: attach to a device that his already powered up |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 363 | * @kick: kick a virtqueue (virtqueue id given as a parameter) |
Suman Anna | a01f7cd | 2015-05-22 15:45:28 -0500 | [diff] [blame] | 364 | * @da_to_va: optional platform hook to perform address translations |
Fabien Dessenne | ebc40be | 2018-11-07 11:18:34 +0100 | [diff] [blame] | 365 | * @parse_fw: parse firmware to extract information (e.g. resource table) |
Clement Leger | b1a1751 | 2019-06-17 14:57:30 +0200 | [diff] [blame] | 366 | * @handle_rsc: optional platform hook to handle vendor resources. Should return |
| 367 | * RSC_HANDLED if resource was handled, RSC_IGNORED if not handled and a |
| 368 | * negative value on error |
| 369 | * @load_rsc_table: load resource table from firmware image |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 370 | * @find_loaded_rsc_table: find the loaded resouce table |
Fabien Dessenne | ebc40be | 2018-11-07 11:18:34 +0100 | [diff] [blame] | 371 | * @load: load firmware to memory, where the remote processor |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 372 | * expects to find it |
| 373 | * @sanity_check: sanity check the fw image |
| 374 | * @get_boot_addr: get boot address to entry point specified in firmware |
Bjorn Andersson | dc5192c | 2020-03-23 22:29:02 -0700 | [diff] [blame] | 375 | * @panic: optional callback to react to system panic, core will delay |
| 376 | * panic at least the returned number of milliseconds |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 377 | */ |
| 378 | struct rproc_ops { |
Loic Pallardy | 33467ac | 2020-04-16 19:20:35 -0500 | [diff] [blame] | 379 | int (*prepare)(struct rproc *rproc); |
| 380 | int (*unprepare)(struct rproc *rproc); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 381 | int (*start)(struct rproc *rproc); |
| 382 | int (*stop)(struct rproc *rproc); |
Mathieu Poirier | a6a4f28 | 2020-07-14 13:50:28 -0600 | [diff] [blame] | 383 | int (*attach)(struct rproc *rproc); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 384 | void (*kick)(struct rproc *rproc, int vqid); |
Clement Leger | 9ce3bf2 | 2020-03-02 10:38:55 +0100 | [diff] [blame] | 385 | void * (*da_to_va)(struct rproc *rproc, u64 da, size_t len); |
Bjorn Andersson | c1d35c1 | 2018-01-05 16:04:18 -0800 | [diff] [blame] | 386 | int (*parse_fw)(struct rproc *rproc, const struct firmware *fw); |
Clement Leger | b1a1751 | 2019-06-17 14:57:30 +0200 | [diff] [blame] | 387 | int (*handle_rsc)(struct rproc *rproc, u32 rsc_type, void *rsc, |
| 388 | int offset, int avail); |
Bjorn Andersson | 0f21f9c | 2018-01-05 15:58:01 -0800 | [diff] [blame] | 389 | struct resource_table *(*find_loaded_rsc_table)( |
| 390 | struct rproc *rproc, const struct firmware *fw); |
| 391 | int (*load)(struct rproc *rproc, const struct firmware *fw); |
| 392 | int (*sanity_check)(struct rproc *rproc, const struct firmware *fw); |
Clement Leger | e4ae4b7 | 2020-03-02 10:38:57 +0100 | [diff] [blame] | 393 | u64 (*get_boot_addr)(struct rproc *rproc, const struct firmware *fw); |
Bjorn Andersson | dc5192c | 2020-03-23 22:29:02 -0700 | [diff] [blame] | 394 | unsigned long (*panic)(struct rproc *rproc); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 395 | }; |
| 396 | |
| 397 | /** |
| 398 | * enum rproc_state - remote processor states |
| 399 | * @RPROC_OFFLINE: device is powered off |
| 400 | * @RPROC_SUSPENDED: device is suspended; needs to be woken up to receive |
| 401 | * a message. |
| 402 | * @RPROC_RUNNING: device is up and running |
| 403 | * @RPROC_CRASHED: device has crashed; need to start recovery |
Sarangdhar Joshi | 608d792 | 2017-01-23 17:53:18 -0800 | [diff] [blame] | 404 | * @RPROC_DELETED: device is deleted |
Mathieu Poirier | e2e5c55 | 2020-07-14 13:50:27 -0600 | [diff] [blame] | 405 | * @RPROC_DETACHED: device has been booted by another entity and waiting |
| 406 | * for the core to attach to it |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 407 | * @RPROC_LAST: just keep this one at the end |
| 408 | * |
| 409 | * Please note that the values of these states are used as indices |
| 410 | * to rproc_state_string, a state-to-name lookup table, |
| 411 | * so please keep the two synchronized. @RPROC_LAST is used to check |
| 412 | * the validity of an index before the lookup table is accessed, so |
| 413 | * please update it as needed too. |
| 414 | */ |
| 415 | enum rproc_state { |
| 416 | RPROC_OFFLINE = 0, |
| 417 | RPROC_SUSPENDED = 1, |
| 418 | RPROC_RUNNING = 2, |
| 419 | RPROC_CRASHED = 3, |
Sarangdhar Joshi | 608d792 | 2017-01-23 17:53:18 -0800 | [diff] [blame] | 420 | RPROC_DELETED = 4, |
Mathieu Poirier | e2e5c55 | 2020-07-14 13:50:27 -0600 | [diff] [blame] | 421 | RPROC_DETACHED = 5, |
| 422 | RPROC_LAST = 6, |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 423 | }; |
| 424 | |
| 425 | /** |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 426 | * enum rproc_crash_type - remote processor crash types |
| 427 | * @RPROC_MMUFAULT: iommu fault |
Bjorn Andersson | b3d3903 | 2016-03-28 20:36:59 -0700 | [diff] [blame] | 428 | * @RPROC_WATCHDOG: watchdog bite |
| 429 | * @RPROC_FATAL_ERROR fatal error |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 430 | * |
| 431 | * Each element of the enum is used as an array index. So that, the value of |
| 432 | * the elements should be always something sane. |
| 433 | * |
| 434 | * Feel free to add more types when needed. |
| 435 | */ |
| 436 | enum rproc_crash_type { |
| 437 | RPROC_MMUFAULT, |
Bjorn Andersson | b3d3903 | 2016-03-28 20:36:59 -0700 | [diff] [blame] | 438 | RPROC_WATCHDOG, |
| 439 | RPROC_FATAL_ERROR, |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 440 | }; |
| 441 | |
| 442 | /** |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 443 | * struct rproc_dump_segment - segment info from ELF header |
| 444 | * @node: list node related to the rproc segment list |
| 445 | * @da: device address of the segment |
| 446 | * @size: size of the segment |
Sibi Sankar | 3952105 | 2018-10-17 19:25:23 +0530 | [diff] [blame] | 447 | * @priv: private data associated with the dump_segment |
| 448 | * @dump: custom dump function to fill device memory segment associated |
| 449 | * with coredump |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 450 | */ |
| 451 | struct rproc_dump_segment { |
| 452 | struct list_head node; |
| 453 | |
| 454 | dma_addr_t da; |
| 455 | size_t size; |
| 456 | |
Sibi Sankar | 3952105 | 2018-10-17 19:25:23 +0530 | [diff] [blame] | 457 | void *priv; |
| 458 | void (*dump)(struct rproc *rproc, struct rproc_dump_segment *segment, |
Rishabh Bhatnagar | 76abf9c | 2020-07-16 15:20:33 -0700 | [diff] [blame^] | 459 | void *dest, size_t offset, size_t size); |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 460 | loff_t offset; |
| 461 | }; |
| 462 | |
| 463 | /** |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 464 | * struct rproc - represents a physical remote processor device |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 465 | * @node: list node of this rproc object |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 466 | * @domain: iommu domain |
| 467 | * @name: human readable name of the rproc |
| 468 | * @firmware: name of firmware file to be loaded |
| 469 | * @priv: private data which belongs to the platform-specific rproc module |
| 470 | * @ops: platform-specific start/stop rproc handlers |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 471 | * @dev: virtual device for refcounting and common remoteproc behavior |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 472 | * @power: refcount of users who need this rproc powered up |
| 473 | * @state: state of the device |
| 474 | * @lock: lock which protects concurrent manipulations of the rproc |
| 475 | * @dbg_dir: debugfs directory of this rproc device |
| 476 | * @traces: list of trace buffers |
| 477 | * @num_traces: number of trace buffers |
| 478 | * @carveouts: list of physically contiguous memory allocations |
| 479 | * @mappings: list of iommu mappings we initiated, needed on shutdown |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 480 | * @bootaddr: address of first instruction to boot rproc with (optional) |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 481 | * @rvdevs: list of remote virtio devices |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 482 | * @subdevs: list of subdevices, to following the running state |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 483 | * @notifyids: idr for dynamically assigning rproc-wide unique notify ids |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 484 | * @index: index of this rproc device |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 485 | * @crash_handler: workqueue for handling a crash |
| 486 | * @crash_cnt: crash counter |
Fernando Guzman Lugo | 2e37abb | 2012-09-18 12:26:35 +0300 | [diff] [blame] | 487 | * @recovery_disabled: flag that state if recovery was disabled |
Sjur Brændeland | 099a3f3 | 2012-09-18 20:32:45 +0200 | [diff] [blame] | 488 | * @max_notifyid: largest allocated notify id. |
Bjorn Andersson | a0c1068 | 2016-12-30 03:21:38 -0800 | [diff] [blame] | 489 | * @table_ptr: pointer to the resource table in effect |
| 490 | * @cached_table: copy of the resource table |
Bjorn Andersson | a4b24c7 | 2018-01-05 15:57:59 -0800 | [diff] [blame] | 491 | * @table_sz: size of @cached_table |
Suman Anna | 315491e | 2015-01-09 15:21:58 -0600 | [diff] [blame] | 492 | * @has_iommu: flag to indicate if remote processor is behind an MMU |
Suman Anna | 1bb8989 | 2018-09-14 19:37:23 -0500 | [diff] [blame] | 493 | * @auto_boot: flag to indicate if remote processor should be auto-started |
Mathieu Poirier | 4a4dca1 | 2020-07-14 13:50:35 -0600 | [diff] [blame] | 494 | * @autonomous: true if an external entity has booted the remote processor |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 495 | * @dump_segments: list of segments in the firmware |
Loic Pallardy | c6aed238 | 2018-07-27 15:14:47 +0200 | [diff] [blame] | 496 | * @nb_vdev: number of vdev currently handled by rproc |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 497 | */ |
| 498 | struct rproc { |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 499 | struct list_head node; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 500 | struct iommu_domain *domain; |
| 501 | const char *name; |
Mathieu Poirier | 1487ded | 2020-04-20 17:15:58 -0600 | [diff] [blame] | 502 | const char *firmware; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 503 | void *priv; |
Bjorn Andersson | fb98e2b | 2018-01-05 15:58:00 -0800 | [diff] [blame] | 504 | struct rproc_ops *ops; |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 505 | struct device dev; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 506 | atomic_t power; |
| 507 | unsigned int state; |
| 508 | struct mutex lock; |
| 509 | struct dentry *dbg_dir; |
| 510 | struct list_head traces; |
| 511 | int num_traces; |
| 512 | struct list_head carveouts; |
| 513 | struct list_head mappings; |
Clement Leger | e4ae4b7 | 2020-03-02 10:38:57 +0100 | [diff] [blame] | 514 | u64 bootaddr; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 515 | struct list_head rvdevs; |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 516 | struct list_head subdevs; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 517 | struct idr notifyids; |
Ohad Ben-Cohen | b5ab5e2 | 2012-05-30 22:01:25 +0300 | [diff] [blame] | 518 | int index; |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 519 | struct work_struct crash_handler; |
Anna, Suman | f145928 | 2016-08-12 18:42:19 -0500 | [diff] [blame] | 520 | unsigned int crash_cnt; |
Fernando Guzman Lugo | 2e37abb | 2012-09-18 12:26:35 +0300 | [diff] [blame] | 521 | bool recovery_disabled; |
Sjur Brændeland | 099a3f3 | 2012-09-18 20:32:45 +0200 | [diff] [blame] | 522 | int max_notifyid; |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 523 | struct resource_table *table_ptr; |
Bjorn Andersson | a0c1068 | 2016-12-30 03:21:38 -0800 | [diff] [blame] | 524 | struct resource_table *cached_table; |
Bjorn Andersson | a4b24c7 | 2018-01-05 15:57:59 -0800 | [diff] [blame] | 525 | size_t table_sz; |
Suman Anna | 315491e | 2015-01-09 15:21:58 -0600 | [diff] [blame] | 526 | bool has_iommu; |
Bjorn Andersson | ddf7118 | 2016-08-11 14:52:50 -0700 | [diff] [blame] | 527 | bool auto_boot; |
Mathieu Poirier | 4a4dca1 | 2020-07-14 13:50:35 -0600 | [diff] [blame] | 528 | bool autonomous; |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 529 | struct list_head dump_segments; |
Loic Pallardy | c6aed238 | 2018-07-27 15:14:47 +0200 | [diff] [blame] | 530 | int nb_vdev; |
Clement Leger | 8f40335 | 2020-03-02 10:39:02 +0100 | [diff] [blame] | 531 | u8 elf_class; |
Clement Leger | 418fd78 | 2020-04-10 12:24:32 +0200 | [diff] [blame] | 532 | u16 elf_machine; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 533 | }; |
| 534 | |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 535 | /** |
| 536 | * struct rproc_subdev - subdevice tied to a remoteproc |
| 537 | * @node: list node related to the rproc subdevs list |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 538 | * @prepare: prepare function, called before the rproc is started |
Bjorn Andersson | 618fcff | 2018-06-26 07:11:55 -0500 | [diff] [blame] | 539 | * @start: start function, called after the rproc has been started |
| 540 | * @stop: stop function, called before the rproc is stopped; the @crashed |
| 541 | * parameter indicates if this originates from a recovery |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 542 | * @unprepare: unprepare function, called after the rproc has been stopped |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 543 | */ |
| 544 | struct rproc_subdev { |
| 545 | struct list_head node; |
| 546 | |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 547 | int (*prepare)(struct rproc_subdev *subdev); |
Bjorn Andersson | 618fcff | 2018-06-26 07:11:55 -0500 | [diff] [blame] | 548 | int (*start)(struct rproc_subdev *subdev); |
| 549 | void (*stop)(struct rproc_subdev *subdev, bool crashed); |
Bjorn Andersson | c455daa | 2018-06-26 07:11:59 -0500 | [diff] [blame] | 550 | void (*unprepare)(struct rproc_subdev *subdev); |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 551 | }; |
| 552 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 553 | /* we currently support only two vrings per rvdev */ |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 554 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 555 | #define RVDEV_NUM_VRINGS 2 |
| 556 | |
| 557 | /** |
| 558 | * struct rproc_vring - remoteproc vring state |
| 559 | * @va: virtual address |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 560 | * @len: length, in bytes |
| 561 | * @da: device address |
Ohad Ben-Cohen | 63140e0 | 2012-02-29 14:42:13 +0200 | [diff] [blame] | 562 | * @align: vring alignment |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 563 | * @notifyid: rproc-specific unique vring index |
| 564 | * @rvdev: remote vdev |
| 565 | * @vq: the virtqueue of this vring |
| 566 | */ |
| 567 | struct rproc_vring { |
| 568 | void *va; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 569 | int len; |
| 570 | u32 da; |
Ohad Ben-Cohen | 63140e0 | 2012-02-29 14:42:13 +0200 | [diff] [blame] | 571 | u32 align; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 572 | int notifyid; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 573 | struct rproc_vdev *rvdev; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 574 | struct virtqueue *vq; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 575 | }; |
| 576 | |
| 577 | /** |
| 578 | * struct rproc_vdev - remoteproc state for a supported virtio device |
Bjorn Andersson | aab8d80 | 2016-10-19 19:40:06 -0700 | [diff] [blame] | 579 | * @refcount: reference counter for the vdev and vring allocations |
Bjorn Andersson | f5bcb35 | 2016-10-19 19:40:09 -0700 | [diff] [blame] | 580 | * @subdev: handle for registering the vdev as a rproc subdevice |
| 581 | * @id: virtio device id (as in virtio_ids.h) |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 582 | * @node: list node |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 583 | * @rproc: the rproc handle |
| 584 | * @vdev: the virio device |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 585 | * @vring: the vrings for this vdev |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 586 | * @rsc_offset: offset of the vdev's resource entry |
Loic Pallardy | c6aed238 | 2018-07-27 15:14:47 +0200 | [diff] [blame] | 587 | * @index: vdev position versus other vdev declared in resource table |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 588 | */ |
| 589 | struct rproc_vdev { |
Bjorn Andersson | aab8d80 | 2016-10-19 19:40:06 -0700 | [diff] [blame] | 590 | struct kref refcount; |
| 591 | |
Bjorn Andersson | f5bcb35 | 2016-10-19 19:40:09 -0700 | [diff] [blame] | 592 | struct rproc_subdev subdev; |
Loic Pallardy | 086d087 | 2019-01-10 14:50:49 +0100 | [diff] [blame] | 593 | struct device dev; |
Bjorn Andersson | f5bcb35 | 2016-10-19 19:40:09 -0700 | [diff] [blame] | 594 | |
| 595 | unsigned int id; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 596 | struct list_head node; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 597 | struct rproc *rproc; |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 598 | struct rproc_vring vring[RVDEV_NUM_VRINGS]; |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 599 | u32 rsc_offset; |
Loic Pallardy | c6aed238 | 2018-07-27 15:14:47 +0200 | [diff] [blame] | 600 | u32 index; |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 601 | }; |
| 602 | |
Dave Gerlach | fec47d8 | 2015-05-22 15:45:27 -0500 | [diff] [blame] | 603 | struct rproc *rproc_get_by_phandle(phandle phandle); |
Bjorn Andersson | 7c89717 | 2017-08-27 22:34:53 -0700 | [diff] [blame] | 604 | struct rproc *rproc_get_by_child(struct device *dev); |
| 605 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 606 | struct rproc *rproc_alloc(struct device *dev, const char *name, |
Anna, Suman | 730f84c | 2016-08-12 18:42:20 -0500 | [diff] [blame] | 607 | const struct rproc_ops *ops, |
| 608 | const char *firmware, int len); |
Ohad Ben-Cohen | 160e7c8 | 2012-07-04 16:25:06 +0300 | [diff] [blame] | 609 | void rproc_put(struct rproc *rproc); |
| 610 | int rproc_add(struct rproc *rproc); |
| 611 | int rproc_del(struct rproc *rproc); |
Bjorn Andersson | 433c0e0 | 2016-10-02 17:46:38 -0700 | [diff] [blame] | 612 | void rproc_free(struct rproc *rproc); |
Mathieu Poirier | d9473cb | 2020-07-14 14:04:41 -0600 | [diff] [blame] | 613 | void rproc_resource_cleanup(struct rproc *rproc); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 614 | |
Paul Cercueil | 305ac5a | 2020-04-17 19:00:37 +0200 | [diff] [blame] | 615 | struct rproc *devm_rproc_alloc(struct device *dev, const char *name, |
| 616 | const struct rproc_ops *ops, |
| 617 | const char *firmware, int len); |
| 618 | int devm_rproc_add(struct device *dev, struct rproc *rproc); |
| 619 | |
Loic Pallardy | 15c0b02 | 2018-07-27 15:14:41 +0200 | [diff] [blame] | 620 | void rproc_add_carveout(struct rproc *rproc, struct rproc_mem_entry *mem); |
| 621 | |
Loic Pallardy | 72029c9 | 2018-07-27 15:14:40 +0200 | [diff] [blame] | 622 | struct rproc_mem_entry * |
| 623 | rproc_mem_entry_init(struct device *dev, |
Clement Leger | 096ee78 | 2020-03-02 10:38:56 +0100 | [diff] [blame] | 624 | void *va, dma_addr_t dma, size_t len, u32 da, |
Loic Pallardy | d7c5170 | 2018-07-27 15:14:43 +0200 | [diff] [blame] | 625 | int (*alloc)(struct rproc *, struct rproc_mem_entry *), |
Loic Pallardy | 72029c9 | 2018-07-27 15:14:40 +0200 | [diff] [blame] | 626 | int (*release)(struct rproc *, struct rproc_mem_entry *), |
| 627 | const char *name, ...); |
| 628 | |
Loic Pallardy | 1429cca | 2018-07-27 15:14:44 +0200 | [diff] [blame] | 629 | struct rproc_mem_entry * |
Clement Leger | 096ee78 | 2020-03-02 10:38:56 +0100 | [diff] [blame] | 630 | rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, size_t len, |
Loic Pallardy | 1429cca | 2018-07-27 15:14:44 +0200 | [diff] [blame] | 631 | u32 da, const char *name, ...); |
| 632 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 633 | int rproc_boot(struct rproc *rproc); |
| 634 | void rproc_shutdown(struct rproc *rproc); |
Fernando Guzman Lugo | 8afd519 | 2012-08-30 13:26:12 -0500 | [diff] [blame] | 635 | void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type); |
Sarangdhar Joshi | 2666ca9 | 2018-01-05 16:04:17 -0800 | [diff] [blame] | 636 | int rproc_coredump_add_segment(struct rproc *rproc, dma_addr_t da, size_t size); |
Sibi Sankar | ab8f873 | 2018-10-17 19:25:24 +0530 | [diff] [blame] | 637 | int rproc_coredump_add_custom_segment(struct rproc *rproc, |
| 638 | dma_addr_t da, size_t size, |
| 639 | void (*dumpfn)(struct rproc *rproc, |
| 640 | struct rproc_dump_segment *segment, |
Rishabh Bhatnagar | 76abf9c | 2020-07-16 15:20:33 -0700 | [diff] [blame^] | 641 | void *dest, size_t offset, |
| 642 | size_t size), |
Sibi Sankar | ab8f873 | 2018-10-17 19:25:24 +0530 | [diff] [blame] | 643 | void *priv); |
Clement Leger | 418fd78 | 2020-04-10 12:24:32 +0200 | [diff] [blame] | 644 | int rproc_coredump_set_elf_info(struct rproc *rproc, u8 class, u16 machine); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 645 | |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 646 | static inline struct rproc_vdev *vdev_to_rvdev(struct virtio_device *vdev) |
| 647 | { |
Loic Pallardy | d4c036f | 2019-01-21 14:55:15 +0100 | [diff] [blame] | 648 | return container_of(vdev->dev.parent, struct rproc_vdev, dev); |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 651 | static inline struct rproc *vdev_to_rproc(struct virtio_device *vdev) |
| 652 | { |
Ohad Ben-Cohen | 7a18694 | 2012-02-13 22:30:39 +0100 | [diff] [blame] | 653 | struct rproc_vdev *rvdev = vdev_to_rvdev(vdev); |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 654 | |
| 655 | return rvdev->rproc; |
| 656 | } |
| 657 | |
Bjorn Andersson | 4902676 | 2018-06-26 07:11:57 -0500 | [diff] [blame] | 658 | void rproc_add_subdev(struct rproc *rproc, struct rproc_subdev *subdev); |
Bjorn Andersson | 7bdc965 | 2016-10-19 19:40:02 -0700 | [diff] [blame] | 659 | |
| 660 | void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev); |
| 661 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 662 | #endif /* REMOTEPROC_H */ |