1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * U-Boot additions
4 *
5 * Copyright (C) 2019-2020 Intel Corporation <www.intel.com>
6 */
7
8#include "socfpga_stratix10-u-boot.dtsi"
9
10/{
11	aliases {
12		spi0 = &qspi;
13	};
14};
15
16&clkmgr {
17	u-boot,dm-pre-reloc;
18};
19
20&qspi {
21	status = "okay";
22	u-boot,dm-pre-reloc;
23};
24
25&flash0 {
26	compatible = "jedec,spi-nor";
27	spi-max-frequency = <100000000>;
28	spi-tx-bus-width = <4>;
29	spi-rx-bus-width = <4>;
30	u-boot,dm-pre-reloc;
31};
32
33&sysmgr {
34	u-boot,dm-pre-reloc;
35};
36
37&watchdog0 {
38	status = "okay";
39	u-boot,dm-pre-reloc;
40};
41