xref: /linux-6.15/include/linux/rpmsg.h (revision 3bf950ff)
1 /*
2  * Remote processor messaging
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 _LINUX_RPMSG_H
36 #define _LINUX_RPMSG_H
37 
38 #include <linux/types.h>
39 #include <linux/device.h>
40 #include <linux/mod_devicetable.h>
41 #include <linux/kref.h>
42 #include <linux/mutex.h>
43 
44 /* The feature bitmap for virtio rpmsg */
45 #define VIRTIO_RPMSG_F_NS	0 /* RP supports name service notifications */
46 
47 /**
48  * struct rpmsg_hdr - common header for all rpmsg messages
49  * @src: source address
50  * @dst: destination address
51  * @reserved: reserved for future use
52  * @len: length of payload (in bytes)
53  * @flags: message flags
54  * @data: @len bytes of message payload data
55  *
56  * Every message sent(/received) on the rpmsg bus begins with this header.
57  */
58 struct rpmsg_hdr {
59 	u32 src;
60 	u32 dst;
61 	u32 reserved;
62 	u16 len;
63 	u16 flags;
64 	u8 data[0];
65 } __packed;
66 
67 /**
68  * struct rpmsg_ns_msg - dynamic name service announcement message
69  * @name: name of remote service that is published
70  * @addr: address of remote service that is published
71  * @flags: indicates whether service is created or destroyed
72  *
73  * This message is sent across to publish a new service, or announce
74  * about its removal. When we receive these messages, an appropriate
75  * rpmsg channel (i.e device) is created/destroyed. In turn, the ->probe()
76  * or ->remove() handler of the appropriate rpmsg driver will be invoked
77  * (if/as-soon-as one is registered).
78  */
79 struct rpmsg_ns_msg {
80 	char name[RPMSG_NAME_SIZE];
81 	u32 addr;
82 	u32 flags;
83 } __packed;
84 
85 /**
86  * enum rpmsg_ns_flags - dynamic name service announcement flags
87  *
88  * @RPMSG_NS_CREATE: a new remote service was just created
89  * @RPMSG_NS_DESTROY: a known remote service was just destroyed
90  */
91 enum rpmsg_ns_flags {
92 	RPMSG_NS_CREATE		= 0,
93 	RPMSG_NS_DESTROY	= 1,
94 };
95 
96 #define RPMSG_ADDR_ANY		0xFFFFFFFF
97 
98 struct rpmsg_device;
99 struct rpmsg_endpoint;
100 struct rpmsg_device_ops;
101 struct rpmsg_endpoint_ops;
102 
103 /**
104  * struct rpmsg_channel_info - channel info representation
105  * @name: name of service
106  * @src: local address
107  * @dst: destination address
108  */
109 struct rpmsg_channel_info {
110 	char name[RPMSG_NAME_SIZE];
111 	u32 src;
112 	u32 dst;
113 };
114 
115 /**
116  * rpmsg_device - device that belong to the rpmsg bus
117  * @dev: the device struct
118  * @id: device id (used to match between rpmsg drivers and devices)
119  * @src: local address
120  * @dst: destination address
121  * @ept: the rpmsg endpoint of this channel
122  * @announce: if set, rpmsg will announce the creation/removal of this channel
123  */
124 struct rpmsg_device {
125 	struct device dev;
126 	struct rpmsg_device_id id;
127 	u32 src;
128 	u32 dst;
129 	struct rpmsg_endpoint *ept;
130 	bool announce;
131 
132 	const struct rpmsg_device_ops *ops;
133 };
134 
135 typedef void (*rpmsg_rx_cb_t)(struct rpmsg_device *, void *, int, void *, u32);
136 
137 /**
138  * struct rpmsg_endpoint - binds a local rpmsg address to its user
139  * @rpdev: rpmsg channel device
140  * @refcount: when this drops to zero, the ept is deallocated
141  * @cb: rx callback handler
142  * @cb_lock: must be taken before accessing/changing @cb
143  * @addr: local rpmsg address
144  * @priv: private data for the driver's use
145  *
146  * In essence, an rpmsg endpoint represents a listener on the rpmsg bus, as
147  * it binds an rpmsg address with an rx callback handler.
148  *
149  * Simple rpmsg drivers shouldn't use this struct directly, because
150  * things just work: every rpmsg driver provides an rx callback upon
151  * registering to the bus, and that callback is then bound to its rpmsg
152  * address when the driver is probed. When relevant inbound messages arrive
153  * (i.e. messages which their dst address equals to the src address of
154  * the rpmsg channel), the driver's handler is invoked to process it.
155  *
156  * More complicated drivers though, that do need to allocate additional rpmsg
157  * addresses, and bind them to different rx callbacks, must explicitly
158  * create additional endpoints by themselves (see rpmsg_create_ept()).
159  */
160 struct rpmsg_endpoint {
161 	struct rpmsg_device *rpdev;
162 	struct kref refcount;
163 	rpmsg_rx_cb_t cb;
164 	struct mutex cb_lock;
165 	u32 addr;
166 	void *priv;
167 
168 	const struct rpmsg_endpoint_ops *ops;
169 };
170 
171 /**
172  * struct rpmsg_driver - rpmsg driver struct
173  * @drv: underlying device driver
174  * @id_table: rpmsg ids serviced by this driver
175  * @probe: invoked when a matching rpmsg channel (i.e. device) is found
176  * @remove: invoked when the rpmsg channel is removed
177  * @callback: invoked when an inbound message is received on the channel
178  */
179 struct rpmsg_driver {
180 	struct device_driver drv;
181 	const struct rpmsg_device_id *id_table;
182 	int (*probe)(struct rpmsg_device *dev);
183 	void (*remove)(struct rpmsg_device *dev);
184 	void (*callback)(struct rpmsg_device *, void *, int, void *, u32);
185 };
186 
187 int register_rpmsg_device(struct rpmsg_device *dev);
188 void unregister_rpmsg_device(struct rpmsg_device *dev);
189 int __register_rpmsg_driver(struct rpmsg_driver *drv, struct module *owner);
190 void unregister_rpmsg_driver(struct rpmsg_driver *drv);
191 void rpmsg_destroy_ept(struct rpmsg_endpoint *);
192 struct rpmsg_endpoint *rpmsg_create_ept(struct rpmsg_device *,
193 					rpmsg_rx_cb_t cb, void *priv,
194 					struct rpmsg_channel_info chinfo);
195 
196 /* use a macro to avoid include chaining to get THIS_MODULE */
197 #define register_rpmsg_driver(drv) \
198 	__register_rpmsg_driver(drv, THIS_MODULE)
199 
200 /**
201  * module_rpmsg_driver() - Helper macro for registering an rpmsg driver
202  * @__rpmsg_driver: rpmsg_driver struct
203  *
204  * Helper macro for rpmsg drivers which do not do anything special in module
205  * init/exit. This eliminates a lot of boilerplate.  Each module may only
206  * use this macro once, and calling it replaces module_init() and module_exit()
207  */
208 #define module_rpmsg_driver(__rpmsg_driver) \
209 	module_driver(__rpmsg_driver, register_rpmsg_driver, \
210 			unregister_rpmsg_driver)
211 
212 int rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len);
213 int rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
214 int rpmsg_send_offchannel(struct rpmsg_endpoint *ept, u32 src, u32 dst,
215 			  void *data, int len);
216 
217 int rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len);
218 int rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
219 int rpmsg_trysend_offchannel(struct rpmsg_endpoint *ept, u32 src, u32 dst,
220 			     void *data, int len);
221 
222 #endif /* _LINUX_RPMSG_H */
223