Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 9e1ff307c779ce1f0f810c7ecce3d95bbae40896 authored by Linus Torvalds on 03 October 2021, 21:08:47 UTC
Linux 5.15-rc4
Tip revision: 9e1ff30
usb4604.txt
SMSC USB4604 High-Speed Hub Controller

Required properties:
- compatible: Should be "smsc,usb4604"

Optional properties:
- reg: Specifies the i2c slave address, it is required and should be 0x2d
       if I2C is used.
- reset-gpios: Should specify GPIO for reset.
- initial-mode: Should specify initial mode.
                (1 for HUB mode, 2 for STANDBY mode)

Examples:
	usb-hub@2d {
		compatible = "smsc,usb4604";
		reg = <0x2d>;
		reset-gpios = <&gpx3 5 1>;
		initial-mode = <1>;
	};
back to top