Zephyr API Documentation 4.3.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
ppp.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Trackunit Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/kernel.h>
8#include <zephyr/types.h>
9#include <zephyr/net/net_if.h>
10#include <zephyr/net/net_pkt.h>
11#include <zephyr/net/ppp.h>
13#include <zephyr/sys/atomic.h>
14
15#include <zephyr/modem/pipe.h>
16#include <zephyr/modem/stats.h>
17
18#ifndef ZEPHYR_MODEM_PPP_
19#define ZEPHYR_MODEM_PPP_
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
33
35typedef void (*modem_ppp_init_iface)(struct net_if *iface);
36
40
41enum modem_ppp_receive_state {
42 /* Searching for start of frame and header */
43 MODEM_PPP_RECEIVE_STATE_HDR_SOF = 0,
44 MODEM_PPP_RECEIVE_STATE_HDR_FF,
45 MODEM_PPP_RECEIVE_STATE_HDR_7D,
46 MODEM_PPP_RECEIVE_STATE_HDR_23,
47 /* Writing bytes to network packet */
48 MODEM_PPP_RECEIVE_STATE_WRITING,
49 /* Unescaping next byte before writing to network packet */
50 MODEM_PPP_RECEIVE_STATE_UNESCAPING,
51};
52
53enum modem_ppp_transmit_state {
54 MODEM_PPP_TRANSMIT_STATE_IDLE = 0,
55 MODEM_PPP_TRANSMIT_STATE_SOF,
56 MODEM_PPP_TRANSMIT_STATE_PROTOCOL,
57 MODEM_PPP_TRANSMIT_STATE_DATA,
58 MODEM_PPP_TRANSMIT_STATE_EOF,
59};
60
61struct modem_ppp {
62 /* Network interface instance is bound to */
63 struct net_if *iface;
64
65 /* Hook for PPP L2 network interface initialization */
66 modem_ppp_init_iface init_iface;
67
69
70 /* Buffers used for processing partial frames */
71 uint8_t *receive_buf;
72 uint8_t *transmit_buf;
73 uint16_t buf_size;
74
75 /* Wrapped PPP frames are sent and received through this pipe */
76 struct modem_pipe *pipe;
77
78 /* Receive PPP frame state */
79 enum modem_ppp_receive_state receive_state;
80
81 /* Allocated network packet being created */
82 struct net_pkt *rx_pkt;
83
84 /* Packet being sent */
85 enum modem_ppp_transmit_state transmit_state;
86 struct net_pkt *tx_pkt;
87 uint16_t tx_pkt_fcs;
88
89 /* Ring buffer used for transmitting partial PPP frame */
90 struct ring_buf transmit_rb;
91
92 struct k_fifo tx_pkt_fifo;
93
94 /* Work */
95 struct k_work send_work;
96 struct k_work process_work;
97
98#if defined(CONFIG_NET_STATISTICS_PPP)
99 struct net_stats_ppp stats;
100#endif
101
102#if CONFIG_MODEM_STATS
103 struct modem_stats_buffer receive_buf_stats;
104 struct modem_stats_buffer transmit_buf_stats;
105#endif
106};
107
108struct modem_ppp_config {
109 const struct device *dev;
110};
111
115
122int modem_ppp_attach(struct modem_ppp *ppp, struct modem_pipe *pipe);
123
130struct net_if *modem_ppp_get_iface(struct modem_ppp *ppp);
131
137void modem_ppp_release(struct modem_ppp *ppp);
138
142
148int modem_ppp_init_internal(const struct device *dev);
149
153
171#define MODEM_DEV_PPP_DEFINE(_dev, _name, _init_iface, _prio, _mtu, _buf_size) \
172 extern const struct ppp_api modem_ppp_ppp_api; \
173 \
174 static uint8_t _CONCAT(_name, _receive_buf)[_buf_size]; \
175 static uint8_t _CONCAT(_name, _transmit_buf)[_buf_size]; \
176 \
177 static struct modem_ppp _name = { \
178 .init_iface = _init_iface, \
179 .receive_buf = _CONCAT(_name, _receive_buf), \
180 .transmit_buf = _CONCAT(_name, _transmit_buf), \
181 .buf_size = _buf_size, \
182 }; \
183 static const struct modem_ppp_config _CONCAT(_name, _config) = { \
184 .dev = _dev, \
185 }; \
186 \
187 NET_DEVICE_INIT(_CONCAT(ppp_net_dev_, _name), "modem_ppp_" #_name, \
188 modem_ppp_init_internal, NULL, &_name, &_CONCAT(_name, _config), _prio, \
189 &modem_ppp_ppp_api, PPP_L2, NET_L2_GET_CTX_TYPE(PPP_L2), _mtu)
190
196#define MODEM_DT_INST_PPP_DEFINE(inst, _name, _init_iface, _prio, _mtu, _buf_size) \
197 MODEM_DEV_PPP_DEFINE(DEVICE_DT_INST_GET(inst), _name, _init_iface, _prio, _mtu, _buf_size)
198
204#define MODEM_PPP_DEFINE(_name, _init_iface, _prio, _mtu, _buf_size) \
205 MODEM_DEV_PPP_DEFINE(NULL, _name, _init_iface, _prio, _mtu, _buf_size)
206
210
211#ifdef __cplusplus
212}
213#endif
214
215#endif /* ZEPHYR_MODEM_PPP_ */
long atomic_t
Definition atomic_types.h:15
int modem_ppp_attach(struct modem_ppp *ppp, struct modem_pipe *pipe)
Attach pipe to instance and connect.
struct net_if * modem_ppp_get_iface(struct modem_ppp *ppp)
Get network interface modem PPP instance is bound to.
void modem_ppp_release(struct modem_ppp *ppp)
Release pipe from instance.
void(* modem_ppp_init_iface)(struct net_if *iface)
L2 network interface init callback.
Definition ppp.h:35
Public kernel APIs.
PPP (Point-to-Point Protocol).
Public API for network interface.
Network packet buffer descriptor API.
state
Definition parser_state.h:29
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
Network Interface structure.
Definition net_if.h:731