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

Commit a82fe8dc authored by Tingwei Zhang's avatar Tingwei Zhang Committed by Gerrit - the friendly Code Review server
Browse files

ARM: qcom: Add board config support for qm215



Add the initial board config support for qm215.

Change-Id: If514e7a91629b83d1e8d4fc9d899335657738bdd
Signed-off-by: default avatarTingwei Zhang <tingwei@codeaurora.org>
Signed-off-by: default avatarSwetha Chikkaboraiah <schikk@codeaurora.org>
parent 8fdc586e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,3 +4,4 @@ obj-$(CONFIG_ARCH_BENGAL) += board-bengal.o
obj-$(CONFIG_ARCH_SCUBA) += board-scuba.o
obj-$(CONFIG_ARCH_SDM660) += board-660.o
obj-$(CONFIG_ARCH_MSM8917) += board-msm8917.o
obj-$(CONFIG_ARCH_QM215) += board-qm215.o
+25 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018, 2021, The Linux Foundation. All rights reserved.
 */

#include <linux/kernel.h>
#include "board-dt.h"
#include <asm/mach/map.h>
#include <asm/mach/arch.h>

static const char *qm215_dt_match[] __initconst = {
	"qcom,qm215",
	NULL
};

static void __init qm215_init(void)
{
	board_dt_populate(NULL);
}

DT_MACHINE_START(QM215_DT,
	"Qualcomm Technologies, Inc. QM215")
	.init_machine		= qm215_init,
	.dt_compat		= qm215_dt_match,
MACHINE_END