15e26f6914
Using full paths to extend or override a device tree node is error prone. If there was a typo error, a new node will be created instead of extending the existing node. This will lead to run-time errors that could be hard to detect. A mistyped label on the other hand, will cause a dtc compile error (during build time). Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
50 lines
661 B
Plaintext
50 lines
661 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2021, Intel Corporation
|
|
*/
|
|
#include "socfpga_agilex.dtsi"
|
|
|
|
/ {
|
|
model = "eASIC N5X SoCDK";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
ethernet0 = &gmac0;
|
|
ethernet1 = &gmac1;
|
|
ethernet2 = &gmac2;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
/* We expect the bootloader to fill in the reg */
|
|
reg = <0 0 0 0>;
|
|
};
|
|
};
|
|
|
|
&clkmgr {
|
|
compatible = "intel,easic-n5x-clkmgr";
|
|
};
|
|
|
|
&mmc {
|
|
status = "okay";
|
|
cap-sd-highspeed;
|
|
broken-cd;
|
|
bus-width = <4>;
|
|
};
|
|
|
|
&osc1 {
|
|
clock-frequency = <25000000>;
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&watchdog0 {
|
|
status = "okay";
|
|
};
|