Skip to content

Commit

Permalink
arm: mvebu: Add support for USB host controllers in Armada 370/XP
Browse files Browse the repository at this point in the history
The Armada 370 and Armada XP SoC has an Orion EHCI USB controller.
This patch adds support for this controller in Armada 370
and Armada XP SoC common device tree files.

Cc: Lior Amsalem <alior@marvell.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Tested-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
  • Loading branch information
Ezequiel Garcia authored and Arnd Bergmann committed Feb 28, 2013
1 parent 4ca7396 commit b2bb806
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
15 changes: 15 additions & 0 deletions arch/arm/boot/dts/armada-370-xp.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,21 @@
clocks = <&gateclk 17>;
status = "disabled";
};

usb@d0050000 {
compatible = "marvell,orion-ehci";
reg = <0xd0050000 0x500>;
interrupts = <45>;
status = "disabled";
};

usb@d0051000 {
compatible = "marvell,orion-ehci";
reg = <0xd0051000 0x500>;
interrupts = <46>;
status = "disabled";
};

};
};

9 changes: 9 additions & 0 deletions arch/arm/boot/dts/armada-370.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,14 @@
dmacap,memset;
};
};

usb@d0050000 {
clocks = <&coreclk 0>;
};

usb@d0051000 {
clocks = <&coreclk 0>;
};

};
};
17 changes: 17 additions & 0 deletions arch/arm/boot/dts/armada-xp.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,22 @@
dmacap,memset;
};
};

usb@d0050000 {
clocks = <&gateclk 18>;
};

usb@d0051000 {
clocks = <&gateclk 19>;
};

usb@d0052000 {
compatible = "marvell,orion-ehci";
reg = <0xd0052000 0x500>;
interrupts = <47>;
clocks = <&gateclk 20>;
status = "disabled";
};

};
};

0 comments on commit b2bb806

Please sign in to comment.