1/*
2 * SPDX-License-Identifier: Apache-2.0
3 *
4 * Copyright (C) 2021, Intel Corporation
5 *
6 */
7
8/dts-v1/;
9
10#include <intel/intel_socfpga_agilex.dtsi>
11
12/ {
13	model = "Intel SoC FPGA Agilex";
14	compatible = "intel,socfpga-agilex";
15	#address-cells = <1>;
16	#size-cells = <1>;
17
18	chosen {
19		zephyr,console = &uart0;
20		zephyr,shell-uart = &uart0;
21		zephyr,sram = &mem0;
22	};
23
24};
25
26&uart0 {
27	status = "okay";
28	current-speed = <115200>;
29};
30
31&qspi {
32	status = "okay";
33	mt25qu02g@0 {
34		compatible = "micron,mt25qu02g";
35		reg = <0>;
36		size = <DT_SIZE_M(256*8)>; /* in bits */
37		status = "okay";
38	};
39};
40