blob: c6a55f21dcc550e782782a7e4af9ad8b958b73f8 [file] [log] [blame]
Teng Fei Fana3bdf7c2018-04-13 16:17:12 +08001/* 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 *sdm632_dt_match[] __initconst = {
19 "qcom,sdm632",
20 NULL
21};
22
23static void __init sdm632_init(void)
24{
25 board_dt_populate(NULL);
26}
27
28DT_MACHINE_START(SDM632_DT,
29 "Qualcomm Technologies, Inc. SDM632 (Flattened Device Tree)")
30 .init_machine = sdm632_init,
31 .dt_compat = sdm632_dt_match,
32MACHINE_END