Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
Note: File does not exist in v3.15.
 1/*
 2 * Cubietech CubieBoard6
 3 *
 4 * Copyright (c) 2017 Andreas Färber
 5 *
 6 * SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 7 */
 8
 9/dts-v1/;
10
11#include "owl-s500.dtsi"
12
13/ {
14	compatible = "cubietech,cubieboard6", "actions,s500";
15	model = "CubieBoard6";
16
17	aliases {
18		serial3 = &uart3;
19	};
20
21	chosen {
22		stdout-path = "serial3:115200n8";
23	};
24
25	memory@0 {
26		device_type = "memory";
27		reg = <0x0 0x80000000>;
28	};
29
30	uart3_clk: uart3-clk {
31		compatible = "fixed-clock";
32		clock-frequency = <921600>;
33		#clock-cells = <0>;
34	};
35};
36
37&timer {
38	clocks = <&hosc>;
39};
40
41&uart3 {
42	status = "okay";
43	clocks = <&uart3_clk>;
44};