Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Bartosz Dudziak <bartosz.dudziak@snejp.pl>
Link: https://lore.kernel.org/r/20210418122909.71434-6-bartosz.dudziak@snejp.pl
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>

authored by

Bartosz Dudziak and committed by
Bjorn Andersson
537fd197 ef537057

+26
+1
arch/arm/boot/dts/Makefile
··· 933 933 qcom-ipq4019-ap.dk07.1-c2.dtb \ 934 934 qcom-ipq8064-ap148.dtb \ 935 935 qcom-ipq8064-rb3011.dtb \ 936 + qcom-msm8226-samsung-s3ve3g.dtb \ 936 937 qcom-msm8660-surf.dtb \ 937 938 qcom-msm8960-cdp.dtb \ 938 939 qcom-msm8974-fairphone-fp2.dtb \
+25
arch/arm/boot/dts/qcom-msm8226-samsung-s3ve3g.dts
··· 1 + // SPDX-License-Identifier: BSD-3-Clause 2 + /* 3 + * Copyright (c) 2020, The Linux Foundation. All rights reserved. 4 + */ 5 + 6 + #include "qcom-msm8226.dtsi" 7 + 8 + / { 9 + model = "Samsung Galaxy S III Neo"; 10 + compatible = "samsung,s3ve3g", "qcom,msm8226"; 11 + 12 + aliases { 13 + serial0 = &blsp1_uart3; 14 + }; 15 + 16 + chosen { 17 + stdout-path = "serial0:115200n8"; 18 + }; 19 + }; 20 + 21 + &soc { 22 + serial@f991f000 { 23 + status = "ok"; 24 + }; 25 + };