mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 10:16:55 +07:00
7f6a78fe34
Add a Device Tree for Cubietech CubieBoard6. Cc: support@cubietech.com Signed-off-by: Andreas Färber <afaerber@suse.de>
45 lines
600 B
Plaintext
45 lines
600 B
Plaintext
/*
|
|
* Cubietech CubieBoard6
|
|
*
|
|
* Copyright (c) 2017 Andreas Färber
|
|
*
|
|
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "owl-s500.dtsi"
|
|
|
|
/ {
|
|
compatible = "cubietech,cubieboard6", "actions,s500";
|
|
model = "CubieBoard6";
|
|
|
|
aliases {
|
|
serial3 = &uart3;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial3:115200n8";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x80000000>;
|
|
};
|
|
|
|
uart3_clk: uart3-clk {
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <921600>;
|
|
#clock-cells = <0>;
|
|
};
|
|
};
|
|
|
|
&timer {
|
|
clocks = <&hosc>;
|
|
};
|
|
|
|
&uart3 {
|
|
status = "okay";
|
|
clocks = <&uart3_clk>;
|
|
};
|