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

Commit 44622a26 authored by lijuang's avatar lijuang
Browse files

ARM: msm: Add board config support for 32 bit scuba



This change add initial board config support to enable build
32 bit kernel for scuba.

Change-Id: Iaf805470a39c905de9a41af3eec913a9727a5226
Signed-off-by: default avatarlijuang <lijuang@codeaurora.org>
parent 8bcb96ee
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_USE_OF) += board-dt.o
obj-$(CONFIG_SMP)	+= platsmp.o
obj-$(CONFIG_ARCH_BENGAL) += board-bengal.o
obj-$(CONFIG_ARCH_SCUBA) += board-scuba.o
+25 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2020, The Linux Foundation. All rights reserved.
 */

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

static const char *scuba_dt_match[] __initconst = {
	"qcom,scuba",
	NULL
};

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

DT_MACHINE_START(BENGAL,
	"Qualcomm Technologies, Inc. SCUBA (Flattened Device Tree)")
	.init_machine		= scuba_init,
	.dt_compat		= scuba_dt_match,
MACHINE_END