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