2014-01-22 07:14:10 +08:00
|
|
|
/* Copyright (c) 2010-2014 The Linux Foundation. All rights reserved.
|
2012-09-06 03:28:58 +08:00
|
|
|
*
|
|
|
|
* 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/init.h>
|
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
2014-01-22 07:14:10 +08:00
|
|
|
static const char * const qcom_dt_match[] __initconst = {
|
2014-04-04 03:48:22 +08:00
|
|
|
"qcom,apq8064",
|
|
|
|
"qcom,apq8074-dragonboard",
|
2014-05-23 23:12:29 +08:00
|
|
|
"qcom,apq8084",
|
2014-03-08 00:56:59 +08:00
|
|
|
"qcom,ipq8062",
|
|
|
|
"qcom,ipq8064",
|
2013-09-10 07:24:54 +08:00
|
|
|
"qcom,msm8660-surf",
|
2012-09-06 03:28:58 +08:00
|
|
|
"qcom,msm8960-cdp",
|
2014-01-03 02:17:31 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2014-01-22 07:14:10 +08:00
|
|
|
DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)")
|
|
|
|
.dt_compat = qcom_dt_match,
|
2012-09-06 03:28:58 +08:00
|
|
|
MACHINE_END
|