Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions arch/arm64/boot/dts/qcom/lemans-evk.dts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
reg = <0>;

usb0_con_hs_ep: endpoint {
remote-endpoint = <&usb_0_dwc3_hs>;
remote-endpoint = <&eud_con>;
};
};
port@1 {
Expand Down Expand Up @@ -598,6 +598,14 @@
};
};

&eud_ep {
remote-endpoint = <&usb_0_dwc3_hs>;
};

&eud_con {
remote-endpoint = <&usb0_con_hs_ep>;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation uses 7 spaces instead of a tab. Kernel DTS files use tabs throughout.

Suggested change
remote-endpoint = <&usb0_con_hs_ep>;
remote-endpoint = <&usb0_con_hs_ep>;

};

&gpi_dma0 {
status = "okay";
};
Expand Down Expand Up @@ -1127,7 +1135,7 @@
};

&usb_0_dwc3_hs {
remote-endpoint = <&usb0_con_hs_ep>;
remote-endpoint = <&eud_ep>;
};

&usb_0_dwc3_ss {
Expand Down
26 changes: 26 additions & 0 deletions arch/arm64/boot/dts/qcom/lemans.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -3978,6 +3978,32 @@
};
};

eud: eud@88e1000 {
compatible = "qcom,sc7280-eud", "qcom,eud";
reg = <0 0x88e1000 0 0x2000>,
<0 0x88e3000 0 0x1000>;
interrupts-extended = <&pdc 11 IRQ_TYPE_LEVEL_HIGH>;

ports {
#address-cells = <1>;
#size-cells = <0>;

port@0 {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

port@0 is indented with 3 tabs but should be 4 tabs to match port@1.

Suggested change
port@0 {
port@0 {

reg = <0>;

eud_ep: endpoint {
};
};

port@1 {
reg = <1>;

eud_con: endpoint {
};
};
};
};

usb_0_hsphy: phy@88e4000 {
compatible = "qcom,sa8775p-usb-hs-phy",
"qcom,usb-snps-hs-5nm-phy";
Expand Down