Zephyr API Documentation 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, CONFIG_CAN_DEFAULT_BITRATE), \
374 .sample_point = DT_PROP_OR(node_id, sample_point, 0), \
375 IF_ENABLED(CONFIG_CAN_FD_MODE, \
376 (.bitrate_data = DT_PROP_OR(node_id, bitrate_data, \
377 CONFIG_CAN_DEFAULT_BITRATE_DATA), \
378 .sample_point_data = DT_PROP_OR(node_id, sample_point_data, 0),)) \
379 }
380
389#define CAN_DT_DRIVER_CONFIG_INST_GET(inst, _min_bitrate, _max_bitrate) \
390 CAN_DT_DRIVER_CONFIG_GET(DT_DRV_INST(inst), _min_bitrate, _max_bitrate)
391
408
413typedef int (*can_set_timing_t)(const struct device *dev,
414 const struct can_timing *timing);
415
420typedef int (*can_set_timing_data_t)(const struct device *dev,
421 const struct can_timing *timing_data);
422
427typedef int (*can_get_capabilities_t)(const struct device *dev, can_mode_t *cap);
428
433typedef int (*can_start_t)(const struct device *dev);
434
439typedef int (*can_stop_t)(const struct device *dev);
440
445typedef int (*can_set_mode_t)(const struct device *dev, can_mode_t mode);
446
454typedef int (*can_send_t)(const struct device *dev,
455 const struct can_frame *frame,
456 k_timeout_t timeout, can_tx_callback_t callback,
457 void *user_data);
458
463typedef int (*can_add_rx_filter_t)(const struct device *dev,
464 can_rx_callback_t callback,
465 void *user_data,
466 const struct can_filter *filter);
467
472typedef void (*can_remove_rx_filter_t)(const struct device *dev, int filter_id);
473
478typedef int (*can_recover_t)(const struct device *dev, k_timeout_t timeout);
479
484typedef int (*can_get_state_t)(const struct device *dev, enum can_state *state,
485 struct can_bus_err_cnt *err_cnt);
486
491typedef void(*can_set_state_change_callback_t)(const struct device *dev,
493 void *user_data);
494
499typedef int (*can_get_core_clock_t)(const struct device *dev, uint32_t *rate);
500
505typedef int (*can_get_max_filters_t)(const struct device *dev, bool ide);
506
586
589
590#if defined(CONFIG_CAN_STATS) || defined(__DOXYGEN__)
591
592#include <zephyr/stats/stats.h>
593
595
597STATS_SECT_ENTRY32(bit_error)
598STATS_SECT_ENTRY32(bit0_error)
599STATS_SECT_ENTRY32(bit1_error)
600STATS_SECT_ENTRY32(stuff_error)
601STATS_SECT_ENTRY32(crc_error)
602STATS_SECT_ENTRY32(form_error)
603STATS_SECT_ENTRY32(ack_error)
604STATS_SECT_ENTRY32(rx_overrun)
606
608STATS_NAME(can, bit_error)
609STATS_NAME(can, bit0_error)
610STATS_NAME(can, bit1_error)
611STATS_NAME(can, stuff_error)
612STATS_NAME(can, crc_error)
613STATS_NAME(can, form_error)
614STATS_NAME(can, ack_error)
615STATS_NAME(can, rx_overrun)
616STATS_NAME_END(can);
617
619
630 struct stats_can stats;
631};
632
634
638#define Z_CAN_GET_STATS(dev_) \
639 CONTAINER_OF(dev_->state, struct can_device_state, devstate)->stats
640
642
661#define CAN_STATS_BIT_ERROR_INC(dev_) \
662 STATS_INC(Z_CAN_GET_STATS(dev_), bit_error)
663
677#define CAN_STATS_BIT0_ERROR_INC(dev_) \
678 do { \
679 STATS_INC(Z_CAN_GET_STATS(dev_), bit0_error); \
680 CAN_STATS_BIT_ERROR_INC(dev_); \
681 } while (0)
682
696#define CAN_STATS_BIT1_ERROR_INC(dev_) \
697 do { \
698 STATS_INC(Z_CAN_GET_STATS(dev_), bit1_error); \
699 CAN_STATS_BIT_ERROR_INC(dev_); \
700 } while (0)
701
712#define CAN_STATS_STUFF_ERROR_INC(dev_) \
713 STATS_INC(Z_CAN_GET_STATS(dev_), stuff_error)
714
725#define CAN_STATS_CRC_ERROR_INC(dev_) \
726 STATS_INC(Z_CAN_GET_STATS(dev_), crc_error)
727
738#define CAN_STATS_FORM_ERROR_INC(dev_) \
739 STATS_INC(Z_CAN_GET_STATS(dev_), form_error)
740
751#define CAN_STATS_ACK_ERROR_INC(dev_) \
752 STATS_INC(Z_CAN_GET_STATS(dev_), ack_error)
753
765#define CAN_STATS_RX_OVERRUN_INC(dev_) \
766 STATS_INC(Z_CAN_GET_STATS(dev_), rx_overrun)
767
778#define CAN_STATS_RESET(dev_) \
779 stats_reset(&(Z_CAN_GET_STATS(dev_).s_hdr))
780
782
788#define Z_CAN_DEVICE_STATE_DEFINE(dev_id) \
789 static struct can_device_state Z_DEVICE_STATE_NAME(dev_id) \
790 __attribute__((__section__(".z_devstate")))
791
800#define Z_CAN_INIT_FN(dev_id, init_fn) \
801 static inline int UTIL_CAT(dev_id, _init)(const struct device *dev) \
802 { \
803 struct can_device_state *state = \
804 CONTAINER_OF(dev->state, struct can_device_state, devstate); \
805 stats_init(&state->stats.s_hdr, STATS_SIZE_32, 8, \
806 STATS_NAME_INIT_PARMS(can)); \
807 stats_register(dev->name, &(state->stats.s_hdr)); \
808 if (!is_null_no_warn(init_fn)) { \
809 return init_fn(dev); \
810 } \
811 \
812 return 0; \
813 }
814
816
837#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
838 prio, api, ...) \
839 Z_CAN_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
840 Z_CAN_INIT_FN(Z_DEVICE_DT_DEV_ID(node_id), init_fn) \
841 Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
842 DEVICE_DT_NAME(node_id), \
843 &UTIL_CAT(Z_DEVICE_DT_DEV_ID(node_id), _init), \
844 NULL, Z_DEVICE_DT_FLAGS(node_id), pm, data, \
845 config, level, prio, api, \
846 &(Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)).devstate), \
847 __VA_ARGS__)
848
849#else /* CONFIG_CAN_STATS */
850
851#define CAN_STATS_BIT_ERROR_INC(dev_)
852#define CAN_STATS_BIT0_ERROR_INC(dev_)
853#define CAN_STATS_BIT1_ERROR_INC(dev_)
854#define CAN_STATS_STUFF_ERROR_INC(dev_)
855#define CAN_STATS_CRC_ERROR_INC(dev_)
856#define CAN_STATS_FORM_ERROR_INC(dev_)
857#define CAN_STATS_ACK_ERROR_INC(dev_)
858#define CAN_STATS_RX_OVERRUN_INC(dev_)
859#define CAN_STATS_RESET(dev_)
860
861#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
862 prio, api, ...) \
863 DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
864 prio, api, __VA_ARGS__)
865
866#endif /* CONFIG_CAN_STATS */
867
875#define CAN_DEVICE_DT_INST_DEFINE(inst, ...) \
876 CAN_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
877
883
896__syscall int can_get_core_clock(const struct device *dev, uint32_t *rate);
897
898static inline int z_impl_can_get_core_clock(const struct device *dev, uint32_t *rate)
899{
900 return DEVICE_API_GET(can, dev)->get_core_clock(dev, rate);
901}
902
919__syscall uint32_t can_get_bitrate_min(const struct device *dev);
920
921static inline uint32_t z_impl_can_get_bitrate_min(const struct device *dev)
922{
923 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
924
925 return common->min_bitrate;
926}
927
944__syscall uint32_t can_get_bitrate_max(const struct device *dev);
945
946static inline uint32_t z_impl_can_get_bitrate_max(const struct device *dev)
947{
948 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
949
950 return common->max_bitrate;
951}
952
960__syscall const struct can_timing *can_get_timing_min(const struct device *dev);
961
962static inline const struct can_timing *z_impl_can_get_timing_min(const struct device *dev)
963{
964 return &DEVICE_API_GET(can, dev)->timing_min;
965}
966
974__syscall const struct can_timing *can_get_timing_max(const struct device *dev);
975
976static inline const struct can_timing *z_impl_can_get_timing_max(const struct device *dev)
977{
978 return &DEVICE_API_GET(can, dev)->timing_max;
979}
980
1007__syscall int can_calc_timing(const struct device *dev, struct can_timing *res,
1008 uint32_t bitrate, uint16_t sample_pnt);
1009
1023__syscall const struct can_timing *can_get_timing_data_min(const struct device *dev);
1024
1025#ifdef CONFIG_CAN_FD_MODE
1026static inline const struct can_timing *z_impl_can_get_timing_data_min(const struct device *dev)
1027{
1028 return &DEVICE_API_GET(can, dev)->timing_data_min;
1029}
1030#endif /* CONFIG_CAN_FD_MODE */
1031
1045__syscall const struct can_timing *can_get_timing_data_max(const struct device *dev);
1046
1047#ifdef CONFIG_CAN_FD_MODE
1048static inline const struct can_timing *z_impl_can_get_timing_data_max(const struct device *dev)
1049{
1050 return &DEVICE_API_GET(can, dev)->timing_data_max;
1051}
1052#endif /* CONFIG_CAN_FD_MODE */
1053
1074__syscall int can_calc_timing_data(const struct device *dev, struct can_timing *res,
1075 uint32_t bitrate, uint16_t sample_pnt);
1076
1094__syscall int can_set_timing_data(const struct device *dev,
1095 const struct can_timing *timing_data);
1096
1125__syscall int can_set_bitrate_data(const struct device *dev, uint32_t bitrate_data);
1126
1140__syscall int can_set_timing(const struct device *dev,
1141 const struct can_timing *timing);
1142
1156__syscall int can_get_capabilities(const struct device *dev, can_mode_t *cap);
1157
1158static inline int z_impl_can_get_capabilities(const struct device *dev, can_mode_t *cap)
1159{
1160 return DEVICE_API_GET(can, dev)->get_capabilities(dev, cap);
1161}
1162
1172__syscall const struct device *can_get_transceiver(const struct device *dev);
1173
1174static const struct device *z_impl_can_get_transceiver(const struct device *dev)
1175{
1176 const struct can_driver_config *common = (const struct can_driver_config *)dev->config;
1177
1178 return common->phy;
1179}
1180
1198__syscall int can_start(const struct device *dev);
1199
1200static inline int z_impl_can_start(const struct device *dev)
1201{
1202 return DEVICE_API_GET(can, dev)->start(dev);
1203}
1204
1220__syscall int can_stop(const struct device *dev);
1221
1222static inline int z_impl_can_stop(const struct device *dev)
1223{
1224 return DEVICE_API_GET(can, dev)->stop(dev);
1225}
1226
1238__syscall int can_set_mode(const struct device *dev, can_mode_t mode);
1239
1240static inline int z_impl_can_set_mode(const struct device *dev, can_mode_t mode)
1241{
1242 return DEVICE_API_GET(can, dev)->set_mode(dev, mode);
1243}
1244
1252__syscall can_mode_t can_get_mode(const struct device *dev);
1253
1254static inline can_mode_t z_impl_can_get_mode(const struct device *dev)
1255{
1256 const struct can_driver_data *common = (const struct can_driver_data *)dev->data;
1257
1258 return common->mode;
1259}
1260
1286__syscall int can_set_bitrate(const struct device *dev, uint32_t bitrate);
1287
1289
1295
1340__syscall int can_send(const struct device *dev, const struct can_frame *frame,
1341 k_timeout_t timeout, can_tx_callback_t callback,
1342 void *user_data);
1343
1345
1351
1376int can_add_rx_filter(const struct device *dev, can_rx_callback_t callback,
1377 void *user_data, const struct can_filter *filter);
1378
1389#define CAN_MSGQ_DEFINE(name, max_frames) \
1390 K_MSGQ_DEFINE_TYPE(name, struct can_frame, max_frames)
1391
1420__syscall int can_add_rx_filter_msgq(const struct device *dev, struct k_msgq *msgq,
1421 const struct can_filter *filter);
1422
1432__syscall void can_remove_rx_filter(const struct device *dev, int filter_id);
1433
1434static inline void z_impl_can_remove_rx_filter(const struct device *dev, int filter_id)
1435{
1436 DEVICE_API_GET(can, dev)->remove_rx_filter(dev, filter_id);
1437}
1438
1452__syscall int can_get_max_filters(const struct device *dev, bool ide);
1453
1454static inline int z_impl_can_get_max_filters(const struct device *dev, bool ide)
1455{
1456 const struct can_driver_api *api = DEVICE_API_GET(can, dev);
1457
1458 if (api->get_max_filters == NULL) {
1459 return -ENOSYS;
1460 }
1461
1462 return api->get_max_filters(dev, ide);
1463}
1464
1466
1472
1486__syscall int can_get_state(const struct device *dev, enum can_state *state,
1487 struct can_bus_err_cnt *err_cnt);
1488
1489static inline int z_impl_can_get_state(const struct device *dev, enum can_state *state,
1490 struct can_bus_err_cnt *err_cnt)
1491{
1492 return DEVICE_API_GET(can, dev)->get_state(dev, state, err_cnt);
1493}
1494
1513__syscall int can_recover(const struct device *dev, k_timeout_t timeout);
1514
1515#ifdef CONFIG_CAN_MANUAL_RECOVERY_MODE
1516static inline int z_impl_can_recover(const struct device *dev, k_timeout_t timeout)
1517{
1518 const struct can_driver_api *api = DEVICE_API_GET(can, dev);
1519
1520 if (api->recover == NULL) {
1521 return -ENOSYS;
1522 }
1523
1524 return api->recover(dev, timeout);
1525}
1526#endif /* CONFIG_CAN_MANUAL_RECOVERY_MODE */
1527
1541static inline void can_set_state_change_callback(const struct device *dev,
1543 void *user_data)
1544{
1545 DEVICE_API_GET(can, dev)->set_state_change_callback(dev, callback, user_data);
1546}
1547
1549
1555
1568__syscall uint32_t can_stats_get_bit_errors(const struct device *dev);
1569
1570#ifdef CONFIG_CAN_STATS
1571static inline uint32_t z_impl_can_stats_get_bit_errors(const struct device *dev)
1572{
1573 return Z_CAN_GET_STATS(dev).bit_error;
1574}
1575#endif /* CONFIG_CAN_STATS */
1576
1591__syscall uint32_t can_stats_get_bit0_errors(const struct device *dev);
1592
1593#ifdef CONFIG_CAN_STATS
1594static inline uint32_t z_impl_can_stats_get_bit0_errors(const struct device *dev)
1595{
1596 return Z_CAN_GET_STATS(dev).bit0_error;
1597}
1598#endif /* CONFIG_CAN_STATS */
1599
1614__syscall uint32_t can_stats_get_bit1_errors(const struct device *dev);
1615
1616#ifdef CONFIG_CAN_STATS
1617static inline uint32_t z_impl_can_stats_get_bit1_errors(const struct device *dev)
1618{
1619 return Z_CAN_GET_STATS(dev).bit1_error;
1620}
1621#endif /* CONFIG_CAN_STATS */
1622
1635__syscall uint32_t can_stats_get_stuff_errors(const struct device *dev);
1636
1637#ifdef CONFIG_CAN_STATS
1638static inline uint32_t z_impl_can_stats_get_stuff_errors(const struct device *dev)
1639{
1640 return Z_CAN_GET_STATS(dev).stuff_error;
1641}
1642#endif /* CONFIG_CAN_STATS */
1643
1656__syscall uint32_t can_stats_get_crc_errors(const struct device *dev);
1657
1658#ifdef CONFIG_CAN_STATS
1659static inline uint32_t z_impl_can_stats_get_crc_errors(const struct device *dev)
1660{
1661 return Z_CAN_GET_STATS(dev).crc_error;
1662}
1663#endif /* CONFIG_CAN_STATS */
1664
1677__syscall uint32_t can_stats_get_form_errors(const struct device *dev);
1678
1679#ifdef CONFIG_CAN_STATS
1680static inline uint32_t z_impl_can_stats_get_form_errors(const struct device *dev)
1681{
1682 return Z_CAN_GET_STATS(dev).form_error;
1683}
1684#endif /* CONFIG_CAN_STATS */
1685
1698__syscall uint32_t can_stats_get_ack_errors(const struct device *dev);
1699
1700#ifdef CONFIG_CAN_STATS
1701static inline uint32_t z_impl_can_stats_get_ack_errors(const struct device *dev)
1702{
1703 return Z_CAN_GET_STATS(dev).ack_error;
1704}
1705#endif /* CONFIG_CAN_STATS */
1706
1720__syscall uint32_t can_stats_get_rx_overruns(const struct device *dev);
1721
1722#ifdef CONFIG_CAN_STATS
1723static inline uint32_t z_impl_can_stats_get_rx_overruns(const struct device *dev)
1724{
1725 return Z_CAN_GET_STATS(dev).rx_overrun;
1726}
1727#endif /* CONFIG_CAN_STATS */
1728
1730
1736
1745{
1746 static const uint8_t dlc_table[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 12,
1747 16, 20, 24, 32, 48, 64};
1748
1749 return dlc_table[MIN(dlc, ARRAY_SIZE(dlc_table) - 1)];
1750}
1751
1759static inline uint8_t can_bytes_to_dlc(uint8_t num_bytes)
1760{
1761 return num_bytes <= 8 ? num_bytes :
1762 num_bytes <= 12 ? 9 :
1763 num_bytes <= 16 ? 10 :
1764 num_bytes <= 20 ? 11 :
1765 num_bytes <= 24 ? 12 :
1766 num_bytes <= 32 ? 13 :
1767 num_bytes <= 48 ? 14 :
1768 15;
1769}
1770
1778static inline bool can_frame_matches_filter(const struct can_frame *frame,
1779 const struct can_filter *filter)
1780{
1781 if ((frame->flags & CAN_FRAME_IDE) != 0 && (filter->flags & CAN_FILTER_IDE) == 0) {
1782 /* Extended (29-bit) ID frame, standard (11-bit) filter */
1783 return false;
1784 }
1785
1786 if ((frame->flags & CAN_FRAME_IDE) == 0 && (filter->flags & CAN_FILTER_IDE) != 0) {
1787 /* Standard (11-bit) ID frame, extended (29-bit) filter */
1788 return false;
1789 }
1790
1791 if ((frame->id ^ filter->id) & filter->mask) {
1792 /* Masked ID mismatch */
1793 return false;
1794 }
1795
1796 return true;
1797}
1798
1800
1804
1805#ifdef __cplusplus
1806}
1807#endif
1808
1809#include <zephyr/syscalls/can.h>
1810
1811#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.
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:413
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:484
int(* can_stop_t)(const struct device *dev)
Callback API upon stopping CAN controller See can_stop() for argument description.
Definition can.h:439
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:472
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:445
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:427
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:463
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:499
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:420
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:454
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:478
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:505
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:491
int(* can_start_t)(const struct device *dev)
Callback API upon starting CAN controller See can_start() for argument description.
Definition can.h:433
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_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
uint32_t can_stats_get_stuff_errors(const struct device *dev)
Get the stuffing error counter for a CAN device.
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.
uint32_t can_stats_get_bit_errors(const struct device *dev)
Get the bit error counter for a CAN device.
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_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.
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.
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:1759
uint32_t can_stats_get_rx_overruns(const struct device *dev)
Get the RX overrun counter for a CAN device.
#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:1744
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:1778
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:1541
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.
#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
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:626
struct device_state devstate
Common device state.
Definition can.h:628
struct stats_can stats
CAN device statistics.
Definition can.h:630
<span class="mlabel">Driver Operations</span> CAN Controller driver operations
Definition can.h:510
can_get_capabilities_t get_capabilities
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:514
can_set_timing_data_t set_timing_data
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:575
can_get_max_filters_t get_max_filters
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:565
can_set_timing_t set_timing
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:530
can_stop_t stop
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:522
can_set_state_change_callback_t set_state_change_callback
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:557
can_add_rx_filter_t add_rx_filter
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:538
struct can_timing timing_data_min
Min values for the timing registers during the data phase.
Definition can.h:579
struct can_timing timing_max
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:569
can_send_t send
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:534
can_get_state_t get_state
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:553
can_recover_t recover
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:548
struct can_timing timing_data_max
Max values for the timing registers during the data phase.
Definition can.h:583
can_remove_rx_filter_t remove_rx_filter
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:542
can_start_t start
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:518
can_set_mode_t set_mode
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:526
can_get_core_clock_t get_core_clock
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:561
struct can_timing timing_min
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:567
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:398
can_mode_t mode
Current CAN controller mode.
Definition can.h:400
bool started
True if the CAN controller is started, false otherwise.
Definition can.h:402
void * state_change_cb_user_data
State change callback user data pointer or NULL.
Definition can.h:406
can_state_change_callback_t state_change_cb
State change callback function pointer or NULL.
Definition can.h:404
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:5275
Kernel timeout type.
Definition clock.h:65
Misc utilities.