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

Commit 1dde3beb authored by Jitendra Sharma's avatar Jitendra Sharma Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Add initial device tree for atoll



Add initial device tree to support atoll target on rumi
platform.

Change-Id: I7e896c21380b533287356e324ea0b3aa13a70122
Signed-off-by: default avatarJitendra Sharma <shajit@codeaurora.org>
parent a0772087
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -222,6 +222,15 @@ dtb-$(CONFIG_ARCH_TRINKET) += trinket-rumi.dtb \
	trinket-usbc-idp.dtb
endif

ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
	dtbo-$(CONFIG_ARCH_ATOLL) += \
		atoll-rumi-overlay.dtbo\

atoll-rumi-overlay.dtbo-base := atoll.dtb
else
dtb-$(CONFIG_ARCH_ATOLL)	+= atoll-rumi.dtb
endif

dtb-$(CONFIG_ARCH_SDXPRAIRIE) += sdxprairie-rumi.dtb \
	sdxprairie-cdp.dtb \
	sdxprairie-mtp.dtb \
+25 −0
Original line number Diff line number Diff line
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "atoll-rumi.dtsi"

/ {
	model = "RUMI";
	compatible = "qcom,atoll-rumi", "qcom,atoll", "qcom,rumi";
	qcom,msm-id = <407 0x0>;
	qcom,board-id = <15 0>;
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "atoll.dtsi"
#include "atoll-rumi.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. ATOLL PM6150 RUMI";
	compatible = "qcom,atoll-rumi", "qcom,atoll", "qcom,rumi";
	qcom,board-id = <15 0>;
};
+26 −0
Original line number Diff line number Diff line
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

&soc {

	timer {
		clock-frequency = <1000000>;
	};

	timer@17c20000 {
		clock-frequency = <1000000>;
	};

	wdog: qcom,wdt@17c10000{
		status = "disabled";
	};
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "atoll.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. ATOLL SoC";
	compatible = "qcom,atoll";
	qcom,pmic-name = "PM6150";
	qcom,board-id = <0 0>;
};
Loading