soc.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. * @file soc.h
  3. *
  4. * @brief
  5. * This file contains SOC specific defintions.
  6. *
  7. * \par
  8. * ============================================================================
  9. * @n (C) Copyright 2009-2017, Texas Instruments, Inc.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. *
  15. * Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. *
  18. * Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the
  21. * distribution.
  22. *
  23. * Neither the name of Texas Instruments Incorporated nor the names of
  24. * its contributors may be used to endorse or promote products derived
  25. * from this software without specific prior written permission.
  26. *
  27. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  28. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  29. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  30. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  31. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  32. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  33. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  34. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  35. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  36. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  37. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #ifndef CSL_SOC_H
  41. #define CSL_SOC_H
  42. #include <ti/csl/cslr.h>
  43. #include <ti/csl/tistdtypes.h>
  44. /*****************************************************************************\
  45. * Static inline definition
  46. \*****************************************************************************/
  47. #ifndef CSL_IDEF_INLINE
  48. #define CSL_IDEF_INLINE static inline
  49. #endif
  50. #if defined(SOC_K2K)
  51. #include <ti/csl/soc/k2k/src/cslr_device.h>
  52. #elif defined(SOC_K2H)
  53. #include <ti/csl/soc/k2h/src/cslr_device.h>
  54. #elif defined(SOC_K2E)
  55. #include <ti/csl/soc/k2e/src/cslr_device.h>
  56. #elif defined(SOC_K2L)
  57. #include <ti/csl/soc/k2l/src/cslr_device.h>
  58. #elif defined(SOC_AM574x)
  59. #include <ti/csl/soc/am574x/src/cslr_soc.h>
  60. #elif defined(SOC_AM572x)
  61. #include <ti/csl/soc/am572x/src/cslr_soc.h>
  62. #elif defined(SOC_AM571x)
  63. #include <ti/csl/soc/am571x/src/cslr_soc.h>
  64. #elif defined(SOC_K2G)
  65. #include <ti/csl/soc/k2g/src/cslr_soc.h>
  66. #elif defined (SOC_TDA2XX)
  67. #include <ti/csl/soc/tda2xx/cslr_soc.h>
  68. #elif defined(SOC_TDA2PX)
  69. #include <ti/csl/soc/tda2px/cslr_soc.h>
  70. #elif defined(SOC_TDA2EX)
  71. #include <ti/csl/soc/tda2ex/cslr_soc.h>
  72. #elif defined(SOC_TDA3XX)
  73. #include <ti/csl/soc/tda3xx/cslr_soc.h>
  74. #elif defined(SOC_DRA72x)
  75. #include <ti/csl/soc/dra72x/cslr_soc.h>
  76. #elif defined(SOC_DRA75x)
  77. #include <ti/csl/soc/dra75x/cslr_soc.h>
  78. #elif defined(SOC_DRA78x)
  79. #include <ti/csl/soc/dra78x/cslr_soc.h>
  80. #elif defined(SOC_C6678)
  81. #include <ti/csl/soc/c6678/src/cslr_device.h>
  82. #elif defined(SOC_C6657)
  83. #include <ti/csl/soc/c6657/src/cslr_device.h>
  84. #elif defined(SOC_OMAPL137)
  85. #include <ti/csl/soc/omapl137/src/cslr_soc.h>
  86. #elif defined(SOC_OMAPL138)
  87. #include <ti/csl/soc/omapl138/src/cslr_soc.h>
  88. #endif /* SOC_XXXXX */
  89. #endif /* CSL_SOC_H*/