CO_driver_target.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_MODULES_CANOPENNODE_CO_DRIVER_H
  7. #define ZEPHYR_MODULES_CANOPENNODE_CO_DRIVER_H
  8. /*
  9. * Zephyr RTOS CAN driver interface and configuration for CANopenNode
  10. * CANopen protocol stack.
  11. *
  12. * See CANopenNode/stack/drvTemplate/CO_driver.h for API description.
  13. */
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #include <zephyr.h>
  18. #include <zephyr/types.h>
  19. #include <device.h>
  20. #include <toolchain.h>
  21. /* Use static variables instead of calloc() */
  22. #define CO_USE_GLOBALS
  23. /* Use Zephyr provided crc16 implementation */
  24. #define CO_USE_OWN_CRC16
  25. /* Use SDO buffer size from Kconfig */
  26. #define CO_SDO_BUFFER_SIZE CONFIG_CANOPENNODE_SDO_BUFFER_SIZE
  27. /* Use trace buffer size from Kconfig */
  28. #define CO_TRACE_BUFFER_SIZE_FIXED CONFIG_CANOPENNODE_TRACE_BUFFER_SIZE
  29. #ifdef CONFIG_CANOPENNODE_LEDS
  30. #define CO_USE_LEDS 1
  31. #endif
  32. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  33. #define CO_LITTLE_ENDIAN
  34. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  35. #define CO_BIG_ENDIAN
  36. #else
  37. #error "Unsupported endianness"
  38. #endif
  39. typedef bool bool_t;
  40. typedef float float32_t;
  41. typedef long double float64_t;
  42. typedef char char_t;
  43. typedef unsigned char oChar_t;
  44. typedef unsigned char domain_t;
  45. typedef struct canopen_rx_msg {
  46. uint8_t data[8];
  47. uint16_t ident;
  48. uint8_t DLC;
  49. } CO_CANrxMsg_t;
  50. typedef void (*CO_CANrxBufferCallback_t)(void *object,
  51. const CO_CANrxMsg_t *message);
  52. typedef struct canopen_rx {
  53. int filter_id;
  54. void *object;
  55. CO_CANrxBufferCallback_t pFunct;
  56. uint16_t ident;
  57. } CO_CANrx_t;
  58. typedef struct canopen_tx {
  59. uint8_t data[8];
  60. uint16_t ident;
  61. uint8_t DLC;
  62. bool_t rtr : 1;
  63. bool_t bufferFull : 1;
  64. bool_t syncFlag : 1;
  65. } CO_CANtx_t;
  66. typedef struct canopen_module {
  67. const struct device *dev;
  68. CO_CANrx_t *rx_array;
  69. CO_CANtx_t *tx_array;
  70. uint16_t rx_size;
  71. uint16_t tx_size;
  72. uint32_t errors;
  73. void *em;
  74. bool_t configured : 1;
  75. bool_t CANnormal : 1;
  76. bool_t first_tx_msg : 1;
  77. } CO_CANmodule_t;
  78. void canopen_send_lock(void);
  79. void canopen_send_unlock(void);
  80. #define CO_LOCK_CAN_SEND() canopen_send_lock()
  81. #define CO_UNLOCK_CAN_SEND() canopen_send_unlock()
  82. void canopen_emcy_lock(void);
  83. void canopen_emcy_unlock(void);
  84. #define CO_LOCK_EMCY() canopen_emcy_lock()
  85. #define CO_UNLOCK_EMCY() canopen_emcy_unlock()
  86. void canopen_od_lock(void);
  87. void canopen_od_unlock(void);
  88. #define CO_LOCK_OD() canopen_od_lock()
  89. #define CO_UNLOCK_OD() canopen_od_unlock()
  90. /*
  91. * CANopenNode RX callbacks run in interrupt context, no memory
  92. * barrier needed.
  93. */
  94. #define CANrxMemoryBarrier()
  95. #define IS_CANrxNew(rxNew) ((uintptr_t)rxNew)
  96. #define SET_CANrxNew(rxNew) { CANrxMemoryBarrier(); rxNew = (void *)1L; }
  97. #define CLEAR_CANrxNew(rxNew) { CANrxMemoryBarrier(); rxNew = (void *)0L; }
  98. #ifdef __cplusplus
  99. }
  100. #endif
  101. #endif /* ZEPHYR_MODULES_CANOPENNODE_CO_DRIVER_H */