usb.h 709 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_USB_USB_H_
  7. #define ZEPHYR_INCLUDE_DT_BINDINGS_USB_USB_H_
  8. /* Ideally we'd generate this enum to match what's coming out of the YAML,
  9. * however, we dont have a good way to know how to name such an enum from
  10. * the generation point of view, so for now we just hand code the enum. This
  11. * enum is expected to match the order in the yaml (dts/bindings/usb/usb.yaml)
  12. */
  13. enum dt_usb_maximum_speed {
  14. DT_USB_MAXIMUM_SPEED_LOW_SPEED,
  15. DT_USB_MAXIMUM_SPEED_FULL_SPEED,
  16. DT_USB_MAXIMUM_SPEED_HIGH_SPEED,
  17. DT_USB_MAXIMUM_SPEED_SUPER_SPEED,
  18. };
  19. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_USB_USB_H_ */