Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
socketcan_utils.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2019 Intel Corporation
9 *
10 * SPDX-License-Identifier: Apache-2.0
11 */
12
13#ifndef ZEPHYR_INCLUDE_NET_SOCKETCAN_UTILS_H_
14#define ZEPHYR_INCLUDE_NET_SOCKETCAN_UTILS_H_
15
16#include <zephyr/drivers/can.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
36static inline void socketcan_to_can_frame(const struct socketcan_frame *sframe,
37 struct can_frame *zframe)
38{
39 memset(zframe, 0, sizeof(*zframe));
40
41 zframe->flags |= (sframe->can_id & BIT(31)) != 0 ? CAN_FRAME_IDE : 0;
42 zframe->flags |= (sframe->can_id & BIT(30)) != 0 ? CAN_FRAME_RTR : 0;
43 zframe->flags |= (sframe->flags & CANFD_FDF) != 0 ? CAN_FRAME_FDF : 0;
44 zframe->flags |= (sframe->flags & CANFD_BRS) != 0 ? CAN_FRAME_BRS : 0;
45 zframe->id = sframe->can_id & BIT_MASK(29);
46 zframe->dlc = can_bytes_to_dlc(sframe->len);
47
48 if ((zframe->flags & CAN_FRAME_RTR) == 0U) {
49 memcpy(zframe->data, sframe->data,
50 MIN(sframe->len, MIN(sizeof(sframe->data), sizeof(zframe->data))));
51 }
52}
53
60static inline void socketcan_from_can_frame(const struct can_frame *zframe,
61 struct socketcan_frame *sframe)
62{
63 memset(sframe, 0, sizeof(*sframe));
64
65 sframe->can_id = zframe->id;
66 sframe->can_id |= (zframe->flags & CAN_FRAME_IDE) != 0 ? BIT(31) : 0;
67 sframe->can_id |= (zframe->flags & CAN_FRAME_RTR) != 0 ? BIT(30) : 0;
68 sframe->len = can_dlc_to_bytes(zframe->dlc);
69
70 if ((zframe->flags & CAN_FRAME_FDF) != 0) {
71 sframe->flags |= CANFD_FDF;
72 }
73
74 if ((zframe->flags & CAN_FRAME_BRS) != 0) {
75 sframe->flags |= CANFD_BRS;
76 }
77
78 if ((zframe->flags & CAN_FRAME_RTR) == 0U) {
79 memcpy(sframe->data, zframe->data,
80 MIN(sframe->len, MIN(sizeof(zframe->data), sizeof(sframe->data))));
81 }
82}
83
90static inline void socketcan_to_can_filter(const struct socketcan_filter *sfilter,
91 struct can_filter *zfilter)
92{
93 memset(zfilter, 0, sizeof(*zfilter));
94
95 zfilter->flags |= (sfilter->can_id & BIT(31)) != 0 ? CAN_FILTER_IDE : 0;
96 zfilter->id = sfilter->can_id & BIT_MASK(29);
97 zfilter->mask = sfilter->can_mask & BIT_MASK(29);
98 zfilter->flags |= (sfilter->flags & CANFD_FDF) != 0 ? CAN_FILTER_FDF : 0;
99
100 if ((sfilter->can_mask & BIT(30)) == 0) {
102 } else if ((sfilter->can_id & BIT(30)) == 0) {
103 zfilter->flags |= CAN_FILTER_DATA;
104 } else {
105 zfilter->flags |= CAN_FILTER_RTR;
106 }
107}
108
115static inline void socketcan_from_can_filter(const struct can_filter *zfilter,
116 struct socketcan_filter *sfilter)
117{
118 memset(sfilter, 0, sizeof(*sfilter));
119
120 sfilter->can_id = zfilter->id;
121 sfilter->can_id |= (zfilter->flags & CAN_FILTER_IDE) != 0 ? BIT(31) : 0;
122 sfilter->can_id |= (zfilter->flags & CAN_FILTER_RTR) != 0 ? BIT(30) : 0;
123
124 sfilter->can_mask = zfilter->mask;
125 sfilter->can_mask |= (zfilter->flags & CAN_FILTER_IDE) != 0 ? BIT(31) : 0;
126
127 if ((zfilter->flags & (CAN_FILTER_DATA | CAN_FILTER_RTR)) !=
129 sfilter->can_mask |= BIT(30);
130 }
131
132 if ((zfilter->flags & CAN_FILTER_FDF) != 0) {
133 sfilter->flags |= CANFD_FDF;
134 }
135}
136
141#ifdef __cplusplus
142}
143#endif
144
145#endif /* ZEPHYR_INCLUDE_NET_SOCKETCAN_H_ */
#define BIT_MASK(n)
Definition: adc.h:14
#define CAN_FILTER_FDF
Filter matches CAN-FD frames (FDF)
Definition: can.h:206
#define CAN_FRAME_BRS
Frame uses CAN-FD Baud Rate Switch (BRS).
Definition: can.h:146
#define CAN_FRAME_FDF
Frame uses CAN-FD format (FDF)
Definition: can.h:143
static uint8_t can_bytes_to_dlc(uint8_t num_bytes)
Convert from number of bytes to Data Length Code (DLC)
Definition: can.h:1364
#define CAN_FILTER_RTR
Filter matches Remote Transmission Request (RTR) frames.
Definition: can.h:200
#define CAN_FRAME_IDE
Frame uses extended (29-bit) CAN ID.
Definition: can.h:137
static uint8_t can_dlc_to_bytes(uint8_t dlc)
Convert from Data Length Code (DLC) to the number of data bytes.
Definition: can.h:1349
#define CAN_FILTER_DATA
Filter matches data frames.
Definition: can.h:203
#define CAN_FRAME_RTR
Frame is a Remote Transmission Request (RTR)
Definition: can.h:140
#define CAN_FILTER_IDE
Filter matches frames with extended (29-bit) CAN IDs.
Definition: can.h:197
static void socketcan_to_can_filter(const struct socketcan_filter *sfilter, struct can_filter *zfilter)
Translate a socketcan_filter struct to a can_filter struct.
Definition: socketcan_utils.h:90
#define CANFD_FDF
Definition: socketcan.h:55
static void socketcan_from_can_frame(const struct can_frame *zframe, struct socketcan_frame *sframe)
Translate a can_frame struct to a socketcan_frame struct.
Definition: socketcan_utils.h:60
static void socketcan_to_can_frame(const struct socketcan_frame *sframe, struct can_frame *zframe)
Translate a socketcan_frame struct to a can_frame struct.
Definition: socketcan_utils.h:36
#define CANFD_BRS
Definition: socketcan.h:53
static void socketcan_from_can_filter(const struct can_filter *zfilter, struct socketcan_filter *sfilter)
Translate a can_filter struct to a socketcan_filter struct.
Definition: socketcan_utils.h:115
#define BIT(n)
Unsigned integer with bit position n set (signed in assembly language).
Definition: util_macro.h:44
#define MIN(a, b)
Obtain the minimum of two values.
Definition: util.h:341
SocketCAN definitions.
void * memset(void *buf, int c, size_t n)
void * memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n)
CAN filter structure.
Definition: can.h:213
uint32_t mask
CAN identifier matching mask.
Definition: can.h:222
uint8_t flags
Flags.
Definition: can.h:224
uint32_t id
CAN identifier to match.
Definition: can.h:215
CAN frame structure.
Definition: can.h:158
uint8_t dlc
Data Length Code (DLC) indicating data length in bytes.
Definition: can.h:165
uint8_t flags
Flags.
Definition: can.h:167
uint32_t id
Standard (11-bit) or extended (29-bit) CAN identifier.
Definition: can.h:160
uint8_t data[CAN_MAX_DLEN]
Definition: can.h:184
CAN filter for Linux SocketCAN compatibility.
Definition: socketcan.h:122
socketcan_id_t can_mask
The mask applied to can_id for matching.
Definition: socketcan.h:126
uint8_t flags
Additional flags for FD frame filter.
Definition: socketcan.h:128
socketcan_id_t can_id
The CAN identifier to match.
Definition: socketcan.h:124
CAN frame for Linux SocketCAN compatibility.
Definition: socketcan.h:101
socketcan_id_t can_id
32-bit CAN ID + EFF/RTR/ERR flags.
Definition: socketcan.h:103
uint8_t data[8U]
The payload data.
Definition: socketcan.h:114
uint8_t len
Frame payload length in bytes.
Definition: socketcan.h:105
uint8_t flags
Additional flags for CAN FD.
Definition: socketcan.h:107