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