Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. config BSP_USING_CORETIMER
  44. bool "Using core timer"
  45. select RT_USING_CORETIMER
  46. default y
  47. menuconfig BSP_USING_SYSTIMER
  48. bool "Enable SYSTIMER"
  49. select BSP_USING_SYSTIMER
  50. default n
  51. if BSP_USING_SYSTIMER
  52. config RT_USING_SYSTIMER1
  53. bool "Enable sys timer1"
  54. default n
  55. config RT_USING_SYSTIMER3
  56. bool "Enable sys timer3"
  57. default n
  58. endif
  59. config BSP_USING_WDT
  60. bool "Enable WDT"
  61. select RT_USING_WDT
  62. default n
  63. menuconfig BSP_USING_RTC
  64. bool "Enable RTC"
  65. select RT_USING_RTC
  66. default n
  67. if BSP_USING_RTC
  68. config BSP_USING_ALARM
  69. bool "Enable Alarm"
  70. select RT_USING_ALARM
  71. default n
  72. endif
  73. menuconfig BSP_USING_SDIO
  74. bool "Enable SDIO"
  75. select RT_USING_SDIO
  76. default n
  77. if BSP_USING_SDIO
  78. config BSP_USING_SDIO0
  79. bool "Enable SDIO0"
  80. select RT_USING_SDIO
  81. default n
  82. endif
  83. endmenu
  84. menu "Board Peripheral Drivers"
  85. menuconfig BSP_USING_HDMI
  86. bool "Enable HDMI"
  87. default n
  88. if BSP_USING_HDMI
  89. config BSP_USING_HDMI_DISPLAY
  90. bool "HDMI DISPLAY"
  91. default n
  92. endif
  93. endmenu
  94. endmenu