Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f6a78fe authored by Andreas Färber's avatar Andreas Färber
Browse files

ARM: dts: owl-s500: Add CubieBoard6



Add a Device Tree for Cubietech CubieBoard6.

Cc: support@cubietech.com
Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
parent fa687604
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -680,6 +680,7 @@ dtb-$(CONFIG_ARCH_ORION5X) += \
	orion5x-netgear-wnr854t.dtb \
	orion5x-rd88f5182-nas.dtb
dtb-$(CONFIG_ARCH_ACTIONS) += \
	owl-s500-cubieboard6.dtb \
	owl-s500-guitar-bb-rev-b.dtb
dtb-$(CONFIG_ARCH_PRIMA2) += \
	prima2-evb.dtb
+44 −0
Original line number Diff line number Diff line
/*
 * 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>;
};