1/*
2 * Copyright (C) 2023, Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/dts-v1/;
8
9#include <niosv/niosv-g.dtsi>
10
11/ {
12	model = "niosv_g";
13	compatible = "intel,niosv_g";
14
15	chosen {
16		zephyr,console = &uart0;
17		zephyr,sram = &sram0;
18	};
19};
20
21&cpu0 {
22	clock-frequency = <50000000>;
23};
24
25&sram0 {
26	reg = <0x0 0x40000>;
27};
28
29&mtimer {
30	reg = <0x90000 0x10>;
31};
32
33&uart0 {
34	reg = <0x90078 0x8>;
35	status = "okay";
36};
37