Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. config BSP_SUPPORT_FPU
  2. bool "Using Float"
  3. default n
  4. menuconfig BSP_USING_VM_MODE
  5. bool "Enable VM mode"
  6. default n
  7. menu "Hardware Drivers Config"
  8. menu "BCM Peripheral Drivers"
  9. menuconfig BSP_USING_UART
  10. bool "Using UART"
  11. select RT_USING_SERIAL
  12. default y
  13. if BSP_USING_UART
  14. config RT_USING_UART0
  15. bool "Enable UART 0"
  16. default y
  17. config RT_USING_UART1
  18. bool "Enable UART 1"
  19. default n
  20. config RT_USING_UART3
  21. bool "Enable UART 3"
  22. default n
  23. config RT_USING_UART4
  24. bool "Enable UART 4"
  25. default n
  26. config RT_USING_UART5
  27. bool "Enable UART 5"
  28. default n
  29. endif
  30. menuconfig BSP_USING_GIC
  31. bool "Enable GIC"
  32. select RT_USING_GIC
  33. default y
  34. if BSP_USING_GIC
  35. config BSP_USING_GICV2
  36. bool "Enable GIC400(GICV2)"
  37. default y
  38. config BSP_USING_GICV3
  39. bool "Enable GIC500(GICV3)"
  40. default n
  41. endif
  42. config BSP_USING_PIN
  43. bool "Using PIN"
  44. select RT_USING_PIN
  45. default y
  46. menuconfig BSP_USING_SPI
  47. bool "Enable SPI"
  48. select RT_USING_SPI
  49. default n
  50. if BSP_USING_SPI
  51. config BSP_USING_SPI0_BUS
  52. bool "Enable SPI0 BUS"
  53. default n
  54. config BSP_USING_SPI0_DEVICE0
  55. bool "Enable SPI0 DEVICE0"
  56. select BSP_USING_SPI0_BUS
  57. default n
  58. config BSP_USING_SPI0_DEVICE1
  59. bool "Enable SPI0 DEVICE1"
  60. select BSP_USING_SPI0_BUS
  61. default n
  62. endif
  63. config BSP_USING_CORETIMER
  64. bool "Using core timer"
  65. select RT_USING_CORETIMER
  66. default y
  67. menuconfig BSP_USING_SYSTIMER
  68. bool "Enable SYSTIMER"
  69. select BSP_USING_SYSTIMER
  70. default n
  71. if BSP_USING_SYSTIMER
  72. config RT_USING_SYSTIMER1
  73. bool "Enable sys timer1"
  74. default n
  75. config RT_USING_SYSTIMER3
  76. bool "Enable sys timer3"
  77. default n
  78. endif
  79. config BSP_USING_WDT
  80. bool "Enable WDT"
  81. select RT_USING_WDT
  82. default n
  83. menuconfig BSP_USING_RTC
  84. bool "Enable RTC"
  85. select RT_USING_RTC
  86. default n
  87. if BSP_USING_RTC
  88. config BSP_USING_ALARM
  89. bool "Enable Alarm"
  90. select RT_USING_ALARM
  91. default n
  92. endif
  93. menuconfig BSP_USING_SDIO
  94. bool "Enable SDIO"
  95. select RT_USING_SDIO
  96. default n
  97. if BSP_USING_SDIO
  98. config BSP_USING_SDIO0
  99. bool "Enable SDIO0"
  100. select RT_USING_SDIO
  101. default n
  102. endif
  103. endmenu
  104. menu "Board Peripheral Drivers"
  105. menuconfig BSP_USING_HDMI
  106. bool "Enable HDMI"
  107. default n
  108. if BSP_USING_HDMI
  109. config BSP_USING_HDMI_DISPLAY
  110. bool "HDMI DISPLAY"
  111. default n
  112. endif
  113. menuconfig BSP_USING_TOUCH
  114. bool "Enable Touch"
  115. default n
  116. endmenu
  117. endmenu