cslr.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* ============================================================================
  2. * Copyright (c) Texas Instruments Incorporated 2002, 2003, 2004, 2005, 2006, 2008 2016
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the
  14. * 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
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. */
  33. /** ============================================================================
  34. * \file cslr.h
  35. *
  36. * \brief This file contains the macro definations for Register layer
  37. *
  38. */
  39. /* Register layer central -- contains field-manipulation macro definitions */
  40. #ifndef CSLR_H
  41. #define CSLR_H
  42. /* the "expression" macros */
  43. /* the Field MaKe macro */
  44. #define CSL_FMK(PER_REG_FIELD, val) \
  45. (((val) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK)
  46. /* the Field EXTract macro */
  47. #define CSL_FEXT(reg, PER_REG_FIELD) \
  48. (((reg) & CSL_##PER_REG_FIELD##_MASK) >> CSL_##PER_REG_FIELD##_SHIFT)
  49. /* the Field INSert macro */
  50. #define CSL_FINS(reg, PER_REG_FIELD, val) \
  51. ((reg) = ((reg) & ~CSL_##PER_REG_FIELD##_MASK) \
  52. | (((val) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK))
  53. /* the "token" macros */
  54. /* the Field MaKe (Token) macro */
  55. #define CSL_FMKT(PER_REG_FIELD, TOKEN) \
  56. (((CSL_##PER_REG_FIELD##_##TOKEN) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK)
  57. /* the Field INSert (Token) macro */
  58. #define CSL_FINST(reg, PER_REG_FIELD, TOKEN) \
  59. ((reg) = ((reg) & ~CSL_##PER_REG_FIELD##_MASK) \
  60. | (((CSL_##PER_REG_FIELD##_##TOKEN) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK))
  61. /* the "raw" macros */
  62. #define kw_val (1u) \
  63. /* the Field MaKe (Raw) macro */
  64. #define CSL_FMKR(msb, lsb, val) \
  65. (((val) & ((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U))) << (lsb))
  66. /* the Field EXTract (Raw) macro */
  67. #define CSL_FEXTR(reg, msb, lsb) \
  68. (((reg) >> (lsb)) & ((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U)))
  69. /* the Field INSert (Raw) macro */
  70. #define CSL_FINSR(reg, msb, lsb, val) \
  71. ((reg) = ((reg) & (~(((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U)) << (lsb)))) \
  72. | CSL_FMKR((msb), (lsb), (val)))
  73. #endif /* CSLR_H_ */
  74. /**
  75. * \mainpage Chip Support Library
  76. *
  77. * \par IMPORTANT NOTE
  78. * <b>
  79. * The interfaces defined in this package are bound to change.
  80. * Kindly treat the interfaces as work in progress.
  81. * Release notes/user guide list the additional limitation/restriction
  82. * of this module/interfaces.
  83. * </b> See also \ref TI_DISCLAIMER.
  84. *
  85. *
  86. * Chip Support Library(CSL) provides a no-OS platform support for
  87. * multi-core SoCs. CSL provides CSL Functional Layer (CSL-FL) libraries and
  88. * CSL Register Layer (CSL-R) along with peripheral/board level sample/demo
  89. * examples that demonstrate the capabilities of the peripherals.
  90. *
  91. * <b>
  92. * Also refer to top level user guide for detailed features,
  93. * limitations and usage description.
  94. * </b>
  95. *
  96. * The CSL-FL includes the following modules/drivers
  97. * - <b> HW Type Defines </b> (See \ref HW_TYPES) <br>
  98. * In-line functions required to read/write values from/to the hardware registers
  99. *
  100. * - <b> IP's </b> <br>
  101. * - <b> System Module</b> <br>
  102. * - <b> EDMA </b> (See \ref CSL_EDMA) <br>
  103. * - <b> EPWM </b> (See \ref CSL_EPWM) <br>
  104. * - <b> GPIO </b> (See \ref CSL_GPIO) <br>
  105. * - <b> Mailbox </b> (See \ref CSL_MAILBOX) <br>
  106. * - <b> MMU </b> (See \ref CSL_MMU) <br>
  107. * - <b> Spinlock </b> (See \ref CSL_SPINLOCK) <br>
  108. * - <b> Timer </b> (See \ref CSL_TIMER) <br>
  109. * - <b> WD Timer </b> (See \ref CSL_WD_TIMER) <br>
  110. * - <b> Safety/Security Module</b> <br>
  111. * - <b> ADC </b> (See \ref CSL_ADC) <br>
  112. * - <b> CRC </b> (See \ref CSL_CRC) <br>
  113. * - <b> DCC </b> (See \ref CSL_DCC) <br>
  114. * - <b> ESM </b> (See \ref CSL_ESM) <br>
  115. * - <b> L4 Firewall </b> (See \ref CSL_L3_FIREWALL) <br>
  116. * - <b> L4 Firewall </b> (See \ref CSL_L4_FIREWALL) <br>
  117. * - <b> Tesoc </b> (See \ref CSL_TESOC) <br>
  118. * - <b> RTI </b> (See \ref CSL_RTI) <br>
  119. * - <b> Serial Module</b> <br>
  120. * - <b> DCAN </b> (See \ref CSL_DCAN) <br>
  121. * - <b> I2C </b> (See \ref CSL_I2C) <br>
  122. * - <b> MCAN </b> (See \ref CSL_MCAN) <br>
  123. * - <b> McSPI </b> (See \ref CSL_MCSPI) <br>
  124. * - <b> QSPI </b> (See \ref CSL_QSPI) <br>
  125. * - <b> UART </b> (See \ref CSL_UART) <br>
  126. * - <b> PCIe </b> (See \ref CSL_PCIE) <br>
  127. * - <b> Memory Controller</b> <br>
  128. * - <b> EMIF </b> (See \ref CSL_EMIF) <br>
  129. * - <b> GPMC </b> (See \ref CSL_GPMC) <br>
  130. * - <b> OCMC </b> (See \ref CSL_IP_MODULE_OCMC) <br>
  131. * - <b> Memory/Storage</b> <br>
  132. * - <b> MMCSD </b> (See \ref CSL_MMCSD) <br>
  133. *
  134. * - <b> SOC Module </b> <br>
  135. * This Module contain the SOC level configuration API's such as cross bar configuration, cross bar defines, SOC defines
  136. * - <b> Device Common API's</b> (See \ref CSL_DEVICE_COMMON) <br>
  137. * - <b> TDA2EX</b> (See \ref SOC_TDA2EX) <br>
  138. * - <b> TDA2PX</b> (See \ref SOC_TDA2PX) <br>
  139. * - <b> TDA2XX</b> (See \ref SOC_TDA2XX) <br>
  140. * - <b> TDA3XX</b> (See \ref SOC_TDA3XX) <br>
  141. *
  142. * - <b> ARCH Module </b> <br>
  143. * This Module contain the core specific configuration API's such as Interrupt, Cache, ECC
  144. * - <b> A15</b> (See \ref CSL_ARCH_A15) <br>
  145. * - <b> DSP-C66x</b> (See \ref CSL_ARCH_C66X) <br>
  146. * - <b> M4</b> (See \ref CSL_ARCH_M4) <br>
  147. * - <b> EVE</b> (See \ref CSL_ARCH_ARP32) <br>
  148. */
  149. /**
  150. * \page TI_DISCLAIMER TI Disclaimer
  151. *
  152. * \htmlinclude ti_disclaim.htm
  153. */