Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. menu "Hardware Drivers Config"
  2. menu "BCM Peripheral Drivers"
  3. menuconfig BSP_USING_UART
  4. bool "Using UART"
  5. select RT_USING_SERIAL
  6. default y
  7. if BSP_USING_UART
  8. config RT_USING_UART0
  9. bool "Enable UART 0"
  10. default y
  11. config RT_USING_UART1
  12. bool "Enable UART 1"
  13. default n
  14. config RT_USING_UART3
  15. bool "Enable UART 3"
  16. default n
  17. config RT_USING_UART4
  18. bool "Enable UART 4"
  19. default n
  20. config RT_USING_UART5
  21. bool "Enable UART 5"
  22. default n
  23. endif
  24. config BSP_USING_GIC
  25. bool
  26. default y
  27. config BSP_USING_GICV2
  28. bool
  29. default y
  30. config BSP_USING_PIN
  31. bool "Using PIN"
  32. select RT_USING_PIN
  33. default y
  34. config BSP_USING_CORETIMER
  35. bool "Using core timer"
  36. select RT_USING_CORETIMER
  37. default y
  38. menuconfig BSP_USING_SYSTIMER
  39. bool "Enable SYSTIMER"
  40. select BSP_USING_SYSTIMER
  41. default n
  42. if BSP_USING_SYSTIMER
  43. config RT_USING_SYSTIMER1
  44. bool "Enable sys timer1"
  45. default n
  46. config RT_USING_SYSTIMER3
  47. bool "Enable sys timer3"
  48. default n
  49. endif
  50. config BSP_USING_ETH
  51. bool "Enable ETH"
  52. default n
  53. config BSP_USING_WDT
  54. bool "Enable WDT"
  55. select RT_USING_WDT
  56. default n
  57. menuconfig BSP_USING_RTC
  58. bool "Enable RTC"
  59. select RT_USING_RTC
  60. default n
  61. if BSP_USING_RTC
  62. config BSP_USING_ALARM
  63. bool "Enable Alarm"
  64. select RT_USING_ALARM
  65. default n
  66. endif
  67. menuconfig BSP_USING_SDIO
  68. bool "Enable SDIO"
  69. select RT_USING_SDIO
  70. default n
  71. if BSP_USING_SDIO
  72. config BSP_USING_SDIO0
  73. bool "Enable SDIO0"
  74. select RT_USING_SDIO
  75. default n
  76. endif
  77. endmenu
  78. menu "Board Peripheral Drivers"
  79. menuconfig BSP_USING_HDMI
  80. bool "Enable HDMI"
  81. default n
  82. if BSP_USING_HDMI
  83. config BSP_USING_HDMI_DISPLAY
  84. bool "HDMI DISPLAY"
  85. default n
  86. endif
  87. endmenu
  88. endmenu