MuxIntcP.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Copyright (c) 2015-2017, Texas Instruments Incorporated
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * * Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. *
  12. * * Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * * Neither the name of Texas Instruments Incorporated nor the names of
  17. * its contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  22. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  30. * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. /** ============================================================================
  33. * @file MuxIntcP.h
  34. *
  35. * @brief Interrupt Controller Mux module for the RTOS Porting Interface
  36. *
  37. * @endcode
  38. *
  39. * ============================================================================
  40. */
  41. #ifndef ti_osal_MuxIntcP__include
  42. #define ti_osal_MuxIntcP__include
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. #include <stdint.h>
  47. #include <stdbool.h>
  48. #include <stddef.h>
  49. /*!
  50. * @brief Status codes for MuxIntcP APIs
  51. */
  52. typedef enum MuxIntcP_Status_e {
  53. MuxIntcP_OK = 0,
  54. MuxIntcP_FAILURE = (-(int32_t)1)
  55. } MuxIntcP_Status;
  56. /* Cross bar MuxNum to be used for MuxIntcP_create() */
  57. #define MUXINTCP_CROSSBAR_MUXNUM_DSP1 (0)
  58. #define MUXINTCP_CROSSBAR_MUXNUM_DSP2 (1)
  59. #define MUXINTCP_CROSSBAR_MUXNUM_IPU1 (2)
  60. #define MUXINTCP_CROSSBAR_MUXNUM_IPU2 (3)
  61. #define MUXINTCP_CROSSBAR_MUXNUM_MPU (4)
  62. #define MUXINTCP_CROSSBAR_MUXNUM_INVALID (-(int32_t)1)
  63. /*!
  64. * @brief Prototype for the entry function for a cpIntc interrupt
  65. */
  66. typedef void (*MuxIntcP_Fxn)(uintptr_t arg);
  67. /*!
  68. * @brief Prototype for the MuxIntc dispatch function
  69. */
  70. typedef void (*MuxIntcFxn)(uintptr_t arg);
  71. /*!
  72. * @brief Basic MuxIntcP Input Parameters
  73. *
  74. * Structure that contains the parameters passed into ::MuxIntcP_create
  75. * when creating a MuxIntcP instance.
  76. */
  77. typedef struct MuxIntcP_inParams_s {
  78. /* Input parameters */
  79. uintptr_t arg; /*!< Argument passed into the MuxIntc function. */
  80. int32_t muxNum; /*!< K2: CIC number; AM: Xbar instance number:MUXINTCP_CROSSBAR_MUXNUM_##,-1: reserved for RM */
  81. int32_t muxInEvent; /*!< K2: CIC input event; AM: Xbar input system event; -1: reserved for RM */
  82. int32_t muxOutEvent; /*!< K2: Host int num, output int from CIC; AM: Xbar IRQ instance */
  83. MuxIntcFxn muxIntcFxn; /*!< K2: ISR function for CIC; AM: not used */
  84. } MuxIntcP_inParams;
  85. typedef struct MuxIntcP_outParams_s {
  86. /* Output parameters */
  87. uintptr_t arg; /*!< Argument passed out from the MuxIntc function. */
  88. uint32_t eventId; /*!< K2: Mapped CorePac Event Id, input event to CorePac IntC; AM: not used */
  89. MuxIntcFxn muxIntcFxn; /*!< K2: CIC dispatch function for Intc; AM: not used */
  90. } MuxIntcP_outParams;
  91. /*!
  92. * @brief Function to create an interrupt controller mux
  93. *
  94. * @param funcPtr entry function of the CIC interrupt
  95. *
  96. * @param params Pointer to the instance configuration parameters.
  97. *
  98. * @return MuxIntcP_Status on MuxIntcP_OK or MuxIntcP_FAILURE
  99. */
  100. extern MuxIntcP_Status MuxIntcP_create(MuxIntcP_inParams *inParams, MuxIntcP_outParams *outParams);
  101. /*!
  102. * @brief Function to enable interrupt controller mux for an input event
  103. *
  104. * @param muxNum Interrupt Controller mux number
  105. * @param muxInEvent Interrupt Controller mux input event ID
  106. */
  107. extern void MuxIntcP_enableInEvent(int32_t muxNum, int32_t muxInEvent);
  108. /*!
  109. * @brief Function to disable interrupt controller mux for an input event
  110. *
  111. * @param muxNum Interrupt Controller mux number
  112. * @param muxInEvent Interrupt Controller mux input event ID
  113. */
  114. extern void MuxIntcP_disableInEvent(int32_t muxNum, int32_t muxInEvent);
  115. /*!
  116. * @brief Function to clear interrupt controller mux for an input event
  117. *
  118. * @param muxNum Interrupt Controller mux number
  119. * @param muxInEvent Interrupt Controller mux input event ID
  120. */
  121. extern void MuxIntcP_clearInEvent(int32_t muxNum, int32_t muxInEvent);
  122. /*!
  123. * @brief Function to enable interrupt controller mux for an output event
  124. *
  125. * @param muxNum Interrupt Controller mux number
  126. * @param muxInEvent Interrupt Controller mux output event ID
  127. */
  128. extern void MuxIntcP_enableOutEvent(int32_t muxNum, int32_t muxOutEvent);
  129. /*!
  130. * @brief Function to disable interrupt controller mux for an output event
  131. *
  132. * @param muxNum Interrupt Controller mux number
  133. * @param muxInEvent Interrupt Controller mux output event ID
  134. */
  135. extern void MuxIntcP_disableOutEvent(int32_t muxNum, int32_t muxOutEvent);
  136. #ifdef __cplusplus
  137. }
  138. #endif
  139. #endif /* ti_osal_MuxIntcP__include */