mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
8c103c33fb
Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
49 lines
704 B
Text
Executable file
49 lines
704 B
Text
Executable file
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot additions
|
|
*
|
|
* Copyright (C) 2019-2022 Intel Corporation <www.intel.com>
|
|
*/
|
|
|
|
#include "socfpga_stratix10-u-boot.dtsi"
|
|
|
|
/{
|
|
aliases {
|
|
spi0 = &qspi;
|
|
freeze_br0 = &freeze_controller;
|
|
};
|
|
|
|
soc {
|
|
freeze_controller: freeze_controller@f9000450 {
|
|
compatible = "altr,freeze-bridge-controller";
|
|
reg = <0xf9000450 0x00000010>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|
|
|
|
&clkmgr {
|
|
bootph-all;
|
|
};
|
|
|
|
&qspi {
|
|
status = "okay";
|
|
bootph-all;
|
|
};
|
|
|
|
&flash0 {
|
|
compatible = "jedec,spi-nor";
|
|
spi-max-frequency = <100000000>;
|
|
spi-tx-bus-width = <4>;
|
|
spi-rx-bus-width = <4>;
|
|
bootph-all;
|
|
};
|
|
|
|
&sysmgr {
|
|
bootph-all;
|
|
};
|
|
|
|
&watchdog0 {
|
|
status = "okay";
|
|
bootph-all;
|
|
};
|