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
can.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2021 Vestas Wind Systems A/S
3 * Copyright (c) 2018 Karsten Koenig
4 * Copyright (c) 2018 Alexander Wachter
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
9#ifndef ZEPHYR_INCLUDE_DRIVERS_CAN_H_
10#define ZEPHYR_INCLUDE_DRIVERS_CAN_H_
11
12#include <errno.h>
13
14#include <zephyr/types.h>
15#include <zephyr/device.h>
16#include <zephyr/kernel.h>
17#include <string.h>
18#include <zephyr/sys_clock.h>
19#include <zephyr/sys/util.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
40#define CAN_STD_ID_MASK 0x7FFU
44#define CAN_MAX_STD_ID CAN_STD_ID_MASK
48#define CAN_EXT_ID_MASK 0x1FFFFFFFU
52#define CAN_MAX_EXT_ID CAN_EXT_ID_MASK
56#define CAN_MAX_DLC 8U
60#define CANFD_MAX_DLC 15U
61
66#ifndef CONFIG_CAN_FD_MODE
67#define CAN_MAX_DLEN 8U
68#else
69#define CAN_MAX_DLEN 64U
70#endif /* CONFIG_CAN_FD_MODE */
71
84#define CAN_MODE_NORMAL 0
85
87#define CAN_MODE_LOOPBACK BIT(0)
88
90#define CAN_MODE_LISTENONLY BIT(1)
91
93#define CAN_MODE_FD BIT(2)
94
96#define CAN_MODE_ONE_SHOT BIT(3)
97
99#define CAN_MODE_3_SAMPLES BIT(4)
100
112
127};
128
137#define CAN_FRAME_IDE BIT(0)
138
140#define CAN_FRAME_RTR BIT(1)
141
143#define CAN_FRAME_FDF BIT(2)
144
146#define CAN_FRAME_BRS BIT(3)
147
151#define CAN_FRAME_ESI BIT(4)
152
158struct can_frame {
162 uint8_t res0 : 3; /* reserved/padding. */
168#if defined(CONFIG_CAN_RX_TIMESTAMP) || defined(__DOXYGEN__)
177#else
179 uint16_t res1; /* reserved/padding. */
181#endif
183 union {
184 uint8_t data[CAN_MAX_DLEN];
185 uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))];
186 };
187};
188
197#define CAN_FILTER_IDE BIT(0)
198
200#define CAN_FILTER_RTR BIT(1)
201
203#define CAN_FILTER_DATA BIT(2)
204
206#define CAN_FILTER_FDF BIT(3)
207
217 uint32_t res0 : 3;
225};
226
235};
236
280};
281
290typedef void (*can_tx_callback_t)(const struct device *dev, int error, void *user_data);
291
299typedef void (*can_rx_callback_t)(const struct device *dev, struct can_frame *frame,
300 void *user_data);
301
310typedef void (*can_state_change_callback_t)(const struct device *dev,
311 enum can_state state,
312 struct can_bus_err_cnt err_cnt,
313 void *user_data);
314
325typedef int (*can_set_timing_t)(const struct device *dev,
326 const struct can_timing *timing);
327
332typedef int (*can_set_timing_data_t)(const struct device *dev,
333 const struct can_timing *timing_data);
334
339typedef int (*can_get_capabilities_t)(const struct device *dev, can_mode_t *cap);
340
345typedef int (*can_start_t)(const struct device *dev);
346
351typedef int (*can_stop_t)(const struct device *dev);
352
357typedef int (*can_set_mode_t)(const struct device *dev, can_mode_t mode);
358
366typedef int (*can_send_t)(const struct device *dev,
367 const struct can_frame *frame,
368 k_timeout_t timeout, can_tx_callback_t callback,
369 void *user_data);
370
375typedef int (*can_add_rx_filter_t)(const struct device *dev,
376 can_rx_callback_t callback,
377 void *user_data,
378 const struct can_filter *filter);
379
384typedef void (*can_remove_rx_filter_t)(const struct device *dev, int filter_id);
385
390typedef int (*can_recover_t)(const struct device *dev, k_timeout_t timeout);
391
396typedef int (*can_get_state_t)(const struct device *dev, enum can_state *state,
397 struct can_bus_err_cnt *err_cnt);
398
403typedef void(*can_set_state_change_callback_t)(const struct device *dev,
405 void *user_data);
406
411typedef int (*can_get_core_clock_t)(const struct device *dev, uint32_t *rate);
412
417typedef int (*can_get_max_filters_t)(const struct device *dev, bool ide);
418
423typedef int (*can_get_max_bitrate_t)(const struct device *dev, uint32_t *max_bitrate);
424
425__subsystem struct can_driver_api {
426 can_get_capabilities_t get_capabilities;
427 can_start_t start;
428 can_stop_t stop;
429 can_set_mode_t set_mode;
430 can_set_timing_t set_timing;
431 can_send_t send;
432 can_add_rx_filter_t add_rx_filter;
433 can_remove_rx_filter_t remove_rx_filter;
434#if !defined(CONFIG_CAN_AUTO_BUS_OFF_RECOVERY) || defined(__DOXYGEN__)
435 can_recover_t recover;
436#endif /* CONFIG_CAN_AUTO_BUS_OFF_RECOVERY */
437 can_get_state_t get_state;
438 can_set_state_change_callback_t set_state_change_callback;
439 can_get_core_clock_t get_core_clock;
440 can_get_max_filters_t get_max_filters;
441 can_get_max_bitrate_t get_max_bitrate;
442 /* Min values for the timing registers */
443 struct can_timing timing_min;
444 /* Max values for the timing registers */
445 struct can_timing timing_max;
446#if defined(CONFIG_CAN_FD_MODE) || defined(__DOXYGEN__)
447 can_set_timing_data_t set_timing_data;
448 /* Min values for the timing registers during the data phase */
449 struct can_timing timing_data_min;
450 /* Max values for the timing registers during the data phase */
451 struct can_timing timing_data_max;
452#endif /* CONFIG_CAN_FD_MODE */
453};
454
457#if defined(CONFIG_CAN_STATS) || defined(__DOXYGEN__)
458
459#include <zephyr/stats/stats.h>
460
464STATS_SECT_ENTRY32(bit0_error)
465STATS_SECT_ENTRY32(bit1_error)
466STATS_SECT_ENTRY32(stuff_error)
467STATS_SECT_ENTRY32(crc_error)
468STATS_SECT_ENTRY32(form_error)
469STATS_SECT_ENTRY32(ack_error)
470STATS_SECT_ENTRY32(rx_overrun)
472
474STATS_NAME(can, bit0_error)
475STATS_NAME(can, bit1_error)
476STATS_NAME(can, stuff_error)
477STATS_NAME(can, crc_error)
478STATS_NAME(can, form_error)
479STATS_NAME(can, ack_error)
480STATS_NAME(can, rx_overrun)
481STATS_NAME_END(can);
482
491 struct stats_can stats;
492};
493
499#define Z_CAN_GET_STATS(dev_) \
500 CONTAINER_OF(dev_->state, struct can_device_state, devstate)->stats
501
512#define CAN_STATS_BIT0_ERROR_INC(dev_) \
513 STATS_INC(Z_CAN_GET_STATS(dev_), bit0_error)
514
523#define CAN_STATS_BIT1_ERROR_INC(dev_) \
524 STATS_INC(Z_CAN_GET_STATS(dev_), bit1_error)
525
534#define CAN_STATS_STUFF_ERROR_INC(dev_) \
535 STATS_INC(Z_CAN_GET_STATS(dev_), stuff_error)
536
545#define CAN_STATS_CRC_ERROR_INC(dev_) \
546 STATS_INC(Z_CAN_GET_STATS(dev_), crc_error)
547
556#define CAN_STATS_FORM_ERROR_INC(dev_) \
557 STATS_INC(Z_CAN_GET_STATS(dev_), form_error)
558
567#define CAN_STATS_ACK_ERROR_INC(dev_) \
568 STATS_INC(Z_CAN_GET_STATS(dev_), ack_error)
569
579#define CAN_STATS_RX_OVERRUN_INC(dev_) \
580 STATS_INC(Z_CAN_GET_STATS(dev_), rx_overrun)
581
590#define CAN_STATS_RESET(dev_) \
591 stats_reset(&(Z_CAN_GET_STATS(dev_).s_hdr))
592
598#define Z_CAN_DEVICE_STATE_DEFINE(dev_id) \
599 static struct can_device_state Z_DEVICE_STATE_NAME(dev_id) \
600 __attribute__((__section__(".z_devstate")))
601
608#define Z_CAN_INIT_FN(dev_id, init_fn) \
609 static inline int UTIL_CAT(dev_id, _init)(const struct device *dev) \
610 { \
611 struct can_device_state *state = \
612 CONTAINER_OF(dev->state, struct can_device_state, devstate); \
613 stats_init(&state->stats.s_hdr, STATS_SIZE_32, 7, \
614 STATS_NAME_INIT_PARMS(can)); \
615 stats_register(dev->name, &(state->stats.s_hdr)); \
616 if (init_fn != NULL) { \
617 return init_fn(dev); \
618 } \
619 \
620 return 0; \
621 }
622
645#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
646 prio, api, ...) \
647 Z_CAN_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
648 Z_CAN_INIT_FN(Z_DEVICE_DT_DEV_ID(node_id), init_fn) \
649 Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
650 DEVICE_DT_NAME(node_id), \
651 &UTIL_CAT(Z_DEVICE_DT_DEV_ID(node_id), _init), \
652 pm, data, config, level, prio, api, \
653 &(Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)).devstate), \
654 __VA_ARGS__)
655
656#else /* CONFIG_CAN_STATS */
657
658#define CAN_STATS_BIT0_ERROR_INC(dev_)
659#define CAN_STATS_BIT1_ERROR_INC(dev_)
660#define CAN_STATS_STUFF_ERROR_INC(dev_)
661#define CAN_STATS_CRC_ERROR_INC(dev_)
662#define CAN_STATS_FORM_ERROR_INC(dev_)
663#define CAN_STATS_ACK_ERROR_INC(dev_)
664#define CAN_STATS_RX_OVERRUN_INC(dev_)
665#define CAN_STATS_RESET(dev_)
666
667#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
668 prio, api, ...) \
669 DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
670 prio, api, __VA_ARGS__)
671
672#endif /* CONFIG_CAN_STATS */
673
681#define CAN_DEVICE_DT_INST_DEFINE(inst, ...) \
682 CAN_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
683
700__syscall int can_get_core_clock(const struct device *dev, uint32_t *rate);
701
702static inline int z_impl_can_get_core_clock(const struct device *dev, uint32_t *rate)
703{
704 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
705
706 return api->get_core_clock(dev, rate);
707}
708
721__syscall int can_get_max_bitrate(const struct device *dev, uint32_t *max_bitrate);
722
723static inline int z_impl_can_get_max_bitrate(const struct device *dev, uint32_t *max_bitrate)
724{
725 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
726
727 if (api->get_max_bitrate == NULL) {
728 return -ENOSYS;
729 }
730
731 return api->get_max_bitrate(dev, max_bitrate);
732}
733
741__syscall const struct can_timing *can_get_timing_min(const struct device *dev);
742
743static inline const struct can_timing *z_impl_can_get_timing_min(const struct device *dev)
744{
745 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
746
747 return &api->timing_min;
748}
749
757__syscall const struct can_timing *can_get_timing_max(const struct device *dev);
758
759static inline const struct can_timing *z_impl_can_get_timing_max(const struct device *dev)
760{
761 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
762
763 return &api->timing_max;
764}
765
787__syscall int can_calc_timing(const struct device *dev, struct can_timing *res,
788 uint32_t bitrate, uint16_t sample_pnt);
789
803__syscall const struct can_timing *can_get_timing_data_min(const struct device *dev);
804
805#ifdef CONFIG_CAN_FD_MODE
806static inline const struct can_timing *z_impl_can_get_timing_data_min(const struct device *dev)
807{
808 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
809
810 return &api->timing_data_min;
811}
812#endif /* CONFIG_CAN_FD_MODE */
813
827__syscall const struct can_timing *can_get_timing_data_max(const struct device *dev);
828
829#ifdef CONFIG_CAN_FD_MODE
830static inline const struct can_timing *z_impl_can_get_timing_data_max(const struct device *dev)
831{
832 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
833
834 return &api->timing_data_max;
835}
836#endif /* CONFIG_CAN_FD_MODE */
837
857__syscall int can_calc_timing_data(const struct device *dev, struct can_timing *res,
858 uint32_t bitrate, uint16_t sample_pnt);
859
877__syscall int can_set_timing_data(const struct device *dev,
878 const struct can_timing *timing_data);
879
908__syscall int can_set_bitrate_data(const struct device *dev, uint32_t bitrate_data);
909
926int can_calc_prescaler(const struct device *dev, struct can_timing *timing,
927 uint32_t bitrate);
928
942__syscall int can_set_timing(const struct device *dev,
943 const struct can_timing *timing);
944
958__syscall int can_get_capabilities(const struct device *dev, can_mode_t *cap);
959
960static inline int z_impl_can_get_capabilities(const struct device *dev, can_mode_t *cap)
961{
962 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
963
964 return api->get_capabilities(dev, cap);
965}
966
982__syscall int can_start(const struct device *dev);
983
984static inline int z_impl_can_start(const struct device *dev)
985{
986 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
987
988 return api->start(dev);
989}
990
1006__syscall int can_stop(const struct device *dev);
1007
1008static inline int z_impl_can_stop(const struct device *dev)
1009{
1010 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1011
1012 return api->stop(dev);
1013}
1014
1025__syscall int can_set_mode(const struct device *dev, can_mode_t mode);
1026
1027static inline int z_impl_can_set_mode(const struct device *dev, can_mode_t mode)
1028{
1029 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1030
1031 return api->set_mode(dev, mode);
1032}
1033
1059__syscall int can_set_bitrate(const struct device *dev, uint32_t bitrate);
1060
1113__syscall int can_send(const struct device *dev, const struct can_frame *frame,
1114 k_timeout_t timeout, can_tx_callback_t callback,
1115 void *user_data);
1116
1148static inline int can_add_rx_filter(const struct device *dev, can_rx_callback_t callback,
1149 void *user_data, const struct can_filter *filter)
1150{
1151 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1152
1153 if (filter == NULL || (filter->flags & (CAN_FILTER_DATA | CAN_FILTER_RTR)) == 0) {
1154 return -EINVAL;
1155 }
1156
1157 return api->add_rx_filter(dev, callback, user_data, filter);
1158}
1159
1170#define CAN_MSGQ_DEFINE(name, max_frames) \
1171 K_MSGQ_DEFINE(name, sizeof(struct can_frame), max_frames, 4)
1172
1199__syscall int can_add_rx_filter_msgq(const struct device *dev, struct k_msgq *msgq,
1200 const struct can_filter *filter);
1201
1211__syscall void can_remove_rx_filter(const struct device *dev, int filter_id);
1212
1213static inline void z_impl_can_remove_rx_filter(const struct device *dev, int filter_id)
1214{
1215 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1216
1217 return api->remove_rx_filter(dev, filter_id);
1218}
1219
1233__syscall int can_get_max_filters(const struct device *dev, bool ide);
1234
1235static inline int z_impl_can_get_max_filters(const struct device *dev, bool ide)
1236{
1237 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1238
1239 if (api->get_max_filters == NULL) {
1240 return -ENOSYS;
1241 }
1242
1243 return api->get_max_filters(dev, ide);
1244}
1245
1267__syscall int can_get_state(const struct device *dev, enum can_state *state,
1268 struct can_bus_err_cnt *err_cnt);
1269
1270static inline int z_impl_can_get_state(const struct device *dev, enum can_state *state,
1271 struct can_bus_err_cnt *err_cnt)
1272{
1273 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1274
1275 return api->get_state(dev, state, err_cnt);
1276}
1277
1293#if !defined(CONFIG_CAN_AUTO_BUS_OFF_RECOVERY) || defined(__DOXYGEN__)
1294__syscall int can_recover(const struct device *dev, k_timeout_t timeout);
1295
1296static inline int z_impl_can_recover(const struct device *dev, k_timeout_t timeout)
1297{
1298 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1299
1300 return api->recover(dev, timeout);
1301}
1302#else /* CONFIG_CAN_AUTO_BUS_OFF_RECOVERY */
1303/* This implementation prevents inking errors for auto recovery */
1304static inline int z_impl_can_recover(const struct device *dev, k_timeout_t timeout)
1305{
1306 ARG_UNUSED(dev);
1307 ARG_UNUSED(timeout);
1308 return 0;
1309}
1310#endif /* !CONFIG_CAN_AUTO_BUS_OFF_RECOVERY */
1311
1325static inline void can_set_state_change_callback(const struct device *dev,
1327 void *user_data)
1328{
1329 const struct can_driver_api *api = (const struct can_driver_api *)dev->api;
1330
1331 api->set_state_change_callback(dev, callback, user_data);
1332}
1333
1350{
1351 static const uint8_t dlc_table[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 12,
1352 16, 20, 24, 32, 48, 64};
1353
1354 return dlc_table[MIN(dlc, ARRAY_SIZE(dlc_table) - 1)];
1355}
1356
1364static inline uint8_t can_bytes_to_dlc(uint8_t num_bytes)
1365{
1366 return num_bytes <= 8 ? num_bytes :
1367 num_bytes <= 12 ? 9 :
1368 num_bytes <= 16 ? 10 :
1369 num_bytes <= 20 ? 11 :
1370 num_bytes <= 24 ? 12 :
1371 num_bytes <= 32 ? 13 :
1372 num_bytes <= 48 ? 14 :
1373 15;
1374}
1375
1383static inline bool can_frame_matches_filter(const struct can_frame *frame,
1384 const struct can_filter *filter)
1385{
1386 if ((frame->flags & CAN_FRAME_IDE) != 0 && (filter->flags & CAN_FILTER_IDE) == 0) {
1387 /* Extended (29-bit) ID frame, standard (11-bit) filter */
1388 return false;
1389 }
1390
1391 if ((frame->flags & CAN_FRAME_IDE) == 0 && (filter->flags & CAN_FILTER_IDE) != 0) {
1392 /* Standard (11-bit) ID frame, extended (29-bit) filter */
1393 return false;
1394 }
1395
1396 if ((frame->flags & CAN_FRAME_RTR) == 0 && (filter->flags & CAN_FILTER_DATA) == 0) {
1397 /* non-RTR frame, remote transmission request (RTR) filter */
1398 return false;
1399 }
1400
1401 if ((frame->flags & CAN_FRAME_RTR) != 0 && (filter->flags & CAN_FILTER_RTR) == 0) {
1402 /* Remote transmission request (RTR) frame, non-RTR filter */
1403 return false;
1404 }
1405
1406 if ((frame->flags & CAN_FRAME_FDF) != 0 && (filter->flags & CAN_FILTER_FDF) == 0) {
1407 /* CAN-FD format frame, classic format filter */
1408 return false;
1409 }
1410
1411 if ((frame->flags & CAN_FRAME_FDF) == 0 && (filter->flags & CAN_FILTER_FDF) != 0) {
1412 /* Classic frame, CAN-FD format filter */
1413 return false;
1414 }
1415
1416 if ((frame->id ^ filter->id) & filter->mask) {
1417 /* Masked ID mismatch */
1418 return false;
1419 }
1420
1421 return true;
1422}
1423
1430#ifdef __cplusplus
1431}
1432#endif
1433
1434#include <syscalls/can.h>
1435
1436#endif /* ZEPHYR_INCLUDE_DRIVERS_CAN_H_ */
System error numbers.
static ssize_t send(int sock, const void *buf, size_t len, int flags)
POSIX wrapper for zsock_send.
Definition: socket.h:803
void(* can_state_change_callback_t)(const struct device *dev, enum can_state state, struct can_bus_err_cnt err_cnt, void *user_data)
Defines the state change callback handler function signature.
Definition: can.h:310
int can_set_bitrate(const struct device *dev, uint32_t bitrate)
Set the bitrate of the CAN controller.
int can_set_bitrate_data(const struct device *dev, uint32_t bitrate_data)
Set the bitrate for the data phase of the CAN-FD controller.
uint32_t can_mode_t
Provides a type to hold CAN controller configuration flags.
Definition: can.h:111
static int can_add_rx_filter(const struct device *dev, can_rx_callback_t callback, void *user_data, const struct can_filter *filter)
Add a callback function for a given CAN filter.
Definition: can.h:1148
#define CAN_FILTER_FDF
Filter matches CAN-FD frames (FDF)
Definition: can.h:206
int can_stop(const struct device *dev)
Stop the CAN controller.
int can_set_timing(const struct device *dev, const struct can_timing *timing)
Configure the bus timing of a CAN controller.
#define CAN_FRAME_FDF
Frame uses CAN-FD format (FDF)
Definition: can.h:143
int can_calc_timing_data(const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt)
Calculate timing parameters for the data phase.
int can_send(const struct device *dev, const struct can_frame *frame, k_timeout_t timeout, can_tx_callback_t callback, void *user_data)
Queue a CAN frame for transmission on the CAN bus.
const struct can_timing * can_get_timing_data_max(const struct device *dev)
Get the maximum supported timing parameter values for the data phase.
int can_get_core_clock(const struct device *dev, uint32_t *rate)
Get the CAN core clock rate.
int can_get_capabilities(const struct device *dev, can_mode_t *cap)
Get the supported modes of the CAN controller.
int can_get_max_filters(const struct device *dev, bool ide)
Get maximum number of RX filters.
const struct can_timing * can_get_timing_min(const struct device *dev)
Get the minimum supported timing parameter values.
int can_set_timing_data(const struct device *dev, const struct can_timing *timing_data)
Configure the bus timing for the data phase of a CAN-FD controller.
const struct can_timing * can_get_timing_data_min(const struct device *dev)
Get the minimum supported timing parameter values for the data phase.
int can_calc_prescaler(const struct device *dev, struct can_timing *timing, uint32_t bitrate)
Fill in the prescaler value for a given bitrate and timing.
void can_remove_rx_filter(const struct device *dev, int filter_id)
Remove a CAN RX filter.
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
int can_get_max_bitrate(const struct device *dev, uint32_t *max_bitrate)
Get maximum supported bitrate.
#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
int can_add_rx_filter_msgq(const struct device *dev, struct k_msgq *msgq, const struct can_filter *filter)
Simple wrapper function for adding a message queue for a given filter.
void(* can_rx_callback_t)(const struct device *dev, struct can_frame *frame, void *user_data)
Defines the application callback handler function signature for receiving.
Definition: can.h:299
static bool can_frame_matches_filter(const struct can_frame *frame, const struct can_filter *filter)
Check if a CAN frame matches a CAN filter.
Definition: can.h:1383
void(* can_tx_callback_t)(const struct device *dev, int error, void *user_data)
Defines the application callback handler function signature.
Definition: can.h:290
int can_get_state(const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt)
Get current CAN controller state.
const struct can_timing * can_get_timing_max(const struct device *dev)
Get the maximum supported timing parameter values.
int can_calc_timing(const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt)
Calculate timing parameters from bitrate and sample point.
int can_recover(const struct device *dev, k_timeout_t timeout)
Recover from bus-off state.
can_state
Defines the state of the CAN controller.
Definition: can.h:116
static void can_set_state_change_callback(const struct device *dev, can_state_change_callback_t callback, void *user_data)
Set a callback for CAN controller state change events.
Definition: can.h:1325
int can_set_mode(const struct device *dev, can_mode_t mode)
Set the CAN controller to the given operation mode.
int can_start(const struct device *dev)
Start the CAN controller.
#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
@ CAN_STATE_ERROR_ACTIVE
Error-active state (RX/TX error count < 96).
Definition: can.h:118
@ CAN_STATE_ERROR_WARNING
Error-warning state (RX/TX error count < 128).
Definition: can.h:120
@ CAN_STATE_STOPPED
CAN controller is stopped and does not participate in CAN communication.
Definition: can.h:126
@ CAN_STATE_BUS_OFF
Bus-off state (RX/TX error count >= 256).
Definition: can.h:124
@ CAN_STATE_ERROR_PASSIVE
Error-passive state (RX/TX error count < 256).
Definition: can.h:122
#define MIN(a, b)
Obtain the minimum of two values.
Definition: util.h:341
#define ARRAY_SIZE(array)
Number of elements in the given array.
Definition: util.h:124
#define DIV_ROUND_UP(n, d)
Divide and round up.
Definition: util.h:286
#define EINVAL
Invalid argument.
Definition: errno.h:61
#define ENOSYS
Function not implemented.
Definition: errno.h:83
Public kernel APIs.
Variables needed for system clock.
state
Definition: parser_state.h:29
Statistics.
#define STATS_NAME_END(name__)
Definition: stats.h:391
#define STATS_NAME(name__, entry__)
Definition: stats.h:390
#define STATS_SECT_END
Ends a stats group struct definition.
Definition: stats.h:89
#define STATS_SECT_ENTRY32(var__)
Definition: stats.h:359
#define STATS_NAME_START(name__)
Definition: stats.h:389
#define STATS_SECT_START(group__)
Definition: stats.h:354
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
CAN controller error counters.
Definition: can.h:230
uint8_t tx_err_cnt
Value of the CAN controller transmit error counter.
Definition: can.h:232
uint8_t rx_err_cnt
Value of the CAN controller receive error counter.
Definition: can.h:234
CAN specific device state which allows for CAN device class specific additions.
Definition: can.h:489
struct device_state devstate
Definition: can.h:490
struct stats_can stats
Definition: can.h:491
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
uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))]
Definition: can.h:185
uint16_t timestamp
Captured value of the free-running timer in the CAN controller when this frame was received.
Definition: can.h:176
CAN bus timing structure.
Definition: can.h:269
uint16_t sjw
Synchronisation jump width.
Definition: can.h:271
uint16_t phase_seg2
Phase segment 2.
Definition: can.h:277
uint16_t prescaler
Prescaler value.
Definition: can.h:279
uint16_t phase_seg1
Phase segment 1.
Definition: can.h:275
uint16_t prop_seg
Propagation segment.
Definition: can.h:273
Runtime device dynamic structure (in RAM) per driver instance.
Definition: device.h:354
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:387
Message Queue Structure.
Definition: kernel.h:4406
Kernel timeout type.
Definition: sys_clock.h:65
Misc utilities.