socket_can.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /** @file
  2. * @brief Socket CAN definitions.
  3. *
  4. * Definitions for socket CAN support.
  5. */
  6. /*
  7. * Copyright (c) 2019 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_SOCKET_CAN_H_
  12. #define ZEPHYR_INCLUDE_NET_SOCKET_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 Socket CAN library
  22. * @defgroup socket_can Network Core Library
  23. * @ingroup networking
  24. * @{
  25. */
  26. /* Protocols of the protocol family PF_CAN */
  27. #define CAN_RAW 1
  28. /* Socket CAN options */
  29. #define SOL_CAN_BASE 100
  30. #define SOL_CAN_RAW (SOL_CAN_BASE + CAN_RAW)
  31. enum {
  32. CAN_RAW_FILTER = 1,
  33. };
  34. /* Socket CAN MTU size */
  35. #define CAN_MTU CAN_MAX_DLEN
  36. /**
  37. * struct sockaddr_can - The sockaddr structure for CAN sockets
  38. *
  39. */
  40. struct sockaddr_can {
  41. sa_family_t can_family;
  42. int can_ifindex;
  43. };
  44. /**
  45. * CAN L2 driver API. Used by socket CAN.
  46. */
  47. struct canbus_api {
  48. /**
  49. * The net_if_api must be placed in first position in this
  50. * struct so that we are compatible with network interface API.
  51. */
  52. struct net_if_api iface_api;
  53. /** Send a CAN packet by socket */
  54. int (*send)(const struct device *dev, struct net_pkt *pkt);
  55. /** Close the related CAN socket */
  56. void (*close)(const struct device *dev, int filter_id);
  57. /** Set socket CAN option */
  58. int (*setsockopt)(const struct device *dev, void *obj, int level,
  59. int optname,
  60. const void *optval, socklen_t optlen);
  61. /** Get socket CAN option */
  62. int (*getsockopt)(const struct device *dev, void *obj, int level,
  63. int optname,
  64. const void *optval, socklen_t *optlen);
  65. };
  66. /* Make sure that the network interface API is properly setup inside
  67. * CANBUS API struct (it is the first one).
  68. */
  69. BUILD_ASSERT(offsetof(struct canbus_api, iface_api) == 0);
  70. /**
  71. * @}
  72. */
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76. #endif /* ZEPHYR_INCLUDE_NET_SOCKET_CAN_H_ */