Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. endif
  18. menuconfig BSP_USING_GIC
  19. bool "Enable GIC"
  20. select RT_USING_GIC
  21. default y
  22. if BSP_USING_GIC
  23. config BSP_USING_GIC390
  24. bool "Enable GIC390"
  25. default y
  26. endif
  27. config BSP_USING_PIN
  28. bool "Using PIN"
  29. select RT_USING_PIN
  30. default y
  31. menuconfig BSP_USING_SYSTIMER
  32. bool "Enable SYSTIMER"
  33. select RT_USING_SYSTIMER
  34. default n
  35. if BSP_USING_SYSTIMER
  36. config RT_USING_SYSTIMER1
  37. bool "Enable sys timer1"
  38. default n
  39. config RT_USING_SYSTIMER3
  40. bool "Enable sys timer3"
  41. default n
  42. endif
  43. menuconfig BSP_USING_I2C
  44. bool "Enable I2C"
  45. select RT_USING_I2C
  46. default n
  47. if BSP_USING_I2C
  48. config BSP_USING_I2C0
  49. bool "Enable I2C0"
  50. default n
  51. config BSP_USING_I2C1
  52. bool "Enable I2C1"
  53. default n
  54. endif
  55. menuconfig BSP_USING_SPI
  56. bool "Enable SPI"
  57. select RT_USING_SPI
  58. default n
  59. if BSP_USING_SPI
  60. config BSP_USING_SPI0
  61. bool "Enable SPI0"
  62. default n
  63. config BSP_USING_SPI1
  64. bool "Enable SPI1"
  65. default n
  66. endif
  67. config BSP_USING_WDT
  68. bool "Enable WDT"
  69. select RT_USING_WDT
  70. default n
  71. menuconfig BSP_USING_RTC
  72. bool "Enable RTC"
  73. select RT_USING_RTC
  74. default n
  75. if BSP_USING_RTC
  76. config BSP_USING_ALARM
  77. bool "Enable Alarm"
  78. select RT_USING_ALARM
  79. default n
  80. endif
  81. menuconfig BSP_USING_SDIO
  82. bool "Enable SDIO"
  83. select RT_USING_SDIO
  84. default n
  85. if BSP_USING_SDIO
  86. config BSP_USING_SDIO0
  87. bool "Enable SDIO0"
  88. select RT_USING_SDIO
  89. default n
  90. endif
  91. endmenu
  92. menu "Board Peripheral Drivers"
  93. menuconfig BSP_USING_HDMI
  94. bool "Enable HDMI"
  95. select BSP_USING_SPI
  96. default n
  97. if BSP_USING_HDMI
  98. config BSP_USING_HDMI_DISPLAY
  99. bool "HDMI DISPLAY"
  100. default n
  101. endif
  102. endmenu
  103. endmenu