can.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /** @file
  2. * @brief IPv6 Networking over CAN definitions.
  3. *
  4. * Definitions for IPv6 Networking over CAN support.
  5. */
  6. /*
  7. * Copyright (c) 2019 Alexander Wachter
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_CAN_H_
  12. #define ZEPHYR_INCLUDE_NET_CAN_H_
  13. #include <zephyr/types.h>
  14. #include <net/net_ip.h>
  15. #include <net/net_if.h>
  16. #include <drivers/can.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief IPv6 over CAN library
  22. * @defgroup net_can Network Core Library
  23. * @ingroup networking
  24. * @{
  25. */
  26. /**
  27. * CAN L2 driver API. Used by 6loCAN.
  28. */
  29. /*
  30. * Abbreviations
  31. * BS Block Size
  32. * CAN_DL CAN LL data size
  33. * CF Consecutive Frame
  34. * CTS Continue to send
  35. * DLC Data length code
  36. * FC Flow Control
  37. * FF First Frame
  38. * FS Flow Status
  39. */
  40. /** @cond INTERNAL_HIDDEN */
  41. #define NET_CAN_DL 8
  42. #define NET_CAN_MTU 0x0FFF
  43. /* 0x3DFF - bit 4 to 10 must not be zero. Also prevent stuffing bit*/
  44. #define NET_CAN_MULTICAST_ADDR 0x3DFF
  45. #define NET_CAN_DAD_ADDR 0x3DFE
  46. #define NET_CAN_ETH_TRANSLATOR_ADDR 0x3DF0
  47. #define NET_CAN_MAX_ADDR 0x3DEF
  48. #define NET_CAN_MIN_ADDR 0x0100
  49. #define CAN_NET_IF_ADDR_MASK 0x3FFF
  50. #define CAN_NET_IF_ADDR_BYTE_LEN 2U
  51. #define CAN_NET_IF_ADDR_DEST_POS 14U
  52. #define CAN_NET_IF_ADDR_DEST_MASK (CAN_NET_IF_ADDR_MASK << CAN_NET_IF_ADDR_DEST_POS)
  53. #define CAN_NET_IF_ADDR_SRC_POS 0U
  54. #define CAN_NET_IF_ADDR_SRC_MASK (CAN_NET_IF_ADDR_MASK << CAN_NET_IF_ADDR_SRC_POS)
  55. #define CAN_NET_IF_ADDR_MCAST_POS 28U
  56. #define CAN_NET_IF_ADDR_MCAST_MASK (1UL << CAN_NET_IF_ADDR_MCAST_POS)
  57. #define CAN_NET_IF_IS_MCAST_BIT (1U << 14)
  58. #define CAN_NET_FILTER_NOT_SET -1
  59. /** @endcond */
  60. /*
  61. * +-----------+ +-----------+
  62. * | | | |
  63. * | IPv6 | | IPv6 |
  64. * | 6LoCAN | | 6LoCAN |
  65. * | | | |
  66. * +----+-+----+ +----+-+----+
  67. * | | | | +---+
  68. * +----+ | | | | / \ +-+
  69. * | | | | | | +--+ / \_/ \
  70. * +++ +---+ +--+----+ +-------+ +--+----+ +--/ \_/ \
  71. * | | \ / | \ / \ / | \ / / |
  72. * | | X | X CAN X | X | Internet |
  73. * | | / \ | / \ / \ | / \ \ /
  74. * +++ +---+ +----+--+ +-------+ +----+--+ +--+ /
  75. * | | +-------------------+
  76. * +----+
  77. */
  78. struct net_can_api {
  79. /**
  80. * The net_if_api must be placed in first position in this
  81. * struct so that we are compatible with network interface API.
  82. */
  83. struct net_if_api iface_api;
  84. /** Send a single CAN frame */
  85. int (*send)(const struct device *dev, const struct zcan_frame *frame,
  86. can_tx_callback_t cb, void *cb_arg, k_timeout_t timeout);
  87. /** Attach a filter with it's callback */
  88. int (*attach_filter)(const struct device *dev, can_rx_callback_t cb,
  89. void *cb_arg, const struct zcan_filter *filter);
  90. /** Detach a filter */
  91. void (*detach_filter)(const struct device *dev, int filter_id);
  92. /** Enable or disable the reception of frames for net CAN */
  93. int (*enable)(const struct device *dev, bool enable);
  94. };
  95. /* Make sure that the network interface API is properly setup inside
  96. * net_can_api struct (it is the first one).
  97. */
  98. BUILD_ASSERT(offsetof(struct net_can_api, iface_api) == 0);
  99. /** @cond INTERNAL_HIDDEN */
  100. #define CANBUS_L2_CTX_TYPE struct net_canbus_context *
  101. /**
  102. * Context for canbus net device.
  103. */
  104. struct canbus_net_ctx {
  105. /** Filter ID for link layer duplicate address detection. */
  106. int dad_filter_id;
  107. /** Work item for responding to link layer DAD requests. */
  108. struct k_work dad_work;
  109. /** The interface associated with this device */
  110. struct net_if *iface;
  111. /** The link layer address chosen for this interface */
  112. uint16_t ll_addr;
  113. /** TX queue */
  114. struct k_fifo tx_queue;
  115. /** RX error queue */
  116. struct k_fifo rx_err_queue;
  117. /** Queue handler thread */
  118. struct k_thread queue_handler;
  119. /** Queue handler thread stack */
  120. K_KERNEL_STACK_MEMBER(queue_stack, 512);
  121. };
  122. /**
  123. * Canbus link layer addresses have a length of 14 bit for source and destination.
  124. * Both together are 28 bit to fit a CAN extended identifier with 29 bit length.
  125. */
  126. struct net_canbus_lladdr {
  127. uint16_t addr : 14;
  128. };
  129. /**
  130. * STmin is split in two valid ranges:
  131. * 0-127: 0ms-127ms
  132. * 128-240: Reserved
  133. * 241-249: 100us-900us (multiples of 100us)
  134. * 250- : Reserved
  135. */
  136. struct canbus_fc_opts {
  137. /** Block size. Number of CF PDUs before next CF is sent */
  138. uint8_t bs;
  139. /**< Minimum separation time. Min time between frames */
  140. uint8_t stmin;
  141. };
  142. /**
  143. * Context for a transmission of messages that didn't fit in a single frame.
  144. * These messages Start with a FF (First Frame) that is in case of unicast
  145. * acknowledged by a FC (Frame Control). After that, one or more CF
  146. * (Consecutive frames) carry the rest of the message.
  147. */
  148. struct canbus_isotp_tx_ctx {
  149. /** Pkt containing the data to transmit */
  150. struct net_pkt *pkt;
  151. /** Timeout for TX Timeout and separation time */
  152. struct _timeout timeout;
  153. /** Frame Control options received from FC frame */
  154. struct canbus_fc_opts opts;
  155. /** CAN destination address */
  156. struct net_canbus_lladdr dest_addr;
  157. /** Remaining data to transmit in bytes */
  158. uint16_t rem_len;
  159. /** Number of bytes in the tx queue */
  160. int8_t tx_backlog;
  161. /** State of the transmission */
  162. uint8_t state;
  163. /** Actual block number that is transmitted. Counts from BS to 0 */
  164. uint8_t act_block_nr;
  165. /** Number of WAIT frames received */
  166. uint8_t wft;
  167. /** Sequence number that is added to CF */
  168. uint8_t sn : 4;
  169. /** Transmission is multicast */
  170. uint8_t is_mcast : 1;
  171. };
  172. /**
  173. * Context for reception of messages that are not single frames.
  174. * This is the counterpart of the canbus_isotp_tx_ctx.
  175. */
  176. struct canbus_isotp_rx_ctx {
  177. /** Pkt that is large enough to hold the entire message */
  178. struct net_pkt *pkt;
  179. /** Timeout for RX timeout*/
  180. struct _timeout timeout;
  181. /** Remaining data to receive. Goes from message length to zero */
  182. uint16_t rem_len;
  183. /** State of the reception */
  184. uint8_t state;
  185. /** Number of frames received in this block. Counts from BS to 0 */
  186. uint8_t act_block_nr;
  187. /** Number of WAIT frames transmitted */
  188. uint8_t wft;
  189. /** Expected sequence number in CF */
  190. uint8_t sn : 4;
  191. };
  192. /**
  193. * Initialization of the canbus L2.
  194. *
  195. * This function starts the TX workqueue and does some initialization.
  196. */
  197. void net_6locan_init(struct net_if *iface);
  198. /**
  199. * Ethernet frame input function for Ethernet to 6LoCAN translation
  200. *
  201. * This function checks the destination link layer address for addresses
  202. * that has to be forwarded. Frames that need to be forwarded are forwarded here.
  203. */
  204. enum net_verdict net_canbus_translate_eth_frame(struct net_if *iface,
  205. struct net_pkt *pkt);
  206. /** @endcond */
  207. /**
  208. * @}
  209. */
  210. #ifdef __cplusplus
  211. }
  212. #endif
  213. #endif /* ZEPHYR_INCLUDE_NET_CAN_H_ */