1/* SPDX-License-Identifier: Apache-2.0 */
2
3/dts-v1/;
4
5#include <mem.h>
6#include <intel/nios2f.dtsi>
7
8/ {
9	model = "altera_max10";
10	compatible = "altr,nios2-max10";
11
12	aliases {
13		uart-0 = &uart0;
14	};
15
16	chosen {
17		zephyr,sram = &sram0;
18		zephyr,flash = &flash0;
19		zephyr,console = &uart0;
20		zephyr,shell-uart = &uart0;
21	};
22};
23
24&uart0 {
25	status = "okay";
26	current-speed = <115200>;
27};
28
29&i2c0 {
30	status = "okay";
31	clock-frequency = <I2C_BITRATE_ULTRA>;
32};
33
34&qspi {
35	status = "okay";
36	n25q512ax3: n25q512ax3@0 {
37		compatible = "altr,nios2-qspi-nor";
38		size = <DT_SIZE_M(64*8)>;	/* in bits */
39		reg = <0>;
40	};
41};
42