Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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_ETH
  60. bool "Enable ETH"
  61. default n
  62. config BSP_USING_WDT
  63. bool "Enable WDT"
  64. select RT_USING_WDT
  65. default n
  66. menuconfig BSP_USING_RTC
  67. bool "Enable RTC"
  68. select RT_USING_RTC
  69. default n
  70. if BSP_USING_RTC
  71. config BSP_USING_ALARM
  72. bool "Enable Alarm"
  73. select RT_USING_ALARM
  74. default n
  75. endif
  76. menuconfig BSP_USING_SDIO
  77. bool "Enable SDIO"
  78. select RT_USING_SDIO
  79. default n
  80. if BSP_USING_SDIO
  81. config BSP_USING_SDIO0
  82. bool "Enable SDIO0"
  83. select RT_USING_SDIO
  84. default n
  85. endif
  86. endmenu
  87. menu "Board Peripheral Drivers"
  88. menuconfig BSP_USING_HDMI
  89. bool "Enable HDMI"
  90. default n
  91. if BSP_USING_HDMI
  92. config BSP_USING_HDMI_DISPLAY
  93. bool "HDMI DISPLAY"
  94. default n
  95. endif
  96. endmenu
  97. endmenu