Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_PIN
  28. bool "Using PIN"
  29. select RT_USING_PIN
  30. default y
  31. config BSP_USING_CORETIMER
  32. bool "Using core timer"
  33. select RT_USING_CORETIMER
  34. default y
  35. menuconfig BSP_USING_SYSTIMER
  36. bool "Enable SYSTIMER"
  37. select BSP_USING_SYSTIMER
  38. default n
  39. if BSP_USING_SYSTIMER
  40. config RT_USING_SYSTIMER1
  41. bool "Enable sys timer1"
  42. default n
  43. config RT_USING_SYSTIMER3
  44. bool "Enable sys timer3"
  45. default n
  46. endif
  47. config BSP_USING_ETH
  48. bool "Enable ETH"
  49. default n
  50. config BSP_USING_WDT
  51. bool "Enable WDT"
  52. select RT_USING_WDT
  53. default n
  54. menuconfig BSP_USING_RTC
  55. bool "Enable RTC"
  56. select RT_USING_RTC
  57. default n
  58. if BSP_USING_RTC
  59. config BSP_USING_ALARM
  60. bool "Enable Alarm"
  61. select RT_USING_ALARM
  62. default n
  63. endif
  64. menuconfig BSP_USING_SDIO
  65. bool "Enable SDIO"
  66. select RT_USING_SDIO
  67. default n
  68. if BSP_USING_SDIO
  69. config BSP_USING_SDIO0
  70. bool "Enable SDIO0"
  71. select RT_USING_SDIO
  72. default n
  73. endif
  74. endmenu
  75. menu "Board Peripheral Drivers"
  76. menuconfig BSP_USING_HDMI
  77. bool "Enable HDMI"
  78. default n
  79. if BSP_USING_HDMI
  80. config BSP_USING_HDMI_DISPLAY
  81. bool "HDMI DISPLAY"
  82. default n
  83. endif
  84. endmenu
  85. endmenu