1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Remote processor framework
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 * Copyright (C) 2011 Google, Inc.
8 * Ohad Ben-Cohen <ohad@wizery.com>
9 * Brian Swetland <swetland@google.com>
12 #ifndef REMOTEPROC_INTERNAL_H
13 #define REMOTEPROC_INTERNAL_H
15 #include <linux/irqreturn.h>
16 #include <linux/firmware.h>
20 struct rproc_debug_trace
{
23 struct list_head node
;
24 struct rproc_mem_entry trace_mem
;
27 /* from remoteproc_core.c */
28 void rproc_release(struct kref
*kref
);
29 irqreturn_t
rproc_vq_interrupt(struct rproc
*rproc
, int vq_id
);
30 void rproc_vdev_release(struct kref
*ref
);
31 int rproc_of_parse_firmware(struct device
*dev
, int index
,
32 const char **fw_name
);
34 /* from remoteproc_virtio.c */
35 int rproc_add_virtio_dev(struct rproc_vdev
*rvdev
, int id
);
36 int rproc_remove_virtio_dev(struct device
*dev
, void *data
);
38 /* from remoteproc_debugfs.c */
39 void rproc_remove_trace_file(struct dentry
*tfile
);
40 struct dentry
*rproc_create_trace_file(const char *name
, struct rproc
*rproc
,
41 struct rproc_debug_trace
*trace
);
42 void rproc_delete_debug_dir(struct rproc
*rproc
);
43 void rproc_create_debug_dir(struct rproc
*rproc
);
44 void rproc_init_debugfs(void);
45 void rproc_exit_debugfs(void);
47 /* from remoteproc_sysfs.c */
48 extern struct class rproc_class
;
49 int rproc_init_sysfs(void);
50 void rproc_exit_sysfs(void);
52 /* from remoteproc_coredump.c */
53 void rproc_coredump_cleanup(struct rproc
*rproc
);
54 void rproc_coredump(struct rproc
*rproc
);
56 #ifdef CONFIG_REMOTEPROC_CDEV
57 void rproc_init_cdev(void);
58 void rproc_exit_cdev(void);
59 int rproc_char_device_add(struct rproc
*rproc
);
60 void rproc_char_device_remove(struct rproc
*rproc
);
62 static inline void rproc_init_cdev(void)
66 static inline void rproc_exit_cdev(void)
71 * The character device interface is an optional feature, if it is not enabled
72 * the function should not return an error.
74 static inline int rproc_char_device_add(struct rproc
*rproc
)
79 static inline void rproc_char_device_remove(struct rproc
*rproc
)
84 void rproc_free_vring(struct rproc_vring
*rvring
);
85 int rproc_alloc_vring(struct rproc_vdev
*rvdev
, int i
);
87 void *rproc_da_to_va(struct rproc
*rproc
, u64 da
, size_t len
);
88 phys_addr_t
rproc_va_to_pa(void *cpu_addr
);
89 int rproc_trigger_recovery(struct rproc
*rproc
);
91 int rproc_elf_sanity_check(struct rproc
*rproc
, const struct firmware
*fw
);
92 u64
rproc_elf_get_boot_addr(struct rproc
*rproc
, const struct firmware
*fw
);
93 int rproc_elf_load_segments(struct rproc
*rproc
, const struct firmware
*fw
);
94 int rproc_elf_load_rsc_table(struct rproc
*rproc
, const struct firmware
*fw
);
95 struct resource_table
*rproc_elf_find_loaded_rsc_table(struct rproc
*rproc
,
96 const struct firmware
*fw
);
97 struct rproc_mem_entry
*
98 rproc_find_carveout_by_name(struct rproc
*rproc
, const char *name
, ...);
100 static inline int rproc_prepare_device(struct rproc
*rproc
)
102 if (rproc
->ops
->prepare
)
103 return rproc
->ops
->prepare(rproc
);
108 static inline int rproc_unprepare_device(struct rproc
*rproc
)
110 if (rproc
->ops
->unprepare
)
111 return rproc
->ops
->unprepare(rproc
);
116 static inline int rproc_attach_device(struct rproc
*rproc
)
118 if (rproc
->ops
->attach
)
119 return rproc
->ops
->attach(rproc
);
125 int rproc_fw_sanity_check(struct rproc
*rproc
, const struct firmware
*fw
)
127 if (rproc
->ops
->sanity_check
)
128 return rproc
->ops
->sanity_check(rproc
, fw
);
134 u64
rproc_get_boot_addr(struct rproc
*rproc
, const struct firmware
*fw
)
136 if (rproc
->ops
->get_boot_addr
)
137 return rproc
->ops
->get_boot_addr(rproc
, fw
);
143 int rproc_load_segments(struct rproc
*rproc
, const struct firmware
*fw
)
145 if (rproc
->ops
->load
)
146 return rproc
->ops
->load(rproc
, fw
);
151 static inline int rproc_parse_fw(struct rproc
*rproc
, const struct firmware
*fw
)
153 if (rproc
->ops
->parse_fw
)
154 return rproc
->ops
->parse_fw(rproc
, fw
);
160 int rproc_handle_rsc(struct rproc
*rproc
, u32 rsc_type
, void *rsc
, int offset
,
163 if (rproc
->ops
->handle_rsc
)
164 return rproc
->ops
->handle_rsc(rproc
, rsc_type
, rsc
, offset
,
171 struct resource_table
*rproc_find_loaded_rsc_table(struct rproc
*rproc
,
172 const struct firmware
*fw
)
174 if (rproc
->ops
->find_loaded_rsc_table
)
175 return rproc
->ops
->find_loaded_rsc_table(rproc
, fw
);
181 bool rproc_u64_fit_in_size_t(u64 val
)
183 if (sizeof(size_t) == sizeof(u64
))
186 return (val
<= (size_t) -1);
189 #endif /* REMOTEPROC_INTERNAL_H */