blob: 139d61bbc8e7898c66299098c679a74ae2063062 [file] [log] [blame]
Stephen Boydc4464072012-09-05 12:28:58 -07001/* Copyright (c) 2012, 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/init.h>
14#include <linux/of_irq.h>
15#include <linux/of_platform.h>
16
17#include <asm/hardware/gic.h>
18#include <asm/mach/arch.h>
19
20#include "common.h"
Olof Johansson25468fe2012-09-22 00:06:21 -070021#include "core.h"
Stephen Boydc4464072012-09-05 12:28:58 -070022
23static const struct of_device_id msm_dt_gic_match[] __initconst = {
24 { .compatible = "qcom,msm-qgic2", .data = gic_of_init },
25 { }
26};
27
28static void __init msm_dt_init_irq(void)
29{
30 of_irq_init(msm_dt_gic_match);
31}
32
33static void __init msm_dt_init(void)
34{
35 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
36}
37
38static const char * const msm8960_dt_match[] __initconst = {
39 "qcom,msm8960-cdp",
40 NULL
41};
42
43DT_MACHINE_START(MSM8960_DT, "Qualcomm MSM (Flattened Device Tree)")
Olof Johansson25468fe2012-09-22 00:06:21 -070044 .smp = smp_ops(msm_smp_ops),
Stephen Boydc4464072012-09-05 12:28:58 -070045 .map_io = msm_map_msm8960_io,
46 .init_irq = msm_dt_init_irq,
47 .timer = &msm_dt_timer,
48 .init_machine = msm_dt_init,
49 .dt_compat = msm8960_dt_match,
50 .handle_irq = gic_handle_irq,
51MACHINE_END