Kconfig 672 B

1234567891011121314151617181920
  1. menuconfig RT_USING_PHYE
  2. bool "Using External Port Physical Layer (PHY) device drivers"
  3. depends on RT_USING_DM
  4. default n
  5. help
  6. This framework will be of use only to devices that use
  7. external PHY (PHY functionality is not embedded within the controller).
  8. config RT_PHYE_GENERIC_USB
  9. bool "Generic USB"
  10. depends on RT_USING_PHYE
  11. help
  12. Enable support for generic USB PHY devices that follow the
  13. "usb-nop-xceiv" device tree binding. This driver provides basic
  14. PHY operations including reset, power management, and clock control
  15. for USB PHY hardware.
  16. if RT_USING_PHYE
  17. osource "$(SOC_DM_PHYE_DIR)/Kconfig"
  18. endif