mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
1e669b4808
Recent versions of DTC have checks for PCI host bridge device tree nodes that are named something other than "pci" or "pcie". Fix all occurrences of such nodes for Tegra boards to avoid potential warnings from DTC. Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
32 lines
564 B
Text
32 lines
564 B
Text
/dts-v1/;
|
|
|
|
#include "tegra186-p2771-0000.dtsi"
|
|
|
|
/ {
|
|
model = "NVIDIA P2771-0000-000";
|
|
compatible = "nvidia,p2771-0000-000", "nvidia,p2771-0000", "nvidia,tegra186";
|
|
|
|
sdhci@3400000 {
|
|
cd-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 6) GPIO_ACTIVE_LOW>;
|
|
power-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 5) GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
pcie@10003000 {
|
|
status = "okay";
|
|
|
|
pci@1,0 {
|
|
status = "okay";
|
|
nvidia,num-lanes = <2>;
|
|
};
|
|
|
|
pci@2,0 {
|
|
status = "disabled";
|
|
nvidia,num-lanes = <1>;
|
|
};
|
|
|
|
pci@3,0 {
|
|
status = "okay";
|
|
nvidia,num-lanes = <1>;
|
|
};
|
|
};
|
|
};
|