1// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (c) 2017 Andreas Färber
4 */
5
6/dts-v1/;
7
8#include "s900.dtsi"
9
10/ {
11	compatible = "ucrobotics,bubblegum-96", "actions,s900";
12	model = "Bubblegum-96";
13
14	aliases {
15		serial5 = &uart5;
16	};
17
18	chosen {
19		stdout-path = "serial5:115200n8";
20	};
21
22	memory@0 {
23		device_type = "memory";
24		reg = <0x0 0x0 0x0 0x80000000>;
25	};
26
27	uart5_clk: uart5-clk {
28		compatible = "fixed-clock";
29		clock-frequency = <921600>;
30		#clock-cells = <0>;
31	};
32};
33
34&timer {
35	clocks = <&hosc>;
36};
37
38&uart5 {
39	status = "okay";
40	clocks = <&uart5_clk>;
41};
42