RPMsg-Lite User's Guide Rev. 5.1.4
NXP Semiconductors
Loading...
Searching...
No Matches
rpmsg_ns.h
1/*
2 * Copyright (c) 2014, Mentor Graphics Corporation
3 * Copyright (c) 2015 Xilinx, Inc.
4 * Copyright (c) 2016 Freescale Semiconductor, Inc.
5 * Copyright 2016 NXP
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 are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 * 3. Neither the name of the copyright holder nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#ifndef RPMSG_NS_H_
34#define RPMSG_NS_H_
35
36#include "rpmsg_lite.h"
37
40
42#define RL_NS_EPT_ADDR (0x35u)
43
44/* Up to 32 flags available */
47{
48 RL_NS_CREATE = 0,
49 RL_NS_DESTROY = 1,
50};
51
55typedef void (*rpmsg_ns_new_ept_cb)(uint32_t new_ept, const char *new_ept_name, uint32_t flags, void *user_data);
56
64{
66 void *user_data;
67};
68
76{
77 struct rpmsg_lite_endpoint *ept;
78 struct rpmsg_ns_callback_data *cb_ctxt;
79};
80
81typedef struct rpmsg_ns_context *rpmsg_ns_handle;
82
90{
91 struct rpmsg_lite_ept_static_context ept_ctxt;
92 struct rpmsg_ns_callback_data cb_ctxt;
93 struct rpmsg_ns_context ns_ctxt;
94};
95
96typedef struct rpmsg_ns_static_context_container rpmsg_ns_static_context;
97
98#if defined(__cplusplus)
99extern "C" {
100#endif
101
102/*******************************************************************************
103 * API
104 ******************************************************************************/
105
106/* Exported API functions */
107
121#if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
122rpmsg_ns_handle rpmsg_ns_bind(struct rpmsg_lite_instance *rpmsg_lite_dev,
123 rpmsg_ns_new_ept_cb app_cb,
124 void *user_data,
125 rpmsg_ns_static_context *ns_ept_ctxt);
126#else
127rpmsg_ns_handle rpmsg_ns_bind(struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_new_ept_cb app_cb, void *user_data);
128#endif /* RL_USE_STATIC_API */
129
139int32_t rpmsg_ns_unbind(struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_handle handle);
140
152int32_t rpmsg_ns_announce(struct rpmsg_lite_instance *rpmsg_lite_dev,
153 struct rpmsg_lite_endpoint *new_ept,
154 const char *ept_name,
155 uint32_t flags);
156
158
159#if defined(__cplusplus)
160}
161#endif
162
163#endif /* RPMSG_NS_H_ */
Definition: rpmsg_lite.h:163
Definition: rpmsg_lite.h:175
Definition: rpmsg_lite.h:187
int32_t rpmsg_ns_unbind(struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_handle handle)
Unregisters application nameservice callback and cleans up.
rpmsg_ns_flags
Flags used during name service announcement.
Definition: rpmsg_ns.h:47
rpmsg_ns_handle rpmsg_ns_bind(struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_new_ept_cb app_cb, void *user_data)
Registers application nameservice callback.
int32_t rpmsg_ns_announce(struct rpmsg_lite_instance *rpmsg_lite_dev, struct rpmsg_lite_endpoint *new_ept, const char *ept_name, uint32_t flags)
Sends name service announcement to remote device.
void(* rpmsg_ns_new_ept_cb)(uint32_t new_ept, const char *new_ept_name, uint32_t flags, void *user_data)
New endpoint NS callback function type.
Definition: rpmsg_ns.h:55
Nameservice callback data structure.
Definition: rpmsg_ns.h:64
Nameservice context structure.
Definition: rpmsg_ns.h:76
Static nameservice context container.
Definition: rpmsg_ns.h:90