mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 09:30:10 +00:00
1f60f0731d
There are multiple versions of p2771-0000 board. There are SW visible incompatible differences between the versions, and they are relevant to U-Boot. Create separate "A02" and "B00" defconfigs (named after the first and/or only board rev the defconfig supports) so that users can select which build they want. With the minimal set of HW currently enabled in U-Boot, the differences are irrelevant, hence the DT files aren't different. However, that will change in a future patch. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
23 lines
317 B
Text
23 lines
317 B
Text
#include "tegra186.dtsi"
|
|
|
|
/ {
|
|
model = "NVIDIA P2771-0000";
|
|
compatible = "nvidia,p2771-0000", "nvidia,tegra186";
|
|
|
|
chosen {
|
|
stdout-path = &uarta;
|
|
};
|
|
|
|
aliases {
|
|
sdhci0 = "/sdhci@3460000";
|
|
};
|
|
|
|
memory {
|
|
reg = <0x0 0x80000000 0x0 0x60000000>;
|
|
};
|
|
|
|
sdhci@3460000 {
|
|
status = "okay";
|
|
bus-width = <8>;
|
|
};
|
|
};
|