c05564c4d8
Android 13
47 lines
659 B
Plaintext
Executable file
47 lines
659 B
Plaintext
Executable file
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2017 Andreas Färber
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "s700.dtsi"
|
|
|
|
/ {
|
|
compatible = "cubietech,cubieboard7", "actions,s700";
|
|
model = "CubieBoard7";
|
|
|
|
aliases {
|
|
serial3 = &uart3;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial3:115200n8";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x0 0x0 0x80000000>;
|
|
};
|
|
|
|
memory@1,e0000000 {
|
|
device_type = "memory";
|
|
reg = <0x1 0xe0000000 0x0 0x0>;
|
|
};
|
|
|
|
uart3_clk: uart3-clk {
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <921600>;
|
|
#clock-cells = <0>;
|
|
};
|
|
};
|
|
|
|
&timer {
|
|
clocks = <&hosc>;
|
|
};
|
|
|
|
&uart3 {
|
|
status = "okay";
|
|
clocks = <&uart3_clk>;
|
|
};
|