isotp.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. /*
  2. * Copyright (c) 2019 Alexander Wachter
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for ISO-TP (ISO 15765-2:2016)
  9. *
  10. * ISO-TP is a transport protocol for CAN (Controller Area Network)
  11. */
  12. #ifndef ZEPHYR_INCLUDE_ISOTP_H_
  13. #define ZEPHYR_INCLUDE_ISOTP_H_
  14. /**
  15. * @brief CAN ISO-TP Interf
  16. * @defgroup can_isotp CAN ISO-TP Interface
  17. * @ingroup CAN
  18. * @{
  19. */
  20. #include <drivers/can.h>
  21. #include <zephyr/types.h>
  22. #include <net/buf.h>
  23. /*
  24. * Abbreviations
  25. * BS Block Size
  26. * CAN_DL CAN LL data size
  27. * CF Consecutive Frame
  28. * CTS Continue to send
  29. * DLC Data length code
  30. * FC Flow Control
  31. * FF First Frame
  32. * FS Flow Status
  33. * AE Address Extension
  34. * SA Source Address
  35. * TA Target Address
  36. */
  37. /*
  38. * N_Result according to ISO 15765-2:2016
  39. * ISOTP_ prefix is used to be zephyr conform
  40. */
  41. /** Completed successfully */
  42. #define ISOTP_N_OK 0
  43. /** Ar/As has timed out */
  44. #define ISOTP_N_TIMEOUT_A -1
  45. /** Reception of next FC has timed out */
  46. #define ISOTP_N_TIMEOUT_BS -2
  47. /** Cr has timed out */
  48. #define ISOTP_N_TIMEOUT_CR -3
  49. /** Unexpected sequence number */
  50. #define ISOTP_N_WRONG_SN -4
  51. /** Invalid flow status received*/
  52. #define ISOTP_N_INVALID_FS -5
  53. /** Unexpected PDU received */
  54. #define ISOTP_N_UNEXP_PDU -6
  55. /** Maximum number of WAIT flowStatus PDUs exceeded */
  56. #define ISOTP_N_WFT_OVRN -7
  57. /** FlowStatus OVFLW PDU was received */
  58. #define ISOTP_N_BUFFER_OVERFLW -8
  59. /** General error */
  60. #define ISOTP_N_ERROR -9
  61. /** Implementation specific errors */
  62. /** Can't bind or send because the CAN device has no filter left*/
  63. #define ISOTP_NO_FREE_FILTER -10
  64. /** No net buffer left to allocate */
  65. #define ISOTP_NO_NET_BUF_LEFT -11
  66. /** Not sufficient space in the buffer left for the data */
  67. #define ISOTP_NO_BUF_DATA_LEFT -12
  68. /** No context buffer left to allocate */
  69. #define ISOTP_NO_CTX_LEFT -13
  70. /** Timeout for recv */
  71. #define ISOTP_RECV_TIMEOUT -14
  72. /*
  73. * CAN ID filtering for ISO-TP fixed addressing according to SAE J1939
  74. *
  75. * Format of 29-bit CAN identifier:
  76. * ------------------------------------------------------
  77. * | 28 .. 26 | 25 | 24 | 23 .. 16 | 15 .. 8 | 7 .. 0 |
  78. * ------------------------------------------------------
  79. * | Priority | EDP | DP | N_TAtype | N_TA | N_SA |
  80. * ------------------------------------------------------
  81. */
  82. /** Position of fixed source address (SA) */
  83. #define ISOTP_FIXED_ADDR_SA_POS (0U)
  84. /** Mask to obtain fixed source address (SA) */
  85. #define ISOTP_FIXED_ADDR_SA_MASK (0xFF << ISOTP_FIXED_ADDR_SA_POS)
  86. /** Position of fixed target address (TA) */
  87. #define ISOTP_FIXED_ADDR_TA_POS (8U)
  88. /** Mask to obtain fixed target address (TA) */
  89. #define ISOTP_FIXED_ADDR_TA_MASK (0xFF << ISOTP_FIXED_ADDR_TA_POS)
  90. /** Position of priority in fixed addressing mode */
  91. #define ISOTP_FIXED_ADDR_PRIO_POS (26U)
  92. /** Mask for priority in fixed addressing mode */
  93. #define ISOTP_FIXED_ADDR_PRIO_MASK (0x7 << ISOTP_FIXED_ADDR_PRIO_POS)
  94. /* CAN filter RX mask to match any priority and source address (SA) */
  95. #define ISOTP_FIXED_ADDR_RX_MASK (0x03FFFF00)
  96. #ifdef __cplusplus
  97. extern "C" {
  98. #endif
  99. /**
  100. * @brief ISO-TP message id struct
  101. *
  102. * Used to pass addresses to the bind and send functions.
  103. */
  104. struct isotp_msg_id {
  105. /**
  106. * CAN identifier
  107. *
  108. * If ISO-TP fixed addressing is used, isotp_bind ignores SA and
  109. * priority sections and modifies TA section in flow control frames.
  110. */
  111. union {
  112. uint32_t std_id : 11;
  113. uint32_t ext_id : 29;
  114. };
  115. /** ISO-TP extended address (if used) */
  116. uint8_t ext_addr;
  117. /** Indicates the CAN identifier type (standard or extended) */
  118. uint8_t id_type : 1;
  119. /** Indicates if ISO-TP extended addressing is used */
  120. uint8_t use_ext_addr : 1;
  121. /** Indicates if ISO-TP fixed addressing (acc. to SAE J1939) is used */
  122. uint8_t use_fixed_addr : 1;
  123. };
  124. /*
  125. * STmin is split in two valid ranges:
  126. * 0-127: 0ms-127ms
  127. * 128-240: Reserved
  128. * 241-249: 100us-900us (multiples of 100us)
  129. * 250- : Reserved
  130. */
  131. /**
  132. * @brief ISO-TP frame control options struct
  133. *
  134. * Used to pass the options to the bind and send functions.
  135. */
  136. struct isotp_fc_opts {
  137. uint8_t bs; /**< Block size. Number of CF PDUs before next CF is sent */
  138. uint8_t stmin; /**< Minimum separation time. Min time between frames */
  139. };
  140. typedef void (*isotp_tx_callback_t)(int error_nr, void *arg);
  141. struct isotp_send_ctx;
  142. struct isotp_recv_ctx;
  143. /**
  144. * @brief Bind an address to a receiving context.
  145. *
  146. * This function binds an RX and TX address combination to an RX context.
  147. * When data arrives from the specified address, it is buffered and can be read
  148. * by calling isotp_recv.
  149. * When calling this routine, a filter is applied in the CAN device, and the
  150. * context is initialized. The context must be valid until calling unbind.
  151. *
  152. * @param ctx Context to store the internal states.
  153. * @param can_dev The CAN device to be used for sending and receiving.
  154. * @param rx_addr Identifier for incoming data.
  155. * @param tx_addr Identifier for FC frames.
  156. * @param opts Flow control options.
  157. * @param timeout Timeout for FF SF buffer allocation.
  158. *
  159. * @retval ISOTP_N_OK on success
  160. * @retval ISOTP_NO_FREE_FILTER if CAN device has no filters left.
  161. */
  162. int isotp_bind(struct isotp_recv_ctx *ctx, const struct device *can_dev,
  163. const struct isotp_msg_id *rx_addr,
  164. const struct isotp_msg_id *tx_addr,
  165. const struct isotp_fc_opts *opts,
  166. k_timeout_t timeout);
  167. /**
  168. * @brief Unbind a context from the interface
  169. *
  170. * This function removes the binding from isotp_bind.
  171. * The filter is detached from the CAN device, and if a transmission is ongoing,
  172. * buffers are freed.
  173. * The context can be discarded safely after calling this function.
  174. *
  175. * @param ctx Context that should be unbound.
  176. */
  177. void isotp_unbind(struct isotp_recv_ctx *ctx);
  178. /**
  179. * @brief Read out received data from fifo.
  180. *
  181. * This function reads the data from the receive FIFO of the context.
  182. * It blocks if the FIFO is empty.
  183. * If an error occurs, the function returns a negative number and leaves the
  184. * data buffer unchanged.
  185. *
  186. * @param ctx Context that is already bound.
  187. * @param data Pointer to a buffer where the data is copied to.
  188. * @param len Size of the buffer.
  189. * @param timeout Timeout for incoming data.
  190. *
  191. * @retval Number of bytes copied on success
  192. * @retval ISOTP_WAIT_TIMEOUT when "timeout" timed out
  193. * @retval ISOTP_N_* on error
  194. */
  195. int isotp_recv(struct isotp_recv_ctx *ctx, uint8_t *data, size_t len,
  196. k_timeout_t timeout);
  197. /**
  198. * @brief Get the net buffer on data reception
  199. *
  200. * This function reads incoming data into net-buffers.
  201. * It blocks until the entire packet is received, BS is reached, or an error
  202. * occurred. If BS was zero, the data is in a single net_buf. Otherwise,
  203. * the data is fragmented in chunks of BS size.
  204. * The net-buffers are referenced and must be freed with net_buf_unref after the
  205. * data is processed.
  206. *
  207. * @param ctx Context that is already bound.
  208. * @param buffer Pointer where the net_buf pointer is written to.
  209. * @param timeout Timeout for incoming data.
  210. *
  211. * @retval Remaining data length for this transfer if BS > 0, 0 for BS = 0
  212. * @retval ISOTP_WAIT_TIMEOUT when "timeout" timed out
  213. * @retval ISOTP_N_* on error
  214. */
  215. int isotp_recv_net(struct isotp_recv_ctx *ctx, struct net_buf **buffer,
  216. k_timeout_t timeout);
  217. /**
  218. * @brief Send data
  219. *
  220. * This function is used to send data to a peer that listens to the tx_addr.
  221. * An internal work-queue is used to transfer the segmented data.
  222. * Data and context must be valid until the transmission has finished.
  223. * If a complete_cb is given, this function is non-blocking, and the callback
  224. * is called on completion with the return value as a parameter.
  225. *
  226. * @param ctx Context to store the internal states.
  227. * @param can_dev The CAN device to be used for sending and receiving.
  228. * @param data Data to be sent.
  229. * @param len Length of the data to be sent.
  230. * @param rx_addr Identifier for FC frames.
  231. * @param tx_addr Identifier for outgoing frames the receiver listens on.
  232. * @param complete_cb Function called on completion or NULL.
  233. * @param cb_arg Argument passed to the complete callback.
  234. *
  235. * @retval ISOTP_N_OK on success
  236. * @retval ISOTP_N_* on error
  237. */
  238. int isotp_send(struct isotp_send_ctx *ctx, const struct device *can_dev,
  239. const uint8_t *data, size_t len,
  240. const struct isotp_msg_id *tx_addr,
  241. const struct isotp_msg_id *rx_addr,
  242. isotp_tx_callback_t complete_cb, void *cb_arg);
  243. #ifdef CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS
  244. /**
  245. * @brief Send data with buffered context
  246. *
  247. * This function is similar to isotp_send, but the context is automatically
  248. * allocated from an internal pool.
  249. *
  250. * @param can_dev The CAN device to be used for sending and receiving.
  251. * @param data Data to be sent.
  252. * @param len Length of the data to be sent.
  253. * @param rx_addr Identifier for FC frames.
  254. * @param tx_addr Identifier for outgoing frames the receiver listens on.
  255. * @param complete_cb Function called on completion or NULL.
  256. * @param cb_arg Argument passed to the complete callback.
  257. * @param timeout Timeout for buffer allocation.
  258. *
  259. * @retval ISOTP_N_OK on success
  260. * @retval ISOTP_N_* on error
  261. */
  262. int isotp_send_ctx_buf(const struct device *can_dev,
  263. const uint8_t *data, size_t len,
  264. const struct isotp_msg_id *tx_addr,
  265. const struct isotp_msg_id *rx_addr,
  266. isotp_tx_callback_t complete_cb, void *cb_arg,
  267. k_timeout_t timeout);
  268. /**
  269. * @brief Send data with buffered context
  270. *
  271. * This function is similar to isotp_send_ctx_buf, but the data is carried in
  272. * a net_buf. net_buf_unref is called on the net_buf when sending is completed.
  273. *
  274. * @param can_dev The CAN device to be used for sending and receiving.
  275. * @param data Data to be sent.
  276. * @param len Length of the data to be sent.
  277. * @param rx_addr Identifier for FC frames.
  278. * @param tx_addr Identifier for outgoing frames the receiver listens on.
  279. * @param complete_cb Function called on completion or NULL.
  280. * @param cb_arg Argument passed to the complete callback.
  281. * @param timeout Timeout for buffer allocation.
  282. *
  283. * @retval ISOTP_N_OK on success
  284. * @retval ISOTP_* on error
  285. */
  286. int isotp_send_net_ctx_buf(const struct device *can_dev,
  287. struct net_buf *data,
  288. const struct isotp_msg_id *tx_addr,
  289. const struct isotp_msg_id *rx_addr,
  290. isotp_tx_callback_t complete_cb, void *cb_arg,
  291. k_timeout_t timeout);
  292. #endif /*CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS*/
  293. #if defined(CONFIG_ISOTP_USE_TX_BUF) && \
  294. defined(CONFIG_ISOTP_ENABLE_CONTEXT_BUFFERS)
  295. /**
  296. * @brief Send data with buffered context
  297. *
  298. * This function is similar to isotp_send, but the context is automatically
  299. * allocated from an internal pool and the data to be send is buffered in an
  300. * internal net_buff.
  301. *
  302. * @param can_dev The CAN device to be used for sending and receiving.
  303. * @param data Data to be sent.
  304. * @param len Length of the data to be sent.
  305. * @param rx_addr Identifier for FC frames.
  306. * @param tx_addr Identifier for outgoing frames the receiver listens on.
  307. * @param complete_cb Function called on completion or NULL.
  308. * @param cb_arg Argument passed to the complete callback.
  309. * @param timeout Timeout for buffer allocation.
  310. *
  311. * @retval ISOTP_N_OK on success
  312. * @retval ISOTP_* on error
  313. */
  314. int isotp_send_buf(const struct device *can_dev,
  315. const uint8_t *data, size_t len,
  316. const struct isotp_msg_id *tx_addr,
  317. const struct isotp_msg_id *rx_addr,
  318. isotp_tx_callback_t complete_cb, void *cb_arg,
  319. k_timeout_t timeout);
  320. #endif
  321. /** @cond INTERNAL_HIDDEN */
  322. struct isotp_callback {
  323. isotp_tx_callback_t cb;
  324. void *arg;
  325. };
  326. struct isotp_send_ctx {
  327. int filter_id;
  328. uint32_t error_nr;
  329. const struct device *can_dev;
  330. union {
  331. struct net_buf *buf;
  332. struct {
  333. const uint8_t *data;
  334. size_t len;
  335. };
  336. };
  337. struct k_work work;
  338. struct _timeout timeout;
  339. union {
  340. struct isotp_callback fin_cb;
  341. struct k_sem fin_sem;
  342. };
  343. struct isotp_fc_opts opts;
  344. uint8_t state;
  345. uint8_t tx_backlog;
  346. struct isotp_msg_id rx_addr;
  347. struct isotp_msg_id tx_addr;
  348. uint8_t wft;
  349. uint8_t bs;
  350. uint8_t sn : 4;
  351. uint8_t is_net_buf : 1;
  352. uint8_t is_ctx_slab : 1;
  353. uint8_t has_callback: 1;
  354. };
  355. struct isotp_recv_ctx {
  356. int filter_id;
  357. const struct device *can_dev;
  358. struct net_buf *buf;
  359. struct net_buf *act_frag;
  360. sys_snode_t alloc_node;
  361. uint32_t length;
  362. int error_nr;
  363. struct k_work work;
  364. struct _timeout timeout;
  365. struct k_fifo fifo;
  366. struct isotp_msg_id rx_addr;
  367. struct isotp_msg_id tx_addr;
  368. struct isotp_fc_opts opts;
  369. uint8_t state;
  370. uint8_t bs;
  371. uint8_t wft;
  372. uint8_t sn_expected : 4;
  373. };
  374. /** @endcond */
  375. /**
  376. * @}
  377. */
  378. #ifdef __cplusplus
  379. }
  380. #endif
  381. #endif /* ZEPHYR_INCLUDE_ISOTP_H_ */