blob: 9d8f7336bec04f0ef44874e8ea92dcb62dbca09a (
plain)
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
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Allo.com Sparky
*
* Copyright (c) 2017 Andreas Färber
*/
/dts-v1/;
#include "owl-s500.dtsi"
/ {
compatible = "allo,sparky", "actions,s500";
model = "Allo.com Sparky";
aliases {
serial3 = &uart3;
};
chosen {
stdout-path = "serial3:115200n8";
};
memory@0 {
device_type = "memory";
reg = <0x0 0x40000000>; /* 1 or 2 GiB */
};
};
&timer {
clocks = <&hosc>;
};
&uart3 {
status = "okay";
};
|