Kconfig 474 B

1234567891011121314151617181920
  1. menuconfig RT_USING_RESET
  2. bool "Using Reset Controller support"
  3. depends on RT_USING_DM
  4. depends on RT_USING_OFW
  5. default n
  6. config RT_RESET_SCMI
  7. bool "Reset driver controlled via ARM SCMI interface"
  8. depends on RT_USING_RESET
  9. depends on RT_FIRMWARE_ARM_SCMI
  10. default n
  11. config RT_RESET_SIMPLE
  12. bool "Simple Reset Controller Driver"
  13. depends on RT_USING_RESET
  14. default n
  15. if RT_USING_RESET
  16. osource "$(SOC_DM_RESET_DIR)/Kconfig"
  17. endif