Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. default n
  70. if BSP_USING_SYSTIMER
  71. config RT_USING_SYSTIMER1
  72. bool "Enable sys timer1"
  73. default n
  74. config RT_USING_SYSTIMER3
  75. bool "Enable sys timer3"
  76. default n
  77. endif
  78. config BSP_USING_WDT
  79. bool "Enable WDT"
  80. select RT_USING_WDT
  81. default n
  82. menuconfig BSP_USING_RTC
  83. bool "Enable RTC"
  84. select RT_USING_RTC
  85. default n
  86. if BSP_USING_RTC
  87. config BSP_USING_ALARM
  88. bool "Enable Alarm"
  89. select RT_USING_ALARM
  90. default n
  91. endif
  92. menuconfig BSP_USING_SDIO
  93. bool "Enable SDIO"
  94. select RT_USING_SDIO
  95. default n
  96. if BSP_USING_SDIO
  97. config BSP_USING_SDIO0
  98. bool "Enable SDIO0"
  99. select RT_USING_SDIO
  100. default n
  101. endif
  102. endmenu
  103. menu "Board Peripheral Drivers"
  104. menuconfig BSP_USING_HDMI
  105. bool "Enable HDMI"
  106. default n
  107. if BSP_USING_HDMI
  108. config BSP_USING_HDMI_DISPLAY
  109. bool "HDMI DISPLAY"
  110. default n
  111. endif
  112. menuconfig BSP_USING_TOUCH
  113. bool "Enable Touch"
  114. default n
  115. endmenu
  116. endmenu