Kconfig 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. endif
  15. menuconfig BSP_USING_GIC
  16. bool "Enable GIC"
  17. select RT_USING_GIC
  18. default y
  19. if BSP_USING_GIC
  20. config BSP_USING_GIC400
  21. bool "Enable GIC400"
  22. default y
  23. config BSP_USING_GIC500
  24. bool "Enable GIC500"
  25. default n
  26. endif
  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_WDT
  48. bool "Enable WDT"
  49. select RT_USING_WDT
  50. default n
  51. menuconfig BSP_USING_RTC
  52. bool "Enable RTC"
  53. select RT_USING_RTC
  54. default n
  55. if BSP_USING_RTC
  56. config BSP_USING_ALARM
  57. bool "Enable Alarm"
  58. select RT_USING_ALARM
  59. default n
  60. endif
  61. menuconfig BSP_USING_SDIO
  62. bool "Enable SDIO"
  63. select RT_USING_SDIO
  64. default n
  65. if BSP_USING_SDIO
  66. config BSP_USING_SDIO0
  67. bool "Enable SDIO0"
  68. select RT_USING_SDIO
  69. default n
  70. endif
  71. endmenu
  72. menu "Board Peripheral Drivers"
  73. menuconfig BSP_USING_HDMI
  74. bool "Enable HDMI"
  75. default n
  76. if BSP_USING_HDMI
  77. config BSP_USING_HDMI_DISPLAY
  78. bool "HDMI DISPLAY"
  79. default n
  80. endif
  81. endmenu
  82. endmenu