f5c45c2946
Many modems implement socket-based APIs to manage data connections. This layer provides much of the groundwork for keeping track of these "sockets" throughout their lifecycle (from the initial offload API calls through the command handler call back layers): - structure for holding socket data like IP protocol, destination, source and incoming packet sizes - configuration to note modem starting socket id and number of sockets - methods to get/put socket structs from/to the pool - function to update the # and size of packets in the modem receive queue - prebuilt modem_socket_poll() method for socket offload poll() API Example modem driver setup code looks like this: /* socket data */ static struct modem_socket_config socket_config; static struct modem_socket sockets[MDM_MAX_SOCKETS]; static int modem_init(struct device *dev) { ... /* setup socket config */ socket_config.sockets = &sockets[0]; socket_config.sockets_len = ARRAY_SIZE(sockets); socket_config.base_socket_num = 0; ret = modem_socket_init(&socket_config); ... } Signed-off-by: Michael Scott <mike@foundries.io>
75 lines
1.8 KiB
C
75 lines
1.8 KiB
C
/** @file
|
|
* @brief Modem socket header file.
|
|
*
|
|
* Generic modem socket and packet size implementation for modem context
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2019 Foundries.io
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_DRIVERS_MODEM_MODEM_SOCKET_H_
|
|
#define ZEPHYR_INCLUDE_DRIVERS_MODEM_MODEM_SOCKET_H_
|
|
|
|
#include <kernel.h>
|
|
#include <net/net_ip.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct modem_socket {
|
|
sa_family_t family;
|
|
enum net_sock_type type;
|
|
enum net_ip_protocol ip_proto;
|
|
struct sockaddr src;
|
|
struct sockaddr dst;
|
|
int id;
|
|
int sock_fd;
|
|
|
|
/** packet data */
|
|
u16_t packet_sizes[CONFIG_MODEM_SOCKET_PACKET_COUNT];
|
|
u16_t packet_count;
|
|
|
|
/** data ready semaphore */
|
|
struct k_sem sem_data_ready;
|
|
|
|
/** socket state */
|
|
bool is_polled;
|
|
|
|
/** temporary socket data */
|
|
void *data;
|
|
};
|
|
|
|
struct modem_socket_config {
|
|
struct modem_socket *sockets;
|
|
size_t sockets_len;
|
|
|
|
/* beginning socket id (modems can set this to 0 or 1 as needed) */
|
|
int base_socket_num;
|
|
struct k_sem sem_poll;
|
|
};
|
|
|
|
/* return total size of remaining packets */
|
|
int modem_socket_packet_size_update(struct modem_socket_config *cfg,
|
|
struct modem_socket *sock, int new_total);
|
|
int modem_socket_get(struct modem_socket_config *cfg, int family, int type,
|
|
int proto);
|
|
struct modem_socket *modem_socket_from_fd(struct modem_socket_config *cfg,
|
|
int sock_fd);
|
|
struct modem_socket *modem_socket_from_id(struct modem_socket_config *cfg,
|
|
int id);
|
|
struct modem_socket *modem_socket_from_newid(struct modem_socket_config *cfg);
|
|
void modem_socket_put(struct modem_socket_config *cfg, int sock_fd);
|
|
int modem_socket_poll(struct modem_socket_config *cfg,
|
|
struct pollfd *fds, int nfds, int msecs);
|
|
int modem_socket_init(struct modem_socket_config *cfg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DRIVERS_MODEM_MODEM_SOCKET_H_ */
|