ppi.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_PPI_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_PPI_H_
  8. /**
  9. * @brief inter-processor message communication API.
  10. * @defgroup ipmsg_interface IPMSG Interface
  11. * @ingroup io_interfaces
  12. * @{
  13. */
  14. #include <kernel.h>
  15. #include <device.h>
  16. #include <soc.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /******************************************************************************/
  21. //constants
  22. /******************************************************************************/
  23. /******************************************************************************/
  24. //typedefs
  25. /******************************************************************************/
  26. typedef struct task_trig {
  27. uint32_t en : 1; // Channel en
  28. uint32_t chan : 4; // Channel id
  29. uint32_t task : 5; // Task selection
  30. uint32_t trig : 6; // Trigger src
  31. uint32_t peri : 16; // Period (ms)
  32. } task_trig_t;
  33. /******************************************************************************/
  34. //functions
  35. /******************************************************************************/
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. /**
  40. * @}
  41. */
  42. #endif /* ZEPHYR_INCLUDE_DRIVERS_PPI_H_ */