summaryrefslogtreecommitdiff
path: root/arch/arm/cpu
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-06-13 11:08:12 -0700
committerSimon Glass <sjg@chromium.org>2011-08-29 10:39:24 -0700
commitf8081a7f4eceb454b55d387d7689933acd9f68c5 (patch)
tree0abb03d406ea67ef3d76039885bdc96979b33f3f /arch/arm/cpu
parentef64b9587648bde33dfa3405bc5dc742ee5ccf66 (diff)
fdt: tegra2: Add aliases for USB ports
This adds aliases /alias/usb0, 1 for each USB port. This will be used to select the port ordering. BUG=chromium-os:11623 TEST=usb start; run usb_boot Change-Id: I8f4f793143e127ef452c417d9d68fc0d6f1ed060 Reviewed-on: http://gerrit.chromium.org/gerrit/2536 Tested-by: Simon Glass <sjg@chromium.org> Reviewed-by: Anton Staaf <robotboy@chromium.org>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r--arch/arm/cpu/armv7/tegra2/tegra250.dtsi11
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/cpu/armv7/tegra2/tegra250.dtsi b/arch/arm/cpu/armv7/tegra2/tegra250.dtsi
index 1efaac7818b..6b72ca543a8 100644
--- a/arch/arm/cpu/armv7/tegra2/tegra250.dtsi
+++ b/arch/arm/cpu/armv7/tegra2/tegra250.dtsi
@@ -197,16 +197,19 @@
params = <0x3c0 0x1a 0x00 0xc 0 0x04 0x66 0x09 0xfe 0xfde8 9>;
};
- usb@0xc5000000 {
+ usb@0xc5008000 {
compatible = "nvidia,tegra250-usb";
- reg = <0xc5000000 0x8000>;
+ reg = <0xc5008000 0x8000>;
+ periph-id = <59>; // PERIPH_ID_USB3
status = "disabled";
};
- usb@0xc5008000 {
+ usb@0xc5000000 {
compatible = "nvidia,tegra250-usb";
- reg = <0xc5008000 0x8000>;
+ reg = <0xc5000000 0x8000>;
+ periph-id = <22>; // PERIPH_ID_USBD
status = "disabled";
};
+
};