Commit 537fd197 authored by Bartosz Dudziak's avatar Bartosz Dudziak Committed by Bjorn Andersson
Browse files

ARM: dts: qcom: Add initial DTS file for Samsung Galaxy S III Neo phone



Add DTS support for the Samsung Galaxy S III Neo (codenamed s3ve3g) phone.
Initial version have just a working serial console.

Signed-off-by: default avatarBartosz Dudziak <bartosz.dudziak@snejp.pl>
Link: https://lore.kernel.org/r/20210418122909.71434-6-bartosz.dudziak@snejp.pl


Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent ef537057
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -933,6 +933,7 @@ dtb-$(CONFIG_ARCH_QCOM) += \
	qcom-ipq4019-ap.dk07.1-c2.dtb \
	qcom-ipq8064-ap148.dtb \
	qcom-ipq8064-rb3011.dtb \
	qcom-msm8226-samsung-s3ve3g.dtb \
	qcom-msm8660-surf.dtb \
	qcom-msm8960-cdp.dtb \
	qcom-msm8974-fairphone-fp2.dtb \
+25 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: BSD-3-Clause
/*
 * Copyright (c) 2020, The Linux Foundation. All rights reserved.
 */

#include "qcom-msm8226.dtsi"

/ {
	model = "Samsung Galaxy S III Neo";
	compatible = "samsung,s3ve3g", "qcom,msm8226";

	aliases {
		serial0 = &blsp1_uart3;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};
};

&soc {
	serial@f991f000 {
		status = "ok";
	};
};