Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1 | /* Copyright (c) 2010-2014 The Linux Foundation. All rights reserved. |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 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/init.h> |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 14 | |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 15 | #include <asm/mach/arch.h> |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 16 | |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 17 | static const char * const qcom_dt_match[] __initconst = { |
Kumar Gala | f335b8a | 2014-04-03 14:48:22 -0500 | [diff] [blame] | 18 | "qcom,apq8064", |
| 19 | "qcom,apq8074-dragonboard", |
Georgi Djakov | 975fd0f | 2014-05-23 18:12:29 +0300 | [diff] [blame] | 20 | "qcom,apq8084", |
Kumar Gala | 68de308 | 2014-03-07 10:56:59 -0600 | [diff] [blame] | 21 | "qcom,ipq8062", |
| 22 | "qcom,ipq8064", |
Rohit Vaswani | d0e190c | 2013-09-09 16:24:54 -0700 | [diff] [blame] | 23 | "qcom,msm8660-surf", |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 24 | "qcom,msm8960-cdp", |
Rohit Vaswani | 9857a75 | 2014-01-02 10:17:31 -0800 | [diff] [blame] | 25 | NULL |
| 26 | }; |
| 27 | |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 28 | DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)") |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 29 | .dt_compat = qcom_dt_match, |
Stephen Boyd | c446407 | 2012-09-05 12:28:58 -0700 | [diff] [blame] | 30 | MACHINE_END |