Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
smp.h
Go to the documentation of this file.
1/*
2 * Copyright Runtime.io 2018. All rights reserved.
3 * Copyright (c) 2022-2023 Nordic Semiconductor ASA
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef ZEPHYR_INCLUDE_MGMT_SMP_H_
9#define ZEPHYR_INCLUDE_MGMT_SMP_H_
10
11#include <zephyr/kernel.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
24struct smp_transport;
25struct zephyr_smp_transport;
26struct net_buf;
27
37typedef int (*smp_transport_out_fn)(struct net_buf *nb);
38
52typedef uint16_t (*smp_transport_get_mtu_fn)(const struct net_buf *nb);
53
67typedef int (*smp_transport_ud_copy_fn)(struct net_buf *dst,
68 const struct net_buf *src);
69
79typedef void (*smp_transport_ud_free_fn)(void *ud);
80
92typedef bool (*smp_transport_query_valid_check_fn)(struct net_buf *nb, void *arg);
93
101
104
107
110
113};
114
119 /* Must be the first member. */
120 struct k_work work;
121
122 /* FIFO containing incoming requests to be processed. */
123 struct k_fifo fifo;
124
125 /* Function pointers */
127
128#ifdef CONFIG_MCUMGR_TRANSPORT_REASSEMBLY
129 /* Packet reassembly internal data, API access only */
130 struct {
131 struct net_buf *current; /* net_buf used for reassembly */
132 uint16_t expected; /* expected bytes to come */
133 } __reassembly;
134#endif
135};
136
154
164};
165
175
185void smp_rx_remove_invalid(struct smp_transport *zst, void *arg);
186
192void smp_rx_clear(struct smp_transport *zst);
193
200
209
214#ifdef __cplusplus
215}
216#endif
217
218#endif
int(* smp_transport_ud_copy_fn)(struct net_buf *dst, const struct net_buf *src)
SMP copy user_data callback.
Definition: smp.h:67
smp_transport_type
SMP transport type for client registration.
Definition: smp.h:140
void smp_rx_clear(struct smp_transport *zst)
Used to clear pending queued requests for an SMP transport.
struct smp_transport * smp_client_transport_get(int smpt_type)
Discover a registered SMP transport client object.
void(* smp_transport_ud_free_fn)(void *ud)
SMP free user_data callback.
Definition: smp.h:79
void smp_rx_remove_invalid(struct smp_transport *zst, void *arg)
Used to remove queued requests for an SMP transport that are no longer valid.
int(* smp_transport_out_fn)(struct net_buf *nb)
SMP transmit callback for transport.
Definition: smp.h:37
bool(* smp_transport_query_valid_check_fn)(struct net_buf *nb, void *arg)
Function for checking if queued data is still valid.
Definition: smp.h:92
uint16_t(* smp_transport_get_mtu_fn)(const struct net_buf *nb)
SMP MTU query callback for transport.
Definition: smp.h:52
int smp_transport_init(struct smp_transport *smpt)
Initializes a Zephyr SMP transport object.
void smp_client_transport_register(struct smp_client_transport_entry *entry)
Register a Zephyr SMP transport object for client.
@ SMP_UDP_IPV6_TRANSPORT
SMP UDP IPv6.
Definition: smp.h:150
@ SMP_SHELL_TRANSPORT
SMP shell.
Definition: smp.h:146
@ SMP_BLUETOOTH_TRANSPORT
SMP bluetooth.
Definition: smp.h:144
@ SMP_USER_DEFINED_TRANSPORT
SMP user defined type.
Definition: smp.h:152
@ SMP_SERIAL_TRANSPORT
SMP serial.
Definition: smp.h:142
@ SMP_UDP_IPV4_TRANSPORT
SMP UDP IPv4.
Definition: smp.h:148
struct _snode sys_snode_t
Single-linked list node structure.
Definition: slist.h:39
Public kernel APIs.
#define bool
Definition: stdbool.h:13
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Definition: kernel.h:2388
A structure used to submit work.
Definition: kernel.h:3875
Network buffer representation.
Definition: buf.h:1004
SMP Client transport structure.
Definition: smp.h:158
int smpt_type
Transport type.
Definition: smp.h:163
sys_snode_t node
Definition: smp.h:159
struct smp_transport * smpt
Transport structure pointer.
Definition: smp.h:161
Function pointers of SMP transport functions, if a handler is NULL then it is not supported/implement...
Definition: smp.h:98
smp_transport_get_mtu_fn get_mtu
Transport's get-MTU function.
Definition: smp.h:103
smp_transport_query_valid_check_fn query_valid_check
Transport's check function for if a query is valid.
Definition: smp.h:112
smp_transport_out_fn output
Transport's send function.
Definition: smp.h:100
smp_transport_ud_free_fn ud_free
Transport buffer user_data free function.
Definition: smp.h:109
smp_transport_ud_copy_fn ud_copy
Transport buffer user_data copy function.
Definition: smp.h:106
SMP transport object for sending SMP responses.
Definition: smp.h:118
struct k_work work
Definition: smp.h:120
struct k_fifo fifo
Definition: smp.h:123
struct smp_transport_api_t functions
Definition: smp.h:126