Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
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
14
15#ifndef ZEPHYR_INCLUDE_DRIVERS_CAN_H_
16#define ZEPHYR_INCLUDE_DRIVERS_CAN_H_
17
18#include <errno.h>
19
20#include <zephyr/types.h>
21#include <zephyr/device.h>
22#include <zephyr/kernel.h>
23#include <string.h>
24#include <zephyr/sys/clock.h>
25#include <zephyr/sys/util.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
44
49
53#define CAN_STD_ID_MASK 0x7FFU
54
58#define CAN_EXT_ID_MASK 0x1FFFFFFFU
59
63#define CAN_MAX_DLC 8U
64
68#define CANFD_MAX_DLC 15U
69
74#ifndef CONFIG_CAN_FD_MODE
75#define CAN_MAX_DLEN 8U
76#else
77#define CAN_MAX_DLEN 64U
78#endif /* CONFIG_CAN_FD_MODE */
79
81
83
90
92#define CAN_MODE_NORMAL 0
93
95#define CAN_MODE_LOOPBACK BIT(0)
96
98#define CAN_MODE_LISTENONLY BIT(1)
99
101#define CAN_MODE_FD BIT(2)
102
104#define CAN_MODE_ONE_SHOT BIT(3)
105
107#define CAN_MODE_3_SAMPLES BIT(4)
108
110#define CAN_MODE_MANUAL_RECOVERY BIT(5)
111
113
123
139
146
148#define CAN_FRAME_IDE BIT(0)
149
151#define CAN_FRAME_RTR BIT(1)
152
154#define CAN_FRAME_FDF BIT(2)
155
157#define CAN_FRAME_BRS BIT(3)
158
162#define CAN_FRAME_ESI BIT(4)
163
165
169struct can_frame {
176#if defined(CONFIG_CAN_RX_TIMESTAMP) || defined(__DOXYGEN__)
185#else
188 uint16_t reserved;
190#endif
192 union {
194 uint8_t data[CAN_MAX_DLEN];
196 uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))];
197 };
198};
199
206
208#define CAN_FILTER_IDE BIT(0)
209
211
225
235
280
289typedef void (*can_tx_callback_t)(const struct device *dev, int error, void *user_data);
290
298typedef void (*can_rx_callback_t)(const struct device *dev, struct can_frame *frame,
299 void *user_data);
300
309typedef void (*can_state_change_callback_t)(const struct device *dev,
310 enum can_state state,
311 struct can_bus_err_cnt err_cnt,
312 void *user_data);
313
318
332#define CAN_CALC_TDCO(_timing_data, _tdco_min, _tdco_max) \
333 CLAMP((1U + _timing_data->prop_seg + _timing_data->phase_seg1) * _timing_data->prescaler, \
334 _tdco_min, _tdco_max)
335
344 const struct device *phy;
353#if defined(CONFIG_CAN_FD_MODE) || defined(__DOXYGEN__)
358#endif /* CONFIG_CAN_FD_MODE */
359};
360
368#define CAN_DT_DRIVER_CONFIG_GET(node_id, _min_bitrate, _max_bitrate) \
369 { \
370 .phy = DEVICE_DT_GET_OR_NULL(DT_PHANDLE(node_id, phys)), \
371 .min_bitrate = DT_CAN_TRANSCEIVER_MIN_BITRATE(node_id, _min_bitrate), \
372 .max_bitrate = DT_CAN_TRANSCEIVER_MAX_BITRATE(node_id, _max_bitrate), \
373 .bitrate = DT_PROP_OR(node_id, bitrate, \
374 DT_PROP_OR(node_id, bus_speed, CONFIG_CAN_DEFAULT_BITRATE)), \
375 .sample_point = DT_PROP_OR(node_id, sample_point, 0), \
376 IF_ENABLED(CONFIG_CAN_FD_MODE, \
377 (.bitrate_data = DT_PROP_OR(node_id, bitrate_data, \
378 DT_PROP_OR(node_id, bus_speed_data, CONFIG_CAN_DEFAULT_BITRATE_DATA)), \
379 .sample_point_data = DT_PROP_OR(node_id, sample_point_data, 0),)) \
380 }
381
390#define CAN_DT_DRIVER_CONFIG_INST_GET(inst, _min_bitrate, _max_bitrate) \
391 CAN_DT_DRIVER_CONFIG_GET(DT_DRV_INST(inst), _min_bitrate, _max_bitrate)
392
409
414typedef int (*can_set_timing_t)(const struct device *dev,
415 const struct can_timing *timing);
416
421typedef int (*can_set_timing_data_t)(const struct device *dev,
422 const struct can_timing *timing_data);
423
428typedef int (*can_get_capabilities_t)(const struct device *dev, can_mode_t *cap);
429
434typedef int (*can_start_t)(const struct device *dev);
435
440typedef int (*can_stop_t)(const struct device *dev);
441
446typedef int (*can_set_mode_t)(const struct device *dev, can_mode_t mode);
447
455typedef int (*can_send_t)(const struct device *dev,
456 const struct can_frame *frame,
457 k_timeout_t timeout, can_tx_callback_t callback,
458 void *user_data);
459
464typedef int (*can_add_rx_filter_t)(const struct device *dev,
465 can_rx_callback_t callback,
466 void *user_data,
467 const struct can_filter *filter);
468
473typedef void (*can_remove_rx_filter_t)(const struct device *dev, int filter_id);
474
479typedef int (*can_recover_t)(const struct device *dev, k_timeout_t timeout);
480
485typedef int (*can_get_state_t)(const struct device *dev, enum can_state *state,
486 struct can_bus_err_cnt *err_cnt);
487
492typedef void(*can_set_state_change_callback_t)(const struct device *dev,
494 void *user_data);
495
500typedef int (*can_get_core_clock_t)(const struct device *dev, uint32_t *rate);
501
506typedef int (*can_get_max_filters_t)(const struct device *dev, bool ide);
507
587
590
591#if defined(CONFIG_CAN_STATS) || defined(__DOXYGEN__)
592
593#include <zephyr/stats/stats.h>
594
596
598STATS_SECT_ENTRY32(bit_error)
599STATS_SECT_ENTRY32(bit0_error)
600STATS_SECT_ENTRY32(bit1_error)
601STATS_SECT_ENTRY32(stuff_error)
602STATS_SECT_ENTRY32(crc_error)
603STATS_SECT_ENTRY32(form_error)
604STATS_SECT_ENTRY32(ack_error)
605STATS_SECT_ENTRY32(rx_overrun)
607
609STATS_NAME(can, bit_error)
610STATS_NAME(can, bit0_error)
611STATS_NAME(can, bit1_error)
612STATS_NAME(can, stuff_error)
613STATS_NAME(can, crc_error)
614STATS_NAME(can, form_error)
615STATS_NAME(can, ack_error)
616STATS_NAME(can, rx_overrun)
617STATS_NAME_END(can);
618
620
631 struct stats_can stats;
632};
633
635
639#define Z_CAN_GET_STATS(dev_) \
640 CONTAINER_OF(dev_->state, struct can_device_state, devstate)->stats
641
643
662#define CAN_STATS_BIT_ERROR_INC(dev_) \
663 STATS_INC(Z_CAN_GET_STATS(dev_), bit_error)
664
678#define CAN_STATS_BIT0_ERROR_INC(dev_) \
679 do { \
680 STATS_INC(Z_CAN_GET_STATS(dev_), bit0_error); \
681 CAN_STATS_BIT_ERROR_INC(dev_); \
682 } while (0)
683
697#define CAN_STATS_BIT1_ERROR_INC(dev_) \
698 do { \
699 STATS_INC(Z_CAN_GET_STATS(dev_), bit1_error); \
700 CAN_STATS_BIT_ERROR_INC(dev_); \
701 } while (0)
702
713#define CAN_STATS_STUFF_ERROR_INC(dev_) \
714 STATS_INC(Z_CAN_GET_STATS(dev_), stuff_error)
715
726#define CAN_STATS_CRC_ERROR_INC(dev_) \
727 STATS_INC(Z_CAN_GET_STATS(dev_), crc_error)
728
739#define CAN_STATS_FORM_ERROR_INC(dev_) \
740 STATS_INC(Z_CAN_GET_STATS(dev_), form_error)
741
752#define CAN_STATS_ACK_ERROR_INC(dev_) \
753 STATS_INC(Z_CAN_GET_STATS(dev_), ack_error)
754
766#define CAN_STATS_RX_OVERRUN_INC(dev_) \
767 STATS_INC(Z_CAN_GET_STATS(dev_), rx_overrun)
768
779#define CAN_STATS_RESET(dev_) \
780 stats_reset(&(Z_CAN_GET_STATS(dev_).s_hdr))
781
783
789#define Z_CAN_DEVICE_STATE_DEFINE(dev_id) \
790 static struct can_device_state Z_DEVICE_STATE_NAME(dev_id) \
791 __attribute__((__section__(".z_devstate")))
792
801#define Z_CAN_INIT_FN(dev_id, init_fn) \
802 static inline int UTIL_CAT(dev_id, _init)(const struct device *dev) \
803 { \
804 struct can_device_state *state = \
805 CONTAINER_OF(dev->state, struct can_device_state, devstate); \
806 stats_init(&state->stats.s_hdr, STATS_SIZE_32, 8, \
807 STATS_NAME_INIT_PARMS(can)); \
808 stats_register(dev->name, &(state->stats.s_hdr)); \
809 if (!is_null_no_warn(init_fn)) { \
810 return init_fn(dev); \
811 } \
812 \
813 return 0; \
814 }
815
817
838#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
839 prio, api, ...) \
840 Z_CAN_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
841 Z_CAN_INIT_FN(Z_DEVICE_DT_DEV_ID(node_id), init_fn) \
842 Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
843 DEVICE_DT_NAME(node_id), \
844 &UTIL_CAT(Z_DEVICE_DT_DEV_ID(node_id), _init), \
845 NULL, Z_DEVICE_DT_FLAGS(node_id), pm, data, \
846 config, level, prio, api, \
847 &(Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)).devstate), \
848 __VA_ARGS__)
849
850#else /* CONFIG_CAN_STATS */
851
852#define CAN_STATS_BIT_ERROR_INC(dev_)
853#define CAN_STATS_BIT0_ERROR_INC(dev_)
854#define CAN_STATS_BIT1_ERROR_INC(dev_)
855#define CAN_STATS_STUFF_ERROR_INC(dev_)
856#define CAN_STATS_CRC_ERROR_INC(dev_)
857#define CAN_STATS_FORM_ERROR_INC(dev_)
858#define CAN_STATS_ACK_ERROR_INC(dev_)
859#define CAN_STATS_RX_OVERRUN_INC(dev_)
860#define CAN_STATS_RESET(dev_)
861
862#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
863 prio, api, ...) \
864 DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
865 prio, api, __VA_ARGS__)
866
867#endif /* CONFIG_CAN_STATS */
868
876#define CAN_DEVICE_DT_INST_DEFINE(inst, ...) \
877 CAN_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
878
884
897__syscall int can_get_core_clock(const struct device *dev, uint32_t *rate);
898
899static inline int z_impl_can_get_core_clock(const struct device *dev, uint32_t *rate)
900{
901 return DEVICE_API_GET(can, dev)->get_core_clock(dev, rate);
902}
903
920__syscall uint32_t can_get_bitrate_min(const struct device *dev);
921
922static inline uint32_t z_impl_can_get_bitrate_min(const struct device *dev)
923{
924 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
925
926 return common->min_bitrate;
927}
928
945__syscall uint32_t can_get_bitrate_max(const struct device *dev);
946
947static inline uint32_t z_impl_can_get_bitrate_max(const struct device *dev)
948{
949 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
950
951 return common->max_bitrate;
952}
953
961__syscall const struct can_timing *can_get_timing_min(const struct device *dev);
962
963static inline const struct can_timing *z_impl_can_get_timing_min(const struct device *dev)
964{
965 return &DEVICE_API_GET(can, dev)->timing_min;
966}
967
975__syscall const struct can_timing *can_get_timing_max(const struct device *dev);
976
977static inline const struct can_timing *z_impl_can_get_timing_max(const struct device *dev)
978{
979 return &DEVICE_API_GET(can, dev)->timing_max;
980}
981
1008__syscall int can_calc_timing(const struct device *dev, struct can_timing *res,
1009 uint32_t bitrate, uint16_t sample_pnt);
1010
1024__syscall const struct can_timing *can_get_timing_data_min(const struct device *dev);
1025
1026#ifdef CONFIG_CAN_FD_MODE
1027static inline const struct can_timing *z_impl_can_get_timing_data_min(const struct device *dev)
1028{
1029 return &DEVICE_API_GET(can, dev)->timing_data_min;
1030}
1031#endif /* CONFIG_CAN_FD_MODE */
1032
1046__syscall const struct can_timing *can_get_timing_data_max(const struct device *dev);
1047
1048#ifdef CONFIG_CAN_FD_MODE
1049static inline const struct can_timing *z_impl_can_get_timing_data_max(const struct device *dev)
1050{
1051 return &DEVICE_API_GET(can, dev)->timing_data_max;
1052}
1053#endif /* CONFIG_CAN_FD_MODE */
1054
1075__syscall int can_calc_timing_data(const struct device *dev, struct can_timing *res,
1076 uint32_t bitrate, uint16_t sample_pnt);
1077
1095__syscall int can_set_timing_data(const struct device *dev,
1096 const struct can_timing *timing_data);
1097
1126__syscall int can_set_bitrate_data(const struct device *dev, uint32_t bitrate_data);
1127
1141__syscall int can_set_timing(const struct device *dev,
1142 const struct can_timing *timing);
1143
1157__syscall int can_get_capabilities(const struct device *dev, can_mode_t *cap);
1158
1159static inline int z_impl_can_get_capabilities(const struct device *dev, can_mode_t *cap)
1160{
1161 return DEVICE_API_GET(can, dev)->get_capabilities(dev, cap);
1162}
1163
1173__syscall const struct device *can_get_transceiver(const struct device *dev);
1174
1175static const struct device *z_impl_can_get_transceiver(const struct device *dev)
1176{
1177 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
1178
1179 return common->phy;
1180}
1181
1199__syscall int can_start(const struct device *dev);
1200
1201static inline int z_impl_can_start(const struct device *dev)
1202{
1203 return DEVICE_API_GET(can, dev)->start(dev);
1204}
1205
1221__syscall int can_stop(const struct device *dev);
1222
1223static inline int z_impl_can_stop(const struct device *dev)
1224{
1225 return DEVICE_API_GET(can, dev)->stop(dev);
1226}
1227
1239__syscall int can_set_mode(const struct device *dev, can_mode_t mode);
1240
1241static inline int z_impl_can_set_mode(const struct device *dev, can_mode_t mode)
1242{
1243 return DEVICE_API_GET(can, dev)->set_mode(dev, mode);
1244}
1245
1253__syscall can_mode_t can_get_mode(const struct device *dev);
1254
1255static inline can_mode_t z_impl_can_get_mode(const struct device *dev)
1256{
1257 const struct can_driver_data *common = (const struct can_driver_data *)dev->data;
1258
1259 return common->mode;
1260}
1261
1287__syscall int can_set_bitrate(const struct device *dev, uint32_t bitrate);
1288
1290
1296
1341__syscall int can_send(const struct device *dev, const struct can_frame *frame,
1342 k_timeout_t timeout, can_tx_callback_t callback,
1343 void *user_data);
1344
1346
1352
1377int can_add_rx_filter(const struct device *dev, can_rx_callback_t callback,
1378 void *user_data, const struct can_filter *filter);
1379
1390#define CAN_MSGQ_DEFINE(name, max_frames) \
1391 K_MSGQ_DEFINE_TYPE(name, struct can_frame, max_frames)
1392
1421__syscall int can_add_rx_filter_msgq(const struct device *dev, struct k_msgq *msgq,
1422 const struct can_filter *filter);
1423
1433__syscall void can_remove_rx_filter(const struct device *dev, int filter_id);
1434
1435static inline void z_impl_can_remove_rx_filter(const struct device *dev, int filter_id)
1436{
1437 DEVICE_API_GET(can, dev)->remove_rx_filter(dev, filter_id);
1438}
1439
1453__syscall int can_get_max_filters(const struct device *dev, bool ide);
1454
1455static inline int z_impl_can_get_max_filters(const struct device *dev, bool ide)
1456{
1457 const struct can_driver_api *api = DEVICE_API_GET(can, dev);
1458
1459 if (api->get_max_filters == NULL) {
1460 return -ENOSYS;
1461 }
1462
1463 return api->get_max_filters(dev, ide);
1464}
1465
1467
1473
1487__syscall int can_get_state(const struct device *dev, enum can_state *state,
1488 struct can_bus_err_cnt *err_cnt);
1489
1490static inline int z_impl_can_get_state(const struct device *dev, enum can_state *state,
1491 struct can_bus_err_cnt *err_cnt)
1492{
1493 return DEVICE_API_GET(can, dev)->get_state(dev, state, err_cnt);
1494}
1495
1514__syscall int can_recover(const struct device *dev, k_timeout_t timeout);
1515
1516#ifdef CONFIG_CAN_MANUAL_RECOVERY_MODE
1517static inline int z_impl_can_recover(const struct device *dev, k_timeout_t timeout)
1518{
1519 const struct can_driver_api *api = DEVICE_API_GET(can, dev);
1520
1521 if (api->recover == NULL) {
1522 return -ENOSYS;
1523 }
1524
1525 return api->recover(dev, timeout);
1526}
1527#endif /* CONFIG_CAN_MANUAL_RECOVERY_MODE */
1528
1542static inline void can_set_state_change_callback(const struct device *dev,
1544 void *user_data)
1545{
1546 DEVICE_API_GET(can, dev)->set_state_change_callback(dev, callback, user_data);
1547}
1548
1550
1556
1569__syscall uint32_t can_stats_get_bit_errors(const struct device *dev);
1570
1571#ifdef CONFIG_CAN_STATS
1572static inline uint32_t z_impl_can_stats_get_bit_errors(const struct device *dev)
1573{
1574 return Z_CAN_GET_STATS(dev).bit_error;
1575}
1576#endif /* CONFIG_CAN_STATS */
1577
1592__syscall uint32_t can_stats_get_bit0_errors(const struct device *dev);
1593
1594#ifdef CONFIG_CAN_STATS
1595static inline uint32_t z_impl_can_stats_get_bit0_errors(const struct device *dev)
1596{
1597 return Z_CAN_GET_STATS(dev).bit0_error;
1598}
1599#endif /* CONFIG_CAN_STATS */
1600
1615__syscall uint32_t can_stats_get_bit1_errors(const struct device *dev);
1616
1617#ifdef CONFIG_CAN_STATS
1618static inline uint32_t z_impl_can_stats_get_bit1_errors(const struct device *dev)
1619{
1620 return Z_CAN_GET_STATS(dev).bit1_error;
1621}
1622#endif /* CONFIG_CAN_STATS */
1623
1636__syscall uint32_t can_stats_get_stuff_errors(const struct device *dev);
1637
1638#ifdef CONFIG_CAN_STATS
1639static inline uint32_t z_impl_can_stats_get_stuff_errors(const struct device *dev)
1640{
1641 return Z_CAN_GET_STATS(dev).stuff_error;
1642}
1643#endif /* CONFIG_CAN_STATS */
1644
1657__syscall uint32_t can_stats_get_crc_errors(const struct device *dev);
1658
1659#ifdef CONFIG_CAN_STATS
1660static inline uint32_t z_impl_can_stats_get_crc_errors(const struct device *dev)
1661{
1662 return Z_CAN_GET_STATS(dev).crc_error;
1663}
1664#endif /* CONFIG_CAN_STATS */
1665
1678__syscall uint32_t can_stats_get_form_errors(const struct device *dev);
1679
1680#ifdef CONFIG_CAN_STATS
1681static inline uint32_t z_impl_can_stats_get_form_errors(const struct device *dev)
1682{
1683 return Z_CAN_GET_STATS(dev).form_error;
1684}
1685#endif /* CONFIG_CAN_STATS */
1686
1699__syscall uint32_t can_stats_get_ack_errors(const struct device *dev);
1700
1701#ifdef CONFIG_CAN_STATS
1702static inline uint32_t z_impl_can_stats_get_ack_errors(const struct device *dev)
1703{
1704 return Z_CAN_GET_STATS(dev).ack_error;
1705}
1706#endif /* CONFIG_CAN_STATS */
1707
1721__syscall uint32_t can_stats_get_rx_overruns(const struct device *dev);
1722
1723#ifdef CONFIG_CAN_STATS
1724static inline uint32_t z_impl_can_stats_get_rx_overruns(const struct device *dev)
1725{
1726 return Z_CAN_GET_STATS(dev).rx_overrun;
1727}
1728#endif /* CONFIG_CAN_STATS */
1729
1731
1737
1746{
1747 static const uint8_t dlc_table[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 12,
1748 16, 20, 24, 32, 48, 64};
1749
1750 return dlc_table[MIN(dlc, ARRAY_SIZE(dlc_table) - 1)];
1751}
1752
1760static inline uint8_t can_bytes_to_dlc(uint8_t num_bytes)
1761{
1762 return num_bytes <= 8 ? num_bytes :
1763 num_bytes <= 12 ? 9 :
1764 num_bytes <= 16 ? 10 :
1765 num_bytes <= 20 ? 11 :
1766 num_bytes <= 24 ? 12 :
1767 num_bytes <= 32 ? 13 :
1768 num_bytes <= 48 ? 14 :
1769 15;
1770}
1771
1779static inline bool can_frame_matches_filter(const struct can_frame *frame,
1780 const struct can_filter *filter)
1781{
1782 if ((frame->flags & CAN_FRAME_IDE) != 0 && (filter->flags & CAN_FILTER_IDE) == 0) {
1783 /* Extended (29-bit) ID frame, standard (11-bit) filter */
1784 return false;
1785 }
1786
1787 if ((frame->flags & CAN_FRAME_IDE) == 0 && (filter->flags & CAN_FILTER_IDE) != 0) {
1788 /* Standard (11-bit) ID frame, extended (29-bit) filter */
1789 return false;
1790 }
1791
1792 if ((frame->id ^ filter->id) & filter->mask) {
1793 /* Masked ID mismatch */
1794 return false;
1795 }
1796
1797 return true;
1798}
1799
1801
1805
1806#ifdef __cplusplus
1807}
1808#endif
1809
1810#include <zephyr/syscalls/can.h>
1811
1812#endif /* ZEPHYR_INCLUDE_DRIVERS_CAN_H_ */
System clock APIs.
#define DEVICE_API_GET(_class, _dev)
Expands to the pointer of a device's API for a given class.
Definition device.h:1449
System error numbers.
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:309
int(* can_set_timing_t)(const struct device *dev, const struct can_timing *timing)
Callback API upon setting CAN bus timing See can_set_timing() for argument description.
Definition can.h:414
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:122
int(* can_get_state_t)(const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt)
Callback API upon getting the CAN controller state See can_get_state() for argument description.
Definition can.h:485
uint32_t can_stats_get_stuff_errors(const struct device *dev)
Get the stuffing error counter for a CAN device.
int(* can_stop_t)(const struct device *dev)
Callback API upon stopping CAN controller See can_stop() for argument description.
Definition can.h:440
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.
uint32_t can_get_bitrate_max(const struct device *dev)
Get maximum supported bitrate.
void(* can_remove_rx_filter_t)(const struct device *dev, int filter_id)
Callback API upon removing an RX filter See can_remove_rx_filter() for argument description.
Definition can.h:473
int(* can_set_mode_t)(const struct device *dev, can_mode_t mode)
Callback API upon setting CAN controller mode See can_set_mode() for argument description.
Definition can.h:446
uint32_t can_stats_get_bit_errors(const struct device *dev)
Get the bit error counter for a CAN device.
int(* can_get_capabilities_t)(const struct device *dev, can_mode_t *cap)
Callback API upon getting CAN controller capabilities See can_get_capabilities() for argument descrip...
Definition can.h:428
uint32_t can_stats_get_crc_errors(const struct device *dev)
Get the CRC error counter for a CAN device.
uint32_t can_get_bitrate_min(const struct device *dev)
Get minimum supported bitrate.
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_add_rx_filter_t)(const struct device *dev, can_rx_callback_t callback, void *user_data, const struct can_filter *filter)
Callback API upon adding an RX filter See can_add_rx_filter() for argument description.
Definition can.h:464
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.
uint32_t can_stats_get_bit1_errors(const struct device *dev)
Get the bit1 error counter for a CAN device.
int(* can_get_core_clock_t)(const struct device *dev, uint32_t *rate)
Callback API upon getting the CAN core clock rate See can_get_core_clock() for argument description.
Definition can.h:500
uint32_t can_stats_get_ack_errors(const struct device *dev)
Get the acknowledge error counter for a CAN device.
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_set_timing_data_t)(const struct device *dev, const struct can_timing *timing_data)
Optional callback API upon setting CAN FD bus timing for the data phase.
Definition can.h:421
uint32_t can_stats_get_bit0_errors(const struct device *dev)
Get the bit0 error counter for a CAN device.
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:1760
uint32_t can_stats_get_rx_overruns(const struct device *dev)
Get the RX overrun counter for a CAN device.
int(* can_send_t)(const struct device *dev, const struct can_frame *frame, k_timeout_t timeout, can_tx_callback_t callback, void *user_data)
Callback API upon sending a CAN frame See can_send() for argument description.
Definition can.h:455
int(* can_recover_t)(const struct device *dev, k_timeout_t timeout)
Optional callback API upon manually recovering the CAN controller from bus-off state See can_recover(...
Definition can.h:479
int(* can_get_max_filters_t)(const struct device *dev, bool ide)
Optional callback API upon getting the maximum number of concurrent CAN RX filters See can_get_max_fi...
Definition can.h:506
#define CAN_FRAME_IDE
Frame uses extended (29-bit) CAN ID.
Definition can.h:148
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:1745
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:298
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:1779
void(* can_tx_callback_t)(const struct device *dev, int error, void *user_data)
Defines the application callback handler function signature.
Definition can.h:289
int can_get_state(const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt)
Get current CAN controller state.
can_mode_t can_get_mode(const struct device *dev)
Get the operation mode of the CAN controller.
const struct can_timing * can_get_timing_max(const struct device *dev)
Get the maximum supported timing parameter values.
uint32_t can_stats_get_form_errors(const struct device *dev)
Get the form error counter for a CAN device.
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:127
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:1542
void(* can_set_state_change_callback_t)(const struct device *dev, can_state_change_callback_t callback, void *user_data)
Callback API upon setting a state change callback See can_set_state_change_callback() for argument de...
Definition can.h:492
const struct device * can_get_transceiver(const struct device *dev)
Get the CAN transceiver associated with the CAN controller.
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.
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.
int(* can_start_t)(const struct device *dev)
Callback API upon starting CAN controller See can_start() for argument description.
Definition can.h:434
#define CAN_FILTER_IDE
Filter matches frames with extended (29-bit) CAN IDs.
Definition can.h:208
@ CAN_STATE_ERROR_ACTIVE
Error-active state (RX/TX error count < 96).
Definition can.h:129
@ CAN_STATE_ERROR_WARNING
Error-warning state (RX/TX error count < 128).
Definition can.h:131
@ CAN_STATE_STOPPED
CAN controller is stopped and does not participate in CAN communication.
Definition can.h:137
@ CAN_STATE_BUS_OFF
Bus-off state (RX/TX error count >= 256).
Definition can.h:135
@ CAN_STATE_ERROR_PASSIVE
Error-passive state (RX/TX error count < 256).
Definition can.h:133
#define STATS_SECT_END
Ends a stats group struct definition.
Definition stats.h:169
#define STATS_NAME(sectname__, entry__)
Add an entry name to a statistics entry name map.
Definition stats.h:519
#define STATS_SECT_ENTRY32(var__)
Declares a 32-bit stat entry inside a group struct.
Definition stats.h:204
#define STATS_NAME_START(sectname__)
Begin a statistics entry name map.
Definition stats.h:510
#define STATS_NAME_END(sectname__)
End a statistics entry name map.
Definition stats.h:527
#define STATS_SECT_START(group__)
Begins a stats group struct definition.
Definition stats.h:181
#define MIN(a, b)
Obtain the minimum of two values.
Definition util.h:406
#define ARRAY_SIZE(array)
Number of elements in the given array.
Definition util.h:118
#define DIV_ROUND_UP(n, d)
Divide and round up.
Definition util.h:348
#define ENOSYS
Function not implemented.
Definition errno.h:83
#define NULL
Definition iar_missing_defs.h:20
Public kernel APIs.
state
Definition parser_state.h:29
Statistics.
__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:229
uint8_t tx_err_cnt
Value of the CAN controller transmit error counter.
Definition can.h:231
uint8_t rx_err_cnt
Value of the CAN controller receive error counter.
Definition can.h:233
CAN specific device state which allows for CAN device class specific additions.
Definition can.h:627
struct device_state devstate
Common device state.
Definition can.h:629
struct stats_can stats
CAN device statistics.
Definition can.h:631
@driver_ops{CAN Controller}
Definition can.h:511
can_get_capabilities_t get_capabilities
@driver_ops_mandatory Get the supported modes of the CAN controller.
Definition can.h:515
can_set_timing_data_t set_timing_data
@driver_ops_optional Configure the bus timing for the data phase of a CAN FD controller.
Definition can.h:576
can_get_max_filters_t get_max_filters
@driver_ops_optional Get maximum number of RX filters.
Definition can.h:566
can_set_timing_t set_timing
@driver_ops_mandatory Configure the bus timing of a CAN controller.
Definition can.h:531
can_stop_t stop
@driver_ops_mandatory Stop the CAN controller.
Definition can.h:523
can_set_state_change_callback_t set_state_change_callback
@driver_ops_mandatory Set a callback for CAN controller state change events.
Definition can.h:558
can_add_rx_filter_t add_rx_filter
@driver_ops_mandatory Add a callback function for a given CAN filter.
Definition can.h:539
struct can_timing timing_data_min
Min values for the timing registers during the data phase.
Definition can.h:580
struct can_timing timing_max
@driver_ops_mandatory Max values for the timing registers
Definition can.h:570
can_send_t send
@driver_ops_mandatory Queue a CAN frame for transmission on the CAN bus.
Definition can.h:535
can_get_state_t get_state
@driver_ops_mandatory Get current CAN controller state.
Definition can.h:554
can_recover_t recover
@driver_ops_optional Recover from bus-off state.
Definition can.h:549
struct can_timing timing_data_max
Max values for the timing registers during the data phase.
Definition can.h:584
can_remove_rx_filter_t remove_rx_filter
@driver_ops_mandatory Remove a CAN RX filter.
Definition can.h:543
can_start_t start
@driver_ops_mandatory Start the CAN controller.
Definition can.h:519
can_set_mode_t set_mode
@driver_ops_mandatory Set the CAN controller to the given operation mode.
Definition can.h:527
can_get_core_clock_t get_core_clock
@driver_ops_mandatory Get the CAN core clock rate.
Definition can.h:562
struct can_timing timing_min
@driver_ops_mandatory Min values for the timing registers
Definition can.h:568
Common CAN controller driver configuration.
Definition can.h:342
uint16_t sample_point
Initial CAN classic/CAN FD arbitration phase sample point in permille.
Definition can.h:352
uint32_t max_bitrate
The maximum bitrate supported by the CAN controller/transceiver combination.
Definition can.h:348
uint32_t bitrate
Initial CAN classic/CAN FD arbitration phase bitrate.
Definition can.h:350
const struct device * phy
Pointer to the device structure for the associated CAN transceiver device or NULL.
Definition can.h:344
uint32_t min_bitrate
The minimum bitrate supported by the CAN controller/transceiver combination.
Definition can.h:346
uint16_t sample_point_data
Initial CAN FD data phase sample point in permille.
Definition can.h:355
uint32_t bitrate_data
Initial CAN FD data phase bitrate.
Definition can.h:357
Common CAN controller driver data.
Definition can.h:399
can_mode_t mode
Current CAN controller mode.
Definition can.h:401
bool started
True if the CAN controller is started, false otherwise.
Definition can.h:403
void * state_change_cb_user_data
State change callback user data pointer or NULL.
Definition can.h:407
can_state_change_callback_t state_change_cb
State change callback function pointer or NULL.
Definition can.h:405
CAN filter structure.
Definition can.h:215
uint32_t mask
CAN identifier matching mask.
Definition can.h:221
uint8_t flags
Flags.
Definition can.h:223
uint32_t id
CAN identifier to match.
Definition can.h:217
CAN frame structure.
Definition can.h:169
uint8_t dlc
Data Length Code (DLC) indicating data length in bytes.
Definition can.h:173
uint8_t flags
Flags.
Definition can.h:175
uint32_t id
Standard (11-bit) or extended (29-bit) CAN identifier.
Definition can.h:171
uint8_t data[CAN_MAX_DLEN]
Payload data accessed as unsigned 8 bit values.
Definition can.h:194
uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))]
Payload data accessed as unsigned 32 bit values.
Definition can.h:196
uint16_t timestamp
Captured value of the free-running timer in the CAN controller when this frame was received.
Definition can.h:184
CAN bus timing structure.
Definition can.h:268
uint16_t sjw
Synchronisation jump width.
Definition can.h:270
uint16_t phase_seg2
Phase segment 2.
Definition can.h:276
uint16_t prescaler
Prescaler value.
Definition can.h:278
uint16_t phase_seg1
Phase segment 1.
Definition can.h:274
uint16_t prop_seg
Propagation segment.
Definition can.h:272
Runtime device dynamic structure (in RAM) per driver instance.
Definition device.h:458
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
void * data
Address of the device instance private data.
Definition device.h:523
const void * config
Address of device instance config information.
Definition device.h:517
Message Queue Structure.
Definition kernel.h:5316
Kernel timeout type.
Definition clock.h:65
Misc utilities.