usb-device.txt 730 B

1234567891011121314151617181920212223242526272829
  1. Generic USB Device Properties
  2. Usually, we only use device tree for hard wired USB device.
  3. The reference binding doc is from:
  4. http://www.firmware.org/1275/bindings/usb/usb-1_0.ps
  5. Required properties:
  6. - compatible: usbVID,PID. The textual representation of VID, PID shall
  7. be in lower case hexadecimal with leading zeroes suppressed. The
  8. other compatible strings from the above standard binding could also
  9. be used, but a device adhering to this binding may leave out all except
  10. for usbVID,PID.
  11. - reg: the port number which this device is connecting to, the range
  12. is 1-255.
  13. Example:
  14. &usb1 {
  15. status = "okay";
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. hub: genesys@1 {
  19. compatible = "usb5e3,608";
  20. reg = <1>;
  21. };
  22. }