1/*
2 * Copyright (c) 2023 by Rivos Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/dts-v1/;
8
9#include <lowrisc/opentitan_earlgrey.dtsi>
10
11/ {
12	model = "OpenTitan Earlgrey";
13	compatible = "lowrisc,opentitan-earlgrey";
14
15	chosen {
16		zephyr,console = &uart0;
17		zephyr,shell-uart = &uart0;
18		zephyr,sram = &ram0;
19		zephyr,flash = &flash0;
20	};
21};
22
23&uart0 {
24	status = "okay";
25	clock-frequency = <125000>;
26	current-speed = <7200>;
27};
28
29&mtimer {
30	status = "okay";
31};
32
33&spi0 {
34	status = "okay";
35};
36
37&spi1 {
38	status = "okay";
39};
40