mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

It doesn't make sense for these files to have the x bit set. It was,
probably accidentally, added in:
Fixes: 2c494e62c3
(arm: dts: Stratix10: Add QSPI node)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
49 lines
704 B
Text
49 lines
704 B
Text
// 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;
|
|
};
|