Input: ts4800-ts - switch to using polled mode of input devices
[linux-2.6-block.git] / include / linux / remoteproc.h
CommitLineData
400e64df
OBC
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>
400e64df
OBC
39#include <linux/mutex.h>
40#include <linux/virtio.h>
41#include <linux/completion.h>
7a186941 42#include <linux/idr.h>
fec47d86 43#include <linux/of.h>
400e64df 44
400e64df 45/**
fd2c15ec
OBC
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
400e64df 51 *
fd2c15ec
OBC
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.
400e64df
OBC
56 *
57 * Some resources entries are mere announcements, where the host is informed
58 * of specific remoteproc configuration. Other entries require the host to
fd2c15ec
OBC
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).
63 *
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).
71 */
72struct 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.
400e64df 87 */
fd2c15ec 88struct fw_rsc_hdr {
400e64df 89 u32 type;
fd2c15ec 90 u8 data[0];
400e64df
OBC
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
fd2c15ec
OBC
100 * the remote processor will be writing logs.
101 * @RSC_VDEV: declare support for a virtio device, and serve as its
102 * virtio header.
b1a17513
CL
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
400e64df 106 *
fd2c15ec
OBC
107 * For more details regarding a specific resource type, please see its
108 * dedicated structure below.
e12bc14b
OBC
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.
400e64df
OBC
114 */
115enum fw_resource_type {
b1a17513
CL
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,
400e64df
OBC
123};
124
cd583051 125#define FW_RSC_ADDR_ANY (-1)
fd2c15ec
OBC
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 */
170struct 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 */
208struct 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 */
233struct 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.
21b6657e 248 * @pa: physical address
fd2c15ec
OBC
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 */
257struct fw_rsc_vdev_vring {
258 u32 da;
259 u32 align;
260 u32 num;
261 u32 notifyid;
21b6657e 262 u32 pa;
fd2c15ec
OBC
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 */
300struct 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];
309 struct fw_rsc_vdev_vring vring[0];
310} __packed;
311
f2e74abf
LP
312struct rproc;
313
400e64df
OBC
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
f2e74abf 320 * @release: release associated memory
400e64df 321 * @priv: associated data
3265230c 322 * @name: associated memory region name (optional)
400e64df 323 * @node: list node
d7c51706
LP
324 * @rsc_offset: offset in resource table
325 * @flags: iommu protection flags
1429cca1 326 * @of_resm_idx: reserved memory phandle index
d7c51706 327 * @alloc: specific memory allocator function
400e64df
OBC
328 */
329struct rproc_mem_entry {
330 void *va;
331 dma_addr_t dma;
332 int len;
fd2c15ec 333 u32 da;
400e64df 334 void *priv;
3265230c 335 char name[32];
400e64df 336 struct list_head node;
d7c51706
LP
337 u32 rsc_offset;
338 u32 flags;
1429cca1 339 u32 of_resm_idx;
d7c51706 340 int (*alloc)(struct rproc *rproc, struct rproc_mem_entry *mem);
f2e74abf 341 int (*release)(struct rproc *rproc, struct rproc_mem_entry *mem);
400e64df
OBC
342};
343
0f21f9cc 344struct firmware;
400e64df 345
b1a17513
CL
346/**
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 */
351enum rsc_handling_status {
352 RSC_HANDLED = 0,
353 RSC_IGNORED = 1,
354};
355
400e64df
OBC
356/**
357 * struct rproc_ops - platform-specific device handlers
358 * @start: power on the device and boot it
359 * @stop: power off the device
360 * @kick: kick a virtqueue (virtqueue id given as a parameter)
a01f7cd6 361 * @da_to_va: optional platform hook to perform address translations
ebc40be2 362 * @parse_fw: parse firmware to extract information (e.g. resource table)
b1a17513
CL
363 * @handle_rsc: optional platform hook to handle vendor resources. Should return
364 * RSC_HANDLED if resource was handled, RSC_IGNORED if not handled and a
365 * negative value on error
366 * @load_rsc_table: load resource table from firmware image
0f21f9cc 367 * @find_loaded_rsc_table: find the loaded resouce table
ebc40be2 368 * @load: load firmware to memory, where the remote processor
0f21f9cc
BA
369 * expects to find it
370 * @sanity_check: sanity check the fw image
371 * @get_boot_addr: get boot address to entry point specified in firmware
400e64df
OBC
372 */
373struct rproc_ops {
374 int (*start)(struct rproc *rproc);
375 int (*stop)(struct rproc *rproc);
376 void (*kick)(struct rproc *rproc, int vqid);
a01f7cd6 377 void * (*da_to_va)(struct rproc *rproc, u64 da, int len);
c1d35c1a 378 int (*parse_fw)(struct rproc *rproc, const struct firmware *fw);
b1a17513
CL
379 int (*handle_rsc)(struct rproc *rproc, u32 rsc_type, void *rsc,
380 int offset, int avail);
0f21f9cc
BA
381 struct resource_table *(*find_loaded_rsc_table)(
382 struct rproc *rproc, const struct firmware *fw);
383 int (*load)(struct rproc *rproc, const struct firmware *fw);
384 int (*sanity_check)(struct rproc *rproc, const struct firmware *fw);
385 u32 (*get_boot_addr)(struct rproc *rproc, const struct firmware *fw);
400e64df
OBC
386};
387
388/**
389 * enum rproc_state - remote processor states
390 * @RPROC_OFFLINE: device is powered off
391 * @RPROC_SUSPENDED: device is suspended; needs to be woken up to receive
392 * a message.
393 * @RPROC_RUNNING: device is up and running
394 * @RPROC_CRASHED: device has crashed; need to start recovery
608d7921 395 * @RPROC_DELETED: device is deleted
400e64df
OBC
396 * @RPROC_LAST: just keep this one at the end
397 *
398 * Please note that the values of these states are used as indices
399 * to rproc_state_string, a state-to-name lookup table,
400 * so please keep the two synchronized. @RPROC_LAST is used to check
401 * the validity of an index before the lookup table is accessed, so
402 * please update it as needed too.
403 */
404enum rproc_state {
405 RPROC_OFFLINE = 0,
406 RPROC_SUSPENDED = 1,
407 RPROC_RUNNING = 2,
408 RPROC_CRASHED = 3,
608d7921
SJ
409 RPROC_DELETED = 4,
410 RPROC_LAST = 5,
400e64df
OBC
411};
412
8afd519c
FGL
413/**
414 * enum rproc_crash_type - remote processor crash types
415 * @RPROC_MMUFAULT: iommu fault
b3d39032
BA
416 * @RPROC_WATCHDOG: watchdog bite
417 * @RPROC_FATAL_ERROR fatal error
8afd519c
FGL
418 *
419 * Each element of the enum is used as an array index. So that, the value of
420 * the elements should be always something sane.
421 *
422 * Feel free to add more types when needed.
423 */
424enum rproc_crash_type {
425 RPROC_MMUFAULT,
b3d39032
BA
426 RPROC_WATCHDOG,
427 RPROC_FATAL_ERROR,
8afd519c
FGL
428};
429
2666ca91
SJ
430/**
431 * struct rproc_dump_segment - segment info from ELF header
432 * @node: list node related to the rproc segment list
433 * @da: device address of the segment
434 * @size: size of the segment
3952105d
SS
435 * @priv: private data associated with the dump_segment
436 * @dump: custom dump function to fill device memory segment associated
437 * with coredump
2666ca91
SJ
438 */
439struct rproc_dump_segment {
440 struct list_head node;
441
442 dma_addr_t da;
443 size_t size;
444
3952105d
SS
445 void *priv;
446 void (*dump)(struct rproc *rproc, struct rproc_dump_segment *segment,
447 void *dest);
2666ca91
SJ
448 loff_t offset;
449};
450
400e64df
OBC
451/**
452 * struct rproc - represents a physical remote processor device
fec47d86 453 * @node: list node of this rproc object
400e64df
OBC
454 * @domain: iommu domain
455 * @name: human readable name of the rproc
456 * @firmware: name of firmware file to be loaded
457 * @priv: private data which belongs to the platform-specific rproc module
458 * @ops: platform-specific start/stop rproc handlers
b5ab5e24 459 * @dev: virtual device for refcounting and common remoteproc behavior
400e64df
OBC
460 * @power: refcount of users who need this rproc powered up
461 * @state: state of the device
462 * @lock: lock which protects concurrent manipulations of the rproc
463 * @dbg_dir: debugfs directory of this rproc device
464 * @traces: list of trace buffers
465 * @num_traces: number of trace buffers
466 * @carveouts: list of physically contiguous memory allocations
467 * @mappings: list of iommu mappings we initiated, needed on shutdown
400e64df 468 * @bootaddr: address of first instruction to boot rproc with (optional)
7a186941 469 * @rvdevs: list of remote virtio devices
7bdc9650 470 * @subdevs: list of subdevices, to following the running state
7a186941 471 * @notifyids: idr for dynamically assigning rproc-wide unique notify ids
b5ab5e24 472 * @index: index of this rproc device
8afd519c
FGL
473 * @crash_handler: workqueue for handling a crash
474 * @crash_cnt: crash counter
2e37abb8 475 * @recovery_disabled: flag that state if recovery was disabled
099a3f33 476 * @max_notifyid: largest allocated notify id.
a0c10687
BA
477 * @table_ptr: pointer to the resource table in effect
478 * @cached_table: copy of the resource table
a4b24c75 479 * @table_sz: size of @cached_table
315491e5 480 * @has_iommu: flag to indicate if remote processor is behind an MMU
1bb89893 481 * @auto_boot: flag to indicate if remote processor should be auto-started
2666ca91 482 * @dump_segments: list of segments in the firmware
c6aed238 483 * @nb_vdev: number of vdev currently handled by rproc
400e64df
OBC
484 */
485struct rproc {
fec47d86 486 struct list_head node;
400e64df
OBC
487 struct iommu_domain *domain;
488 const char *name;
0f57dc6a 489 char *firmware;
400e64df 490 void *priv;
fb98e2bd 491 struct rproc_ops *ops;
b5ab5e24 492 struct device dev;
400e64df
OBC
493 atomic_t power;
494 unsigned int state;
495 struct mutex lock;
496 struct dentry *dbg_dir;
497 struct list_head traces;
498 int num_traces;
499 struct list_head carveouts;
500 struct list_head mappings;
fd2c15ec 501 u32 bootaddr;
7a186941 502 struct list_head rvdevs;
7bdc9650 503 struct list_head subdevs;
7a186941 504 struct idr notifyids;
b5ab5e24 505 int index;
8afd519c 506 struct work_struct crash_handler;
f145928d 507 unsigned int crash_cnt;
2e37abb8 508 bool recovery_disabled;
099a3f33 509 int max_notifyid;
a2b950ac 510 struct resource_table *table_ptr;
a0c10687 511 struct resource_table *cached_table;
a4b24c75 512 size_t table_sz;
315491e5 513 bool has_iommu;
ddf71187 514 bool auto_boot;
2666ca91 515 struct list_head dump_segments;
c6aed238 516 int nb_vdev;
7a186941
OBC
517};
518
7bdc9650
BA
519/**
520 * struct rproc_subdev - subdevice tied to a remoteproc
521 * @node: list node related to the rproc subdevs list
c455daa4 522 * @prepare: prepare function, called before the rproc is started
618fcff3
BA
523 * @start: start function, called after the rproc has been started
524 * @stop: stop function, called before the rproc is stopped; the @crashed
525 * parameter indicates if this originates from a recovery
c455daa4 526 * @unprepare: unprepare function, called after the rproc has been stopped
7bdc9650
BA
527 */
528struct rproc_subdev {
529 struct list_head node;
530
c455daa4 531 int (*prepare)(struct rproc_subdev *subdev);
618fcff3
BA
532 int (*start)(struct rproc_subdev *subdev);
533 void (*stop)(struct rproc_subdev *subdev, bool crashed);
c455daa4 534 void (*unprepare)(struct rproc_subdev *subdev);
7bdc9650
BA
535};
536
7a186941 537/* we currently support only two vrings per rvdev */
a2b950ac 538
7a186941
OBC
539#define RVDEV_NUM_VRINGS 2
540
541/**
542 * struct rproc_vring - remoteproc vring state
543 * @va: virtual address
7a186941
OBC
544 * @len: length, in bytes
545 * @da: device address
63140e0e 546 * @align: vring alignment
7a186941
OBC
547 * @notifyid: rproc-specific unique vring index
548 * @rvdev: remote vdev
549 * @vq: the virtqueue of this vring
550 */
551struct rproc_vring {
552 void *va;
7a186941
OBC
553 int len;
554 u32 da;
63140e0e 555 u32 align;
7a186941 556 int notifyid;
400e64df 557 struct rproc_vdev *rvdev;
7a186941 558 struct virtqueue *vq;
400e64df
OBC
559};
560
561/**
562 * struct rproc_vdev - remoteproc state for a supported virtio device
aab8d802 563 * @refcount: reference counter for the vdev and vring allocations
f5bcb353
BA
564 * @subdev: handle for registering the vdev as a rproc subdevice
565 * @id: virtio device id (as in virtio_ids.h)
7a186941 566 * @node: list node
400e64df
OBC
567 * @rproc: the rproc handle
568 * @vdev: the virio device
400e64df 569 * @vring: the vrings for this vdev
a2b950ac 570 * @rsc_offset: offset of the vdev's resource entry
c6aed238 571 * @index: vdev position versus other vdev declared in resource table
400e64df
OBC
572 */
573struct rproc_vdev {
aab8d802
BA
574 struct kref refcount;
575
f5bcb353 576 struct rproc_subdev subdev;
086d0872 577 struct device dev;
f5bcb353
BA
578
579 unsigned int id;
7a186941 580 struct list_head node;
400e64df 581 struct rproc *rproc;
7a186941 582 struct rproc_vring vring[RVDEV_NUM_VRINGS];
a2b950ac 583 u32 rsc_offset;
c6aed238 584 u32 index;
400e64df
OBC
585};
586
fec47d86 587struct rproc *rproc_get_by_phandle(phandle phandle);
7c89717f
BA
588struct rproc *rproc_get_by_child(struct device *dev);
589
400e64df 590struct rproc *rproc_alloc(struct device *dev, const char *name,
730f84ce
AS
591 const struct rproc_ops *ops,
592 const char *firmware, int len);
160e7c84
OBC
593void rproc_put(struct rproc *rproc);
594int rproc_add(struct rproc *rproc);
595int rproc_del(struct rproc *rproc);
433c0e04 596void rproc_free(struct rproc *rproc);
400e64df 597
15c0b025
LP
598void rproc_add_carveout(struct rproc *rproc, struct rproc_mem_entry *mem);
599
72029c90
LP
600struct rproc_mem_entry *
601rproc_mem_entry_init(struct device *dev,
602 void *va, dma_addr_t dma, int len, u32 da,
d7c51706 603 int (*alloc)(struct rproc *, struct rproc_mem_entry *),
72029c90
LP
604 int (*release)(struct rproc *, struct rproc_mem_entry *),
605 const char *name, ...);
606
1429cca1
LP
607struct rproc_mem_entry *
608rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, int len,
609 u32 da, const char *name, ...);
610
400e64df
OBC
611int rproc_boot(struct rproc *rproc);
612void rproc_shutdown(struct rproc *rproc);
8afd519c 613void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type);
2666ca91 614int rproc_coredump_add_segment(struct rproc *rproc, dma_addr_t da, size_t size);
ab8f873b
SS
615int rproc_coredump_add_custom_segment(struct rproc *rproc,
616 dma_addr_t da, size_t size,
617 void (*dumpfn)(struct rproc *rproc,
618 struct rproc_dump_segment *segment,
619 void *dest),
620 void *priv);
400e64df 621
7a186941
OBC
622static inline struct rproc_vdev *vdev_to_rvdev(struct virtio_device *vdev)
623{
d4c036fe 624 return container_of(vdev->dev.parent, struct rproc_vdev, dev);
7a186941
OBC
625}
626
400e64df
OBC
627static inline struct rproc *vdev_to_rproc(struct virtio_device *vdev)
628{
7a186941 629 struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
400e64df
OBC
630
631 return rvdev->rproc;
632}
633
4902676f 634void rproc_add_subdev(struct rproc *rproc, struct rproc_subdev *subdev);
7bdc9650
BA
635
636void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev);
637
400e64df 638#endif /* REMOTEPROC_H */