blob: c77a3ff55464b703a3fad9a250a2b5f4f88b79a6 [file] [log] [blame]
Gaurav Kohlife433bb2017-11-13 12:15:52 +05301/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include <linux/kernel.h>
14#include "board-dt.h"
15#include <asm/mach/map.h>
16#include <asm/mach/arch.h>
17
18static const char *sdm670_dt_match[] __initconst = {
19 "qcom,sdm670",
20 "qcom,qcs605",
21 NULL
22};
23
24static void __init sdm670_init(void)
25{
26 board_dt_populate(NULL);
27}
28
29DT_MACHINE_START(SDM670_DT,
30 "Qualcomm Technologies, Inc. SDM670 (Flattened Device Tree)")
31 .init_machine = sdm670_init,
32 .dt_compat = sdm670_dt_match,
33MACHINE_END