Hi there,
I have been following the Jetson AGX Xavier Platform Adaptation and Bring-up Guide,(https://developer.download.nvidia.com/embedded/L4T/r32_Release_v1.0/Docs/Tegra_Linux_Driver_Package_AGX_Xavier_Adaptation_Guide.pdf) and am having issues on a custom carrier board with a different USB configuration than the dev kit. The guide references documentation files for the device tree bindings, but these documentation files do not exists. For instance, for xusb bindings, the guide references kernel/kernel-4.9/Documentation/devicetree/bindings/pinctrl/nvidia,tegra194-padctl.txt but no such file exists.
So without the full documentation of bindings, I am trying to work through what I may have missed by digging through the .dtsi files. Here is what our custom carrier has:
USB2.0
- [0] - Disabled (not present)
- [1] - Disabled (not present)
- [2] - Run to 3-0, host mode
- [3] - Run to 3-3, host mode
USB3.1 - [0 (uphy6)] - Companion 2-2 - type A
- [1] - Disabled (not present)
- [2] - Disabled (not present)
- [3 (uphy 11)] - Companion 2-3, gen1 only - type A
- Should I the leave the pads enabled but disable the ports, or do I need to disable both?
- How might I implement xHCI with the given setup? I am somewhat confused on the xHCI format.
- What other things do I need to disable in my dts? xudc comes to mind as a possible issue?
Here is what I currently have for the dts, I am sure it is incomplete. As is, it does not work.
/ {
xusb_padctl: xusb_padctl@3520000 {
pads {
usb2 {
lanes {
usb2-0 {
nvidia,function = "xusb";
status = "okay";
};
usb2-1 {
nvidia,function = "xusb";
status = "okay";
};
usb2-2 {
nvidia,function = "xusb";
status = "okay";
};
usb2-3 {
nvidia,function = "xusb";
status = "okay";
};
};
};
usb3 {
lanes {
usb3-0 {
nvidia,function = "xusb";
status = "okay";
};
usb3-1 {
nvidia,function = "xusb";
status = "okay";
};
usb3-2 {
nvidia,function = "xusb";
status = "okay";
};
usb3-3 {
nvidia,function = "xusb";
status = "okay";
};
};
};
};
ports {
usb2-0 {
mode = "host";
vbus-supply = <&battery_reg>;
status = "disabled";
};
usb2-1 {
mode = "host";
vbus-supply = <&battery_reg>;
status = "disabled";
};
usb2-2 {
mode = "host";
vbus-supply = <&battery_reg>;
status = "okay";
};
usb2-3 {
mode = "host";
vbus-supply = <&battery_reg>;
status = "okay";
};
usb3-0 {
nvidia,usb2-companion = <2>;
status = "okay";
};
usb3-1 {
nvidia,usb2-companion = <1>;
status = "disabled";
};
usb3-2 {
nvidia,usb2-companion = <0>;
status = "disabled";
};
usb3-3 {
nvidia,usb2-companion = <3>;
status = "okay";
nvidia,usb3-gen1-only = <1>;
};
};
};
};
Thanks!