Kconfig 3.3 KB

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