android_kernel_motorola_sm6225/arch/arm/mach-qcom/board-660.c
Swetha Chikkaboraiah b33b0951de ARM: msm: Add board support for sdm660 chipset
Initial board support configuration for sdm660.

Change-Id: I0808683d472ec4e01208037ba59d623a30cd545b
Signed-off-by: Swetha Chikkaboraiah <schikk@codeaurora.org>
2020-04-26 22:04:00 -07:00

68 lines
1.6 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2016, 2019-2020, 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.
*/
#include <linux/kernel.h>
#include <asm/mach/arch.h>
#include "board-dt.h"
static const char *sdm660_dt_match[] __initconst = {
"qcom,sdm660",
"qcom,sda660",
NULL
};
static void __init sdm660_init(void)
{
board_dt_populate(NULL);
}
DT_MACHINE_START(SDM660_DT,
"Qualcomm Technologies, Inc. SDM 660 (Flattened Device Tree)")
.init_machine = sdm660_init,
.dt_compat = sdm660_dt_match,
MACHINE_END
static const char *sdm630_dt_match[] __initconst = {
"qcom,sdm630",
"qcom,sda630",
NULL
};
static void __init sdm630_init(void)
{
board_dt_populate(NULL);
}
DT_MACHINE_START(SDM630_DT,
"Qualcomm Technologies, Inc. SDM 630 (Flattened Device Tree)")
.init_machine = sdm630_init,
.dt_compat = sdm630_dt_match,
MACHINE_END
static const char *sdm658_dt_match[] __initconst = {
"qcom,sdm658",
"qcom,sda658",
NULL
};
static void __init sdm658_init(void)
{
board_dt_populate(NULL);
}
DT_MACHINE_START(SDM658_DT,
"Qualcomm Technologies, Inc. SDM 658 (Flattened Device Tree)")
.init_machine = sdm658_init,
.dt_compat = sdm658_dt_match,
MACHINE_END