Commit a70cb07b authored by Stephen Warren's avatar Stephen Warren Committed by Thierry Reding

ARM: tegra: Fix Tegra114 USB compatible values

DT compatible values should always include an entry for the specific
chip in addition to any earlier generations that the HW is backwards-
compatible with.

This doesn't affect the kernel at all given current driver code, but
U-Boot needs to distinguish between Tegra114 and Tegra30 for this HW,
and I'd like to synchronize the DT content.
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 29b4817d
......@@ -672,7 +672,7 @@ sdhci@78000600 {
};
usb@7d000000 {
compatible = "nvidia,tegra30-ehci", "usb-ehci";
compatible = "nvidia,tegra114-ehci", "nvidia,tegra30-ehci", "usb-ehci";
reg = <0x7d000000 0x4000>;
interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
phy_type = "utmi";
......@@ -684,7 +684,7 @@ usb@7d000000 {
};
phy1: usb-phy@7d000000 {
compatible = "nvidia,tegra30-usb-phy";
compatible = "nvidia,tegra114-usb-phy", "nvidia,tegra30-usb-phy";
reg = <0x7d000000 0x4000 0x7d000000 0x4000>;
phy_type = "utmi";
clocks = <&tegra_car TEGRA114_CLK_USBD>,
......@@ -708,7 +708,7 @@ phy1: usb-phy@7d000000 {
};
usb@7d008000 {
compatible = "nvidia,tegra30-ehci", "usb-ehci";
compatible = "nvidia,tegra114-ehci", "nvidia,tegra30-ehci", "usb-ehci";
reg = <0x7d008000 0x4000>;
interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
phy_type = "utmi";
......@@ -720,7 +720,7 @@ usb@7d008000 {
};
phy3: usb-phy@7d008000 {
compatible = "nvidia,tegra30-usb-phy";
compatible = "nvidia,tegra114-usb-phy", "nvidia,tegra30-usb-phy";
reg = <0x7d008000 0x4000 0x7d000000 0x4000>;
phy_type = "utmi";
clocks = <&tegra_car TEGRA114_CLK_USB3>,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment