ARM64: dts: rk3366: add DT nodes for usb2.0 ehci and ohci

Change-Id: I4ade5961f0192d7ceff7c61557ddee6aba98224c
Signed-off-by: Frank Wang <frank.wang@rock-chips.com>
This commit is contained in:
Frank Wang
2016-03-04 18:15:03 +08:00
committed by Gerrit Code Review
parent 2385068d5b
commit e91f04cc31
2 changed files with 26 additions and 0 deletions

View File

@@ -654,6 +654,14 @@
rockchip,usb_irq_wakeup;
};
&usb_host0_echi {
status = "okay";
};
&usb_host0_ohci {
status = "okay";
};
&usb_otg {
clocks = <&cru SCLK_OTG_PHY0>, <&cru HCLK_OTG>;
clock-names = "sclk_otgphy0", "otg";

View File

@@ -363,6 +363,24 @@
status = "disabled";
};
usb_host0_echi: usb@ff480000 {
compatible = "generic-ehci";
reg = <0x0 0xff480000 0x0 0x20000>;
interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&cru SCLK_OTG_PHY0>, <&cru HCLK_HOST>;
clock-names = "sclk_otgphy0", "hclk_host0";
status = "disabled";
};
usb_host0_ohci: usb@ff4a0000 {
compatible = "generic-ohci";
reg = <0x0 0xff4a0000 0x0 0x20000>;
interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&cru SCLK_OTG_PHY0>, <&cru HCLK_HOST>;
clock-names = "sclk_otgphy0", "hclk_host0";
status = "disabled";
};
usb_otg: usb@ff4c0000 {
compatible = "rockchip,rk3368-usb", "rockchip,rk3066-usb",
"snps,dwc2";