CV_Config.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*-----------------------------------------------------------------------------
  2. * Name: CV_Config.h
  3. * Purpose: CV Config header
  4. *----------------------------------------------------------------------------
  5. * Copyright (c) 2017 ARM Limited. All rights reserved.
  6. *----------------------------------------------------------------------------*/
  7. #ifndef __CV_CONFIG_H
  8. #define __CV_CONFIG_H
  9. #include "RTE_Components.h"
  10. #include CMSIS_device_header
  11. //-------- <<< Use Configuration Wizard in Context Menu >>> --------------------
  12. // <h> Common Test Settings
  13. // <o> Print Output Format <0=> Plain Text <1=> XML
  14. // <i> Set the test results output format to plain text or XML
  15. #ifndef PRINT_XML_REPORT
  16. #define PRINT_XML_REPORT 0
  17. #endif
  18. // <o> Buffer size for assertions results
  19. // <i> Set the buffer size for assertions results buffer
  20. #define BUFFER_ASSERTIONS 128U
  21. // </h>
  22. // <h> Disable Test Cases
  23. // <i> Uncheck to disable an individual test case
  24. // <q00> TC_CoreInstr_NOP
  25. // <q01> TC_CoreInstr_REV
  26. // <q02> TC_CoreInstr_REV16
  27. // <q03> TC_CoreInstr_REVSH
  28. // <q04> TC_CoreInstr_ROR
  29. // <q05> TC_CoreInstr_RBIT
  30. // <q06> TC_CoreInstr_CLZ
  31. // <q07> TC_CoreInstr_SSAT
  32. // <q08> TC_CoreInstr_USAT
  33. //
  34. // <q09> TC_CoreAFunc_FPSCR
  35. // <q10> TC_CoreAFunc_CPSR
  36. // <q11> TC_CoreAFunc_Mode
  37. // <q12> TC_CoreAFunc_SP
  38. // <q13> TC_CoreAFunc_SP_usr
  39. // <q14> TC_CoreAFunc_FPEXC
  40. // <q15> TC_COREAFUNC_ACTLR
  41. // <q16> TC_COREAFUNC_CPACR
  42. // <q17> TC_COREAFUNC_DFSR
  43. // <q18> TC_COREAFUNC_IFSR
  44. // <q19> TC_COREAFUNC_ISR
  45. // <q20> TC_COREAFUNC_CBAR
  46. // <q21> TC_COREAFUNC_TTBR0
  47. // <q22> TC_COREAFUNC_DACR
  48. // <q23> TC_COREAFUNC_SCTLR
  49. // <q24> TC_COREAFUNC_ACTRL
  50. // <q25> TC_COREAFUNC_MPIDR
  51. // <q26> TC_COREAFUNC_VBAR
  52. //
  53. // <q27> TC_GENTIMER_CNTFRQ
  54. // <q28> TC_GENTIMER_CNTP_TVAL
  55. // <q29> TC_GENTIMER_CNTP_CTL
  56. // <q30> TC_GENTIMER_CNTPCT
  57. // <q31> TC_GENTIMER_CNTP_CVAL
  58. #define TC_COREINSTR_NOP_EN 1
  59. #define TC_COREINSTR_REV_EN 1
  60. #define TC_COREINSTR_REV16_EN 1
  61. #define TC_COREINSTR_REVSH_EN 1
  62. #define TC_COREINSTR_ROR_EN 1
  63. #define TC_COREINSTR_RBIT_EN 1
  64. #define TC_COREINSTR_CLZ_EN 1
  65. #define TC_COREINSTR_SSAT_EN 1
  66. #define TC_COREINSTR_USAT_EN 1
  67. #define TC_COREAFUNC_IRQ 1
  68. #define TC_COREAFUNC_FPSCR 1
  69. #define TC_COREAFUNC_CPSR 1
  70. #define TC_COREAFUNC_MODE 1
  71. #define TC_COREAFUNC_SP 1
  72. #define TC_COREAFUNC_SP_USR 1
  73. #define TC_COREAFUNC_FPEXC 1
  74. #define TC_COREAFUNC_ACTLR 1
  75. #define TC_COREAFUNC_CPACR 1
  76. #define TC_COREAFUNC_DFSR 1
  77. #define TC_COREAFUNC_IFSR 1
  78. #define TC_COREAFUNC_ISR 1
  79. #define TC_COREAFUNC_CBAR 1
  80. #define TC_COREAFUNC_TTBR0 1
  81. #define TC_COREAFUNC_DACR 1
  82. #define TC_COREAFUNC_SCTLR 1
  83. #define TC_COREAFUNC_ACTRL 1
  84. #define TC_COREAFUNC_MPIDR 1
  85. #define TC_COREAFUNC_VBAR 1
  86. #define TC_GENTIMER_CNTFRQ 1
  87. #define TC_GENTIMER_CNTP_TVAL 1
  88. #define TC_GENTIMER_CNTP_CTL 1
  89. #define TC_GENTIMER_CNTPCT 1
  90. #define TC_GENTIMER_CNTP_CVAL 1
  91. // </h>
  92. #endif /* __CV_CONFIG_H */