can.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the CAN drivers.
  5. */
  6. /*
  7. * Copyright (c) 2018 Alexander Wachter
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_CAN_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_CAN_H_
  13. /**
  14. * @brief CAN Interface
  15. * @defgroup can_interface CAN Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. #include <string.h>
  22. #include <sys/util.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #define CAN_EX_ID (1 << 31)
  27. #define CAN_MAX_STD_ID (0x7FF)
  28. #define CAN_STD_ID_MASK CAN_MAX_STD_ID
  29. #define CAN_EXT_ID_MASK (0x1FFFFFFF)
  30. #define CAN_MAX_DLC (8)
  31. #define CANFD_MAX_DLC CONFIG_CANFD_MAX_DLC
  32. #ifndef CONFIG_CANFD_MAX_DLC
  33. #define CAN_MAX_DLEN 8
  34. #else
  35. #if CONFIG_CANFD_MAX_DLC <= 8
  36. #define CAN_MAX_DLEN CONFIG_CANFD_MAX_DLC
  37. #elif CONFIG_CANFD_MAX_DLC <= 12
  38. #define CAN_MAX_DLEN CONFIG_CANFD_MAX_DLC + (CONFIG_CANFD_MAX_DLC - 8) * 4
  39. #elif CONFIG_CANFD_MAX_DLC == 13
  40. #define CAN_MAX_DLEN 32
  41. #elif CONFIG_CANFD_MAX_DLC == 14
  42. #define CAN_MAX_DLEN 48
  43. #elif CONFIG_CANFD_MAX_DLC == 15
  44. #define CAN_MAX_DLEN 64
  45. #endif
  46. #endif /* CONFIG_CANFD_MAX_DLC */
  47. /* CAN_TX_* are the error flags from tx_callback and send.*/
  48. /** send successfully */
  49. #define CAN_TX_OK (0)
  50. /** general send error */
  51. #define CAN_TX_ERR (-2)
  52. /** bus arbitration lost during sending */
  53. #define CAN_TX_ARB_LOST (-3)
  54. /** controller is in bus off state */
  55. #define CAN_TX_BUS_OFF (-4)
  56. /** unexpected error */
  57. #define CAN_TX_UNKNOWN (-5)
  58. /** invalid parameter */
  59. #define CAN_TX_EINVAL (-22)
  60. /** attach_* failed because there is no unused filter left*/
  61. #define CAN_NO_FREE_FILTER (-1)
  62. /** operation timed out*/
  63. #define CAN_TIMEOUT (-1)
  64. /**
  65. * @brief Statically define and initialize a can message queue.
  66. *
  67. * The message queue's ring buffer contains space for @a size messages.
  68. *
  69. * @param name Name of the message queue.
  70. * @param size Number of can messages.
  71. */
  72. #define CAN_DEFINE_MSGQ(name, size) \
  73. K_MSGQ_DEFINE(name, sizeof(struct zcan_frame), size, 4)
  74. /**
  75. * @brief can_ide enum
  76. * Define if the message has a standard (11bit) or extended (29bit)
  77. * identifier
  78. */
  79. enum can_ide {
  80. CAN_STANDARD_IDENTIFIER,
  81. CAN_EXTENDED_IDENTIFIER
  82. };
  83. /**
  84. * @brief can_rtr enum
  85. * Define if the message is a data or remote frame
  86. */
  87. enum can_rtr {
  88. CAN_DATAFRAME,
  89. CAN_REMOTEREQUEST
  90. };
  91. /**
  92. * @brief can_mode enum
  93. * Defines the mode of the can controller
  94. */
  95. enum can_mode {
  96. /*Normal mode*/
  97. CAN_NORMAL_MODE,
  98. /*Controller is not allowed to send dominant bits*/
  99. CAN_SILENT_MODE,
  100. /*Controller is in loopback mode (receive own messages)*/
  101. CAN_LOOPBACK_MODE,
  102. /*Combination of loopback and silent*/
  103. CAN_SILENT_LOOPBACK_MODE
  104. };
  105. /**
  106. * @brief can_state enum
  107. * Defines the possible states of the CAN bus
  108. */
  109. enum can_state {
  110. CAN_ERROR_ACTIVE,
  111. CAN_ERROR_PASSIVE,
  112. CAN_BUS_OFF,
  113. CAN_BUS_UNKNOWN
  114. };
  115. /*
  116. * Controller Area Network Identifier structure for Linux compatibility.
  117. *
  118. * The fields in this type are:
  119. *
  120. * bit 0-28 : CAN identifier (11/29 bit)
  121. * bit 29 : error message frame flag (0 = data frame, 1 = error message)
  122. * bit 30 : remote transmission request flag (1 = rtr frame)
  123. * bit 31 : frame format flag (0 = standard 11 bit, 1 = extended 29 bit)
  124. */
  125. typedef uint32_t canid_t;
  126. /**
  127. * @brief CAN frame structure that is compatible with Linux. This is mainly
  128. * used by Socket CAN code.
  129. *
  130. * @details Used to pass CAN messages from userspace to the socket CAN and vice
  131. * versa.
  132. */
  133. struct can_frame {
  134. /** 32 bit CAN_ID + EFF/RTR/ERR flags */
  135. canid_t can_id;
  136. /** The length of the message */
  137. uint8_t can_dlc;
  138. /** @cond INTERNAL_HIDDEN */
  139. uint8_t pad; /* padding */
  140. uint8_t res0; /* reserved / padding */
  141. uint8_t res1; /* reserved / padding */
  142. /** @endcond */
  143. /** The message data */
  144. uint8_t data[CAN_MAX_DLEN];
  145. };
  146. /**
  147. * @brief CAN filter that is compatible with Linux. This is mainly used by
  148. * Socket CAN code.
  149. *
  150. * @details A filter matches, when "received_can_id & mask == can_id & mask"
  151. */
  152. struct can_filter {
  153. canid_t can_id;
  154. canid_t can_mask;
  155. };
  156. /**
  157. * @brief CAN message structure
  158. *
  159. * Used to pass can messages from userspace to the driver and
  160. * from driver to userspace
  161. *
  162. */
  163. struct zcan_frame {
  164. /** Message identifier*/
  165. uint32_t id : 29;
  166. /** Frame is in the CAN-FD frame format */
  167. uint32_t fd : 1;
  168. /** Set the message to a transmission request instead of data frame
  169. * use can_rtr enum for assignment
  170. */
  171. uint32_t rtr : 1;
  172. /** Indicates the identifier type (standard or extended)
  173. * use can_ide enum for assignment
  174. */
  175. uint32_t id_type : 1;
  176. /** The length of the message (max. 8) in byte */
  177. uint8_t dlc;
  178. /** Baud Rate Switch. Frame transfer with different timing during
  179. * the data phase. Only valid for CAN-FD
  180. */
  181. uint8_t brs : 1;
  182. /** Reserved for future flags */
  183. uint8_t res : 7;
  184. #if defined(CONFIG_CAN_RX_TIMESTAMP)
  185. /** Timer value of the CAN free-running timer.
  186. * The timer is incremented every bit time and captured at the start
  187. * of frame bit (SOF).
  188. */
  189. uint16_t timestamp;
  190. #else
  191. /** @cond INTERNAL_HIDDEN */
  192. uint8_t res0; /* reserved / padding */
  193. uint8_t res1; /* reserved / padding */
  194. /** @endcond */
  195. #endif
  196. /** The frame payload data. */
  197. union {
  198. uint8_t data[CAN_MAX_DLEN];
  199. uint32_t data_32[ceiling_fraction(CAN_MAX_DLEN, sizeof(uint32_t))];
  200. };
  201. };
  202. /**
  203. * @brief CAN filter structure
  204. *
  205. * Used to pass can identifier filter information to the driver.
  206. * rtr_mask and *_id_mask are used to mask bits of the rtr and id fields.
  207. * If the mask bit is 0, the value of the corresponding bit in the id or rtr
  208. * field don't care for the filter matching.
  209. *
  210. */
  211. struct zcan_filter {
  212. /** target state of the identifier */
  213. uint32_t id : 29;
  214. uint32_t res0 : 1;
  215. /** target state of the rtr bit */
  216. uint32_t rtr : 1;
  217. /** Indicates the identifier type (standard or extended)
  218. * use can_ide enum for assignment
  219. */
  220. uint32_t id_type : 1;
  221. /** identifier mask*/
  222. uint32_t id_mask : 29;
  223. uint32_t res1 : 1;
  224. /** rtr bit mask */
  225. uint32_t rtr_mask : 1;
  226. uint32_t res2 : 1;
  227. };
  228. /**
  229. * @brief can bus error count structure
  230. *
  231. * Used to pass the bus error counters to userspace
  232. */
  233. struct can_bus_err_cnt {
  234. uint8_t tx_err_cnt;
  235. uint8_t rx_err_cnt;
  236. };
  237. /** SWJ value to indicate that the SJW should not be changed */
  238. #define CAN_SJW_NO_CHANGE 0
  239. /**
  240. * @brief canbus timings
  241. *
  242. * Used to pass bus timing values to the config and bitrate calculator function.
  243. *
  244. * The propagation segment represents the time of the signal propagation.
  245. * Phase segment 1 and phase segment 2 define the sampling point.
  246. * prop_seg and phase_seg1 affect the sampling-point in the same way and some
  247. * controllers only have a register for the sum of those two. The sync segment
  248. * always has a length of 1 tq
  249. * +---------+----------+------------+------------+
  250. * |sync_seg | prop_seg | phase_seg1 | phase_seg2 |
  251. * +---------+----------+------------+------------+
  252. * ^
  253. * Sampling-Point
  254. * 1 tq (time quantum) has the length of 1/(core_clock / prescaler)
  255. * The bitrate is defined by the core clock divided by the prescaler and the
  256. * sum of the segments.
  257. * br = (core_clock / prescaler) / (1 + prop_seg + phase_seg1 + phase_seg2)
  258. * The resynchronization jump width (SJW) defines the amount of time quantum
  259. * the sample point can be moved.
  260. * The sample point is moved when resynchronization is needed.
  261. */
  262. struct can_timing {
  263. /** Synchronisation jump width*/
  264. uint16_t sjw;
  265. /** Propagation Segment */
  266. uint16_t prop_seg;
  267. /** Phase Segment 1 */
  268. uint16_t phase_seg1;
  269. /** Phase Segment 2 */
  270. uint16_t phase_seg2;
  271. /** Prescaler value */
  272. uint16_t prescaler;
  273. };
  274. /**
  275. * @typedef can_tx_callback_t
  276. * @brief Define the application callback handler function signature
  277. *
  278. * @param error_flags status of the performed send operation
  279. * @param arg argument that was passed when the message was sent
  280. */
  281. typedef void (*can_tx_callback_t)(uint32_t error_flags, void *arg);
  282. /**
  283. * @typedef can_rx_callback_t
  284. * @brief Define the application callback handler function signature
  285. * for receiving.
  286. *
  287. * @param msg received message
  288. * @param arg argument that was passed when the filter was attached
  289. */
  290. typedef void (*can_rx_callback_t)(struct zcan_frame *msg, void *arg);
  291. /**
  292. * @typedef can_state_change_isr_t
  293. * @brief Defines the state change isr handler function signature
  294. *
  295. * @param state state of the node
  296. * @param err_cnt struct with the error counter values
  297. */
  298. typedef void(*can_state_change_isr_t)(enum can_state state,
  299. struct can_bus_err_cnt err_cnt);
  300. typedef int (*can_set_timing_t)(const struct device *dev,
  301. const struct can_timing *timing,
  302. const struct can_timing *timing_data);
  303. typedef int (*can_set_mode_t)(const struct device *dev, enum can_mode mode);
  304. typedef int (*can_send_t)(const struct device *dev,
  305. const struct zcan_frame *msg,
  306. k_timeout_t timeout, can_tx_callback_t callback_isr,
  307. void *callback_arg);
  308. typedef int (*can_attach_msgq_t)(const struct device *dev,
  309. struct k_msgq *msg_q,
  310. const struct zcan_filter *filter);
  311. typedef int (*can_attach_isr_t)(const struct device *dev,
  312. can_rx_callback_t isr,
  313. void *callback_arg,
  314. const struct zcan_filter *filter);
  315. typedef void (*can_detach_t)(const struct device *dev, int filter_id);
  316. typedef int (*can_recover_t)(const struct device *dev, k_timeout_t timeout);
  317. typedef enum can_state (*can_get_state_t)(const struct device *dev,
  318. struct can_bus_err_cnt *err_cnt);
  319. typedef void(*can_register_state_change_isr_t)(const struct device *dev,
  320. can_state_change_isr_t isr);
  321. typedef int (*can_get_core_clock_t)(const struct device *dev, uint32_t *rate);
  322. #ifndef CONFIG_CAN_WORKQ_FRAMES_BUF_CNT
  323. #define CONFIG_CAN_WORKQ_FRAMES_BUF_CNT 4
  324. #endif
  325. struct can_frame_buffer {
  326. struct zcan_frame buf[CONFIG_CAN_WORKQ_FRAMES_BUF_CNT];
  327. uint16_t head;
  328. uint16_t tail;
  329. };
  330. /**
  331. * @brief CAN work structure
  332. *
  333. * Used to attach a work queue to a filter.
  334. */
  335. struct zcan_work {
  336. struct k_work work_item;
  337. struct k_work_q *work_queue;
  338. struct can_frame_buffer buf;
  339. can_rx_callback_t cb;
  340. void *cb_arg;
  341. };
  342. __subsystem struct can_driver_api {
  343. can_set_mode_t set_mode;
  344. can_set_timing_t set_timing;
  345. can_send_t send;
  346. can_attach_isr_t attach_isr;
  347. can_detach_t detach;
  348. #ifndef CONFIG_CAN_AUTO_BUS_OFF_RECOVERY
  349. can_recover_t recover;
  350. #endif
  351. can_get_state_t get_state;
  352. can_register_state_change_isr_t register_state_change_isr;
  353. can_get_core_clock_t get_core_clock;
  354. /* Min values for the timing registers */
  355. struct can_timing timing_min;
  356. /* Max values for the timing registers */
  357. struct can_timing timing_max;
  358. #ifdef CONFIG_CAN_FD_MODE
  359. /* Min values for the timing registers during the data phase */
  360. struct can_timing timing_min_data;
  361. /* Max values for the timing registers during the data phase */
  362. struct can_timing timing_max_data;
  363. #endif
  364. };
  365. /**
  366. * @brief Convert the DLC to the number of bytes
  367. *
  368. * This function converts a the Data Length Code to the number of bytes.
  369. *
  370. * @param dlc The Data Length Code
  371. *
  372. * @retval Number of bytes
  373. */
  374. static inline uint8_t can_dlc_to_bytes(uint8_t dlc)
  375. {
  376. static const uint8_t dlc_table[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 12,
  377. 16, 20, 24, 32, 48, 64};
  378. return dlc > 0x0F ? 64 : dlc_table[dlc];
  379. }
  380. /**
  381. * @brief Convert a number of bytes to the DLC
  382. *
  383. * This function converts a number of bytes to the Data Length Code
  384. *
  385. * @param num_bytes The number of bytes
  386. *
  387. * @retval The DLC
  388. */
  389. static inline uint8_t can_bytes_to_dlc(uint8_t num_bytes)
  390. {
  391. return num_bytes <= 8 ? num_bytes :
  392. num_bytes <= 12 ? 9 :
  393. num_bytes <= 16 ? 10 :
  394. num_bytes <= 20 ? 11 :
  395. num_bytes <= 24 ? 12 :
  396. num_bytes <= 32 ? 13 :
  397. num_bytes <= 48 ? 14 :
  398. 15;
  399. }
  400. /**
  401. * @brief Perform data transfer to CAN bus.
  402. *
  403. * This routine provides a generic interface to perform data transfer
  404. * to the can bus. Use can_write() for simple write.
  405. * *
  406. * @param dev Pointer to the device structure for the driver instance.
  407. * @param msg Message to transfer.
  408. * @param timeout Waiting for empty tx mailbox timeout or K_FOREVER.
  409. * @param callback_isr Is called when message was sent or a transmission error
  410. * occurred. If NULL, this function is blocking until
  411. * message is sent. This must be NULL if called from user
  412. * mode.
  413. * @param callback_arg This will be passed whenever the isr is called.
  414. *
  415. * @retval 0 If successful.
  416. * @retval CAN_TX_* on failure.
  417. */
  418. __syscall int can_send(const struct device *dev, const struct zcan_frame *msg,
  419. k_timeout_t timeout, can_tx_callback_t callback_isr,
  420. void *callback_arg);
  421. static inline int z_impl_can_send(const struct device *dev,
  422. const struct zcan_frame *msg,
  423. k_timeout_t timeout,
  424. can_tx_callback_t callback_isr,
  425. void *callback_arg)
  426. {
  427. const struct can_driver_api *api =
  428. (const struct can_driver_api *)dev->api;
  429. return api->send(dev, msg, timeout, callback_isr, callback_arg);
  430. }
  431. /*
  432. * Derived can APIs -- all implemented in terms of can_send()
  433. */
  434. /**
  435. * @brief Write a set amount of data to the can bus.
  436. *
  437. * This routine writes a set amount of data synchronously.
  438. *
  439. * @param dev Pointer to the device structure for the driver instance.
  440. * @param data Data to send.
  441. * @param length Number of bytes to write (max. 8).
  442. * @param id Identifier of the can message.
  443. * @param rtr Send remote transmission request or data frame
  444. * @param timeout Waiting for empty tx mailbox timeout or K_FOREVER
  445. *
  446. * @retval 0 If successful.
  447. * @retval -EIO General input / output error.
  448. * @retval -EINVAL if length > 8.
  449. */
  450. static inline int can_write(const struct device *dev, const uint8_t *data,
  451. uint8_t length,
  452. uint32_t id, enum can_rtr rtr, k_timeout_t timeout)
  453. {
  454. struct zcan_frame msg;
  455. if (length > 8) {
  456. return -EINVAL;
  457. }
  458. msg.id = id;
  459. if (id > CAN_MAX_STD_ID) {
  460. msg.id_type = CAN_EXTENDED_IDENTIFIER;
  461. } else {
  462. msg.id_type = CAN_STANDARD_IDENTIFIER;
  463. }
  464. msg.dlc = length;
  465. msg.rtr = rtr;
  466. memcpy(msg.data, data, length);
  467. return can_send(dev, &msg, timeout, NULL, NULL);
  468. }
  469. /**
  470. * @brief Attach a CAN work queue to a single or group of identifiers.
  471. *
  472. * This routine attaches a work queue to identifiers specified by a filter.
  473. * Whenever the filter matches, the message is pushed to the buffer
  474. * of the zcan_work structure and the work element is put to the workqueue.
  475. * If a message passes more than one filter the priority of the match
  476. * is hardware dependent.
  477. * A CAN work queue can be attached to more than one filter.
  478. * The work queue must be initialized before and the caller must have
  479. * appropriate permissions on it.
  480. *
  481. * @param dev Pointer to the device structure for the driver instance.
  482. * @param work_q Pointer to the already initialized work queue.
  483. * @param work Pointer to a zcan_work. The work will be initialized.
  484. * @param callback This function is called by workq whenever a message arrives.
  485. * @param callback_arg Is passed to the callback when called.
  486. * @param filter Pointer to a zcan_filter structure defining the id
  487. * filtering.
  488. *
  489. * @retval filter_id on success.
  490. * @retval CAN_NO_FREE_FILTER if there is no filter left.
  491. */
  492. int can_attach_workq(const struct device *dev, struct k_work_q *work_q,
  493. struct zcan_work *work,
  494. can_rx_callback_t callback, void *callback_arg,
  495. const struct zcan_filter *filter);
  496. /**
  497. * @brief Attach a message queue to a single or group of identifiers.
  498. *
  499. * This routine attaches a message queue to identifiers specified by
  500. * a filter. Whenever the filter matches, the message is pushed to the queue
  501. * If a message passes more than one filter the priority of the match
  502. * is hardware dependent.
  503. * A message queue can be attached to more than one filter.
  504. * The message queue must me initialized before, and the caller must have
  505. * appropriate permissions on it.
  506. *
  507. * @param dev Pointer to the device structure for the driver instance.
  508. * @param msg_q Pointer to the already initialized message queue.
  509. * @param filter Pointer to a zcan_filter structure defining the id
  510. * filtering.
  511. *
  512. * @retval filter_id on success.
  513. * @retval CAN_NO_FREE_FILTER if there is no filter left.
  514. */
  515. __syscall int can_attach_msgq(const struct device *dev, struct k_msgq *msg_q,
  516. const struct zcan_filter *filter);
  517. /**
  518. * @brief Attach an isr callback function to a single or group of identifiers.
  519. *
  520. * This routine attaches an isr callback to identifiers specified by
  521. * a filter. Whenever the filter matches, the callback function is called
  522. * with isr context.
  523. * If a message passes more than one filter the priority of the match
  524. * is hardware dependent.
  525. * A callback function can be attached to more than one filter.
  526. * *
  527. * @param dev Pointer to the device structure for the driver instance.
  528. * @param isr Callback function pointer.
  529. * @param callback_arg This will be passed whenever the isr is called.
  530. * @param filter Pointer to a zcan_filter structure defining the id
  531. * filtering.
  532. *
  533. * @retval filter_id on success.
  534. * @retval CAN_NO_FREE_FILTER if there is no filter left.
  535. */
  536. static inline int can_attach_isr(const struct device *dev,
  537. can_rx_callback_t isr,
  538. void *callback_arg,
  539. const struct zcan_filter *filter)
  540. {
  541. const struct can_driver_api *api =
  542. (const struct can_driver_api *)dev->api;
  543. return api->attach_isr(dev, isr, callback_arg, filter);
  544. }
  545. /**
  546. * @brief Detach an isr or message queue from the identifier filtering.
  547. *
  548. * This routine detaches an isr callback or message queue from the identifier
  549. * filtering.
  550. * *
  551. * @param dev Pointer to the device structure for the driver instance.
  552. * @param filter_id filter id returned by can_attach_isr or can_attach_msgq.
  553. *
  554. * @retval none
  555. */
  556. __syscall void can_detach(const struct device *dev, int filter_id);
  557. static inline void z_impl_can_detach(const struct device *dev, int filter_id)
  558. {
  559. const struct can_driver_api *api =
  560. (const struct can_driver_api *)dev->api;
  561. return api->detach(dev, filter_id);
  562. }
  563. /**
  564. * @brief Read the core clock value
  565. *
  566. * Returns the core clock value. One time quantum is 1/core clock.
  567. *
  568. * @param dev Pointer to the device structure for the driver instance.
  569. * @param[out] rate controller clock rate
  570. *
  571. * @retval 0 on success
  572. * @retval negative on error
  573. */
  574. __syscall int can_get_core_clock(const struct device *dev, uint32_t *rate);
  575. static inline int z_impl_can_get_core_clock(const struct device *dev,
  576. uint32_t *rate)
  577. {
  578. const struct can_driver_api *api =
  579. (const struct can_driver_api *)dev->api;
  580. return api->get_core_clock(dev, rate);
  581. }
  582. /**
  583. * @brief Calculate timing parameters from bitrate and sample point
  584. *
  585. * Calculate the timing parameters from a given bitrate in bits/s and the
  586. * sampling point in permill (1/1000) of the entire bit time.
  587. * The bitrate must alway match perfectly. If no result can be given for the,
  588. * give parameters, -EINVAL is returned.
  589. * The sample_pnt does not always match perfectly. The algorithm tries to find
  590. * the best match possible.
  591. *
  592. * @param dev Pointer to the device structure for the driver instance.
  593. * @param res Result is written into the can_timing struct provided.
  594. * @param bitrate Target bitrate in bits/s
  595. * @param sample_pnt Sampling point in permill of the entire bit time.
  596. *
  597. * @retval Positive sample point error on success
  598. * @retval -EINVAL if there is no solution for the desired values
  599. * @retval -EIO if core_clock is not available
  600. */
  601. int can_calc_timing(const struct device *dev, struct can_timing *res,
  602. uint32_t bitrate, uint16_t sample_pnt);
  603. #ifdef CONFIG_CAN_FD_MODE
  604. /**
  605. * @brief Calculate timing parameters for the data phase
  606. *
  607. * Same as can_calc_timing but with the max and min values from the data phase.
  608. *
  609. * @param dev Pointer to the device structure for the driver instance.
  610. * @param res Result is written into the can_timing struct provided.
  611. * @param bitrate Target bitrate for the data phase in bits/s
  612. * @param sample_pnt Sampling point data phase in permille of the entire bit time.
  613. *
  614. * @retval Positive sample point error on success
  615. * @retval -EINVAL if there is no solution for the desired values
  616. * @retval -EIO if core_clock is not available
  617. */
  618. int can_calc_timing_data(const struct device *dev, struct can_timing *res,
  619. uint32_t bitrate, uint16_t sample_pnt);
  620. #endif
  621. /**
  622. * @brief Fill in the prescaler value for a given bitrate and timing
  623. *
  624. * Fill the prescaler value in the timing struct.
  625. * sjw, prop_seg, phase_seg1 and phase_seg2 must be given.
  626. * The returned bitrate error is reminder of the devision of the clockrate by
  627. * the bitrate times the timing segments.
  628. *
  629. * @param dev Pointer to the device structure for the driver instance.
  630. * @param timing Result is written into the can_timing struct provided.
  631. * @param bitrate Target bitrate.
  632. *
  633. * @retval bitrate error
  634. * @retval negative on error
  635. */
  636. int can_calc_prescaler(const struct device *dev, struct can_timing *timing,
  637. uint32_t bitrate);
  638. /**
  639. * @brief Set the controller to the given mode
  640. *
  641. * @param dev Pointer to the device structure for the driver instance.
  642. * @param mode Operation mode
  643. *
  644. * @retval 0 If successful.
  645. * @retval -EIO General input / output error, failed to configure device.
  646. */
  647. __syscall int can_set_mode(const struct device *dev, enum can_mode mode);
  648. static inline int z_impl_can_set_mode(const struct device *dev,
  649. enum can_mode mode)
  650. {
  651. const struct can_driver_api *api =
  652. (const struct can_driver_api *)dev->api;
  653. return api->set_mode(dev, mode);
  654. }
  655. /**
  656. * @brief Configure timing of a host controller.
  657. *
  658. * If the sjw equals CAN_SJW_NO_CHANGE, the sjw parameter is not changed.
  659. *
  660. * The second parameter timing_data is only relevant for CAN-FD.
  661. * If the controller does not support CAN-FD or the FD mode is not enabled,
  662. * this parameter is ignored.
  663. *
  664. * @param dev Pointer to the device structure for the driver instance.
  665. * @param timing Bus timings
  666. * @param timing_data Bus timings for data phase (CAN-FD only)
  667. *
  668. * @retval 0 If successful.
  669. * @retval -EIO General input / output error, failed to configure device.
  670. */
  671. __syscall int can_set_timing(const struct device *dev,
  672. const struct can_timing *timing,
  673. const struct can_timing *timing_data);
  674. static inline int z_impl_can_set_timing(const struct device *dev,
  675. const struct can_timing *timing,
  676. const struct can_timing *timing_data)
  677. {
  678. const struct can_driver_api *api =
  679. (const struct can_driver_api *)dev->api;
  680. return api->set_timing(dev, timing, timing_data);
  681. }
  682. /**
  683. * @brief Set the bitrate of the CAN controller
  684. *
  685. * The second parameter bitrate_data is only relevant for CAN-FD.
  686. * If the controller does not support CAN-FD or the FD mode is not enabled,
  687. * this parameter is ignored.
  688. * The sample point is set to the CiA DS 301 reccommended value of 87.5%
  689. *
  690. * @param dev Pointer to the device structure for the driver instance.
  691. * @param bitrate Desired arbitration phase bitrate
  692. * @param bitrate_data Desired data phase bitrate
  693. *
  694. * @retval 0 If successful.
  695. * @retval -EINVAL bitrate cannot be reached.
  696. * @retval -EIO General input / output error, failed to set bitrate.
  697. */
  698. static inline int can_set_bitrate(const struct device *dev,
  699. uint32_t bitrate,
  700. uint32_t bitrate_data)
  701. {
  702. struct can_timing timing;
  703. #ifdef CONFIG_CAN_FD_MODE
  704. struct can_timing timing_data;
  705. #endif
  706. int ret;
  707. ret = can_calc_timing(dev, &timing, bitrate, 875);
  708. if (ret < 0) {
  709. return -EINVAL;
  710. }
  711. timing.sjw = CAN_SJW_NO_CHANGE;
  712. #ifdef CONFIG_CAN_FD_MODE
  713. ret = can_calc_timing_data(dev, &timing_data, bitrate_data, 875);
  714. if (ret < 0) {
  715. return -EINVAL;
  716. }
  717. timing_data.sjw = CAN_SJW_NO_CHANGE;
  718. return can_set_timing(dev, &timing, &timing_data);
  719. #else
  720. return can_set_timing(dev, &timing, NULL);
  721. #endif /* CONFIG_CAN_FD_MODE */
  722. }
  723. /**
  724. * @brief Configure operation of a host controller.
  725. *
  726. * @param dev Pointer to the device structure for the driver instance.
  727. * @param mode Operation mode
  728. * @param bitrate bus-speed in Baud/s
  729. *
  730. * @retval 0 If successful.
  731. * @retval -EIO General input / output error, failed to configure device.
  732. */
  733. static inline int can_configure(const struct device *dev, enum can_mode mode,
  734. uint32_t bitrate)
  735. {
  736. if (bitrate > 0) {
  737. int err = can_set_bitrate(dev, bitrate, 0);
  738. if (err != 0) {
  739. return err;
  740. }
  741. }
  742. return can_set_mode(dev, mode);
  743. }
  744. /**
  745. * @brief Get current state
  746. *
  747. * Returns the actual state of the CAN controller.
  748. *
  749. * @param dev Pointer to the device structure for the driver instance.
  750. * @param err_cnt Pointer to the err_cnt destination structure or NULL.
  751. *
  752. * @retval state
  753. */
  754. __syscall enum can_state can_get_state(const struct device *dev,
  755. struct can_bus_err_cnt *err_cnt);
  756. static inline
  757. enum can_state z_impl_can_get_state(const struct device *dev,
  758. struct can_bus_err_cnt *err_cnt)
  759. {
  760. const struct can_driver_api *api =
  761. (const struct can_driver_api *)dev->api;
  762. return api->get_state(dev, err_cnt);
  763. }
  764. /**
  765. * @brief Recover from bus-off state
  766. *
  767. * Recover the CAN controller from bus-off state to error-active state.
  768. *
  769. * @param dev Pointer to the device structure for the driver instance.
  770. * @param timeout Timeout for waiting for the recovery or K_FOREVER.
  771. *
  772. * @retval 0 on success.
  773. * @retval CAN_TIMEOUT on timeout.
  774. */
  775. #ifndef CONFIG_CAN_AUTO_BUS_OFF_RECOVERY
  776. __syscall int can_recover(const struct device *dev, k_timeout_t timeout);
  777. static inline int z_impl_can_recover(const struct device *dev,
  778. k_timeout_t timeout)
  779. {
  780. const struct can_driver_api *api =
  781. (const struct can_driver_api *)dev->api;
  782. return api->recover(dev, timeout);
  783. }
  784. #else
  785. /* This implementation prevents inking errors for auto recovery */
  786. static inline int z_impl_can_recover(const struct device *dev,
  787. k_timeout_t timeout)
  788. {
  789. return 0;
  790. }
  791. #endif /* CONFIG_CAN_AUTO_BUS_OFF_RECOVERY */
  792. /**
  793. * @brief Register an ISR callback for state change interrupt
  794. *
  795. * Only one callback can be registered per controller.
  796. * Calling this function again, overrides the previous call.
  797. *
  798. * @param dev Pointer to the device structure for the driver instance.
  799. * @param isr Pointer to ISR
  800. */
  801. static inline
  802. void can_register_state_change_isr(const struct device *dev,
  803. can_state_change_isr_t isr)
  804. {
  805. const struct can_driver_api *api =
  806. (const struct can_driver_api *)dev->api;
  807. return api->register_state_change_isr(dev, isr);
  808. }
  809. /**
  810. * @brief Converter that translates between can_frame and zcan_frame structs.
  811. *
  812. * @param frame Pointer to can_frame struct.
  813. * @param zframe Pointer to zcan_frame struct.
  814. */
  815. static inline void can_copy_frame_to_zframe(const struct can_frame *frame,
  816. struct zcan_frame *zframe)
  817. {
  818. zframe->id_type = (frame->can_id & BIT(31)) >> 31;
  819. zframe->rtr = (frame->can_id & BIT(30)) >> 30;
  820. zframe->id = frame->can_id & BIT_MASK(29);
  821. zframe->dlc = frame->can_dlc;
  822. memcpy(zframe->data, frame->data, sizeof(zframe->data));
  823. }
  824. /**
  825. * @brief Converter that translates between zcan_frame and can_frame structs.
  826. *
  827. * @param zframe Pointer to zcan_frame struct.
  828. * @param frame Pointer to can_frame struct.
  829. */
  830. static inline void can_copy_zframe_to_frame(const struct zcan_frame *zframe,
  831. struct can_frame *frame)
  832. {
  833. frame->can_id = (zframe->id_type << 31) | (zframe->rtr << 30) |
  834. zframe->id;
  835. frame->can_dlc = zframe->dlc;
  836. memcpy(frame->data, zframe->data, sizeof(frame->data));
  837. }
  838. /**
  839. * @brief Converter that translates between can_filter and zcan_frame_filter
  840. * structs.
  841. *
  842. * @param filter Pointer to can_filter struct.
  843. * @param zfilter Pointer to zcan_frame_filter struct.
  844. */
  845. static inline
  846. void can_copy_filter_to_zfilter(const struct can_filter *filter,
  847. struct zcan_filter *zfilter)
  848. {
  849. zfilter->id_type = (filter->can_id & BIT(31)) >> 31;
  850. zfilter->rtr = (filter->can_id & BIT(30)) >> 30;
  851. zfilter->id = filter->can_id & BIT_MASK(29);
  852. zfilter->rtr_mask = (filter->can_mask & BIT(30)) >> 30;
  853. zfilter->id_mask = filter->can_mask & BIT_MASK(29);
  854. }
  855. /**
  856. * @brief Converter that translates between zcan_filter and can_filter
  857. * structs.
  858. *
  859. * @param zfilter Pointer to zcan_filter struct.
  860. * @param filter Pointer to can_filter struct.
  861. */
  862. static inline
  863. void can_copy_zfilter_to_filter(const struct zcan_filter *zfilter,
  864. struct can_filter *filter)
  865. {
  866. filter->can_id = (zfilter->id_type << 31) |
  867. (zfilter->rtr << 30) | zfilter->id;
  868. filter->can_mask = (zfilter->rtr_mask << 30) |
  869. (zfilter->id_type << 31) | zfilter->id_mask;
  870. }
  871. #ifdef __cplusplus
  872. }
  873. #endif
  874. /**
  875. * @}
  876. */
  877. #include <syscalls/can.h>
  878. #endif /* ZEPHYR_INCLUDE_DRIVERS_CAN_H_ */