blob: 1e9e5b3f021c0728fb8906f8a3d3d627f40d2ac4 [file] [log] [blame]
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001/*
2 * Remote processor framework
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Copyright (C) 2011 Google, Inc.
6 *
7 * Ohad Ben-Cohen <ohad@wizery.com>
8 * Brian Swetland <swetland@google.com>
9 *
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#ifndef REMOTEPROC_INTERNAL_H
21#define REMOTEPROC_INTERNAL_H
22
23#include <linux/irqreturn.h>
Sjur Brændeland72854fb2012-07-15 11:25:27 +030024#include <linux/firmware.h>
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020025
26struct rproc;
27
Sjur Brændeland4afc89d2012-06-19 10:08:18 +030028/**
29 * struct rproc_fw_ops - firmware format specific operations.
Sjur Brændeland95f95782013-02-21 18:15:34 +010030 * @find_rsc_table: find the resource table inside the firmware image
31 * @find_loaded_rsc_table: find the loaded resouce table
Sjur Brændeland4afc89d2012-06-19 10:08:18 +030032 * @load: load firmeware to memory, where the remote processor
33 * expects to find it
34 * @sanity_check: sanity check the fw image
35 * @get_boot_addr: get boot address to entry point specified in firmware
36 */
37struct rproc_fw_ops {
Suman Anna172e6ab2015-02-27 17:18:23 -060038 struct resource_table *(*find_rsc_table)(struct rproc *rproc,
Anna, Suman730f84c2016-08-12 18:42:20 -050039 const struct firmware *fw,
40 int *tablesz);
41 struct resource_table *(*find_loaded_rsc_table)(
42 struct rproc *rproc, const struct firmware *fw);
Sjur Brændeland4afc89d2012-06-19 10:08:18 +030043 int (*load)(struct rproc *rproc, const struct firmware *fw);
44 int (*sanity_check)(struct rproc *rproc, const struct firmware *fw);
45 u32 (*get_boot_addr)(struct rproc *rproc, const struct firmware *fw);
46};
47
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020048/* from remoteproc_core.c */
49void rproc_release(struct kref *kref);
50irqreturn_t rproc_vq_interrupt(struct rproc *rproc, int vq_id);
Lee Jones3d87fa12016-05-05 14:29:39 +010051int rproc_boot_nowait(struct rproc *rproc);
Bjorn Anderssonaab8d802016-10-19 19:40:06 -070052void rproc_vdev_release(struct kref *ref);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020053
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +010054/* from remoteproc_virtio.c */
55int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id);
56void rproc_remove_virtio_dev(struct rproc_vdev *rvdev);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020057
58/* from remoteproc_debugfs.c */
59void rproc_remove_trace_file(struct dentry *tfile);
60struct dentry *rproc_create_trace_file(const char *name, struct rproc *rproc,
Anna, Suman730f84c2016-08-12 18:42:20 -050061 struct rproc_mem_entry *trace);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020062void rproc_delete_debug_dir(struct rproc *rproc);
63void rproc_create_debug_dir(struct rproc *rproc);
64void rproc_init_debugfs(void);
65void rproc_exit_debugfs(void);
66
Matt Redfearn2aefbef2016-10-19 13:05:47 +010067/* from remoteproc_sysfs.c */
68extern struct class rproc_class;
69int rproc_init_sysfs(void);
70void rproc_exit_sysfs(void);
71
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +030072void rproc_free_vring(struct rproc_vring *rvring);
73int rproc_alloc_vring(struct rproc_vdev *rvdev, int i);
Sjur Brændeland72854fb2012-07-15 11:25:27 +030074
75void *rproc_da_to_va(struct rproc *rproc, u64 da, int len);
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -050076int rproc_trigger_recovery(struct rproc *rproc);
Sjur Brændeland72854fb2012-07-15 11:25:27 +030077
Sjur Brændeland4afc89d2012-06-19 10:08:18 +030078static inline
79int rproc_fw_sanity_check(struct rproc *rproc, const struct firmware *fw)
80{
81 if (rproc->fw_ops->sanity_check)
82 return rproc->fw_ops->sanity_check(rproc, fw);
83
84 return 0;
85}
86
87static inline
88u32 rproc_get_boot_addr(struct rproc *rproc, const struct firmware *fw)
89{
90 if (rproc->fw_ops->get_boot_addr)
91 return rproc->fw_ops->get_boot_addr(rproc, fw);
92
93 return 0;
94}
95
96static inline
97int rproc_load_segments(struct rproc *rproc, const struct firmware *fw)
98{
99 if (rproc->fw_ops->load)
100 return rproc->fw_ops->load(rproc, fw);
101
102 return -EINVAL;
103}
104
105static inline
Sjur Brændeland72854fb2012-07-15 11:25:27 +0300106struct resource_table *rproc_find_rsc_table(struct rproc *rproc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500107 const struct firmware *fw,
108 int *tablesz)
Sjur Brændeland4afc89d2012-06-19 10:08:18 +0300109{
110 if (rproc->fw_ops->find_rsc_table)
111 return rproc->fw_ops->find_rsc_table(rproc, fw, tablesz);
112
113 return NULL;
114}
115
Sjur Brændeland95f95782013-02-21 18:15:34 +0100116static inline
117struct resource_table *rproc_find_loaded_rsc_table(struct rproc *rproc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500118 const struct firmware *fw)
Sjur Brændeland95f95782013-02-21 18:15:34 +0100119{
120 if (rproc->fw_ops->find_loaded_rsc_table)
121 return rproc->fw_ops->find_loaded_rsc_table(rproc, fw);
122
Suman Anna57971152013-06-30 11:33:05 +0300123 return NULL;
Sjur Brændeland95f95782013-02-21 18:15:34 +0100124}
125
Sjur Brændeland4afc89d2012-06-19 10:08:18 +0300126extern const struct rproc_fw_ops rproc_elf_fw_ops;
Sjur Brændeland72854fb2012-07-15 11:25:27 +0300127
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200128#endif /* REMOTEPROC_INTERNAL_H */