blob: 10fa8f6e32c9fcda9fb18548cec360fed520f385 [file] [log] [blame]
David Brown56e2d8a2011-08-04 02:01:02 -07001/* Copyright (c) 2010, 2011, Code Aurora Forum. All rights reserved.
Steve Mucklea55df6e2010-01-07 12:43:24 -08002 *
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.
Steve Mucklea55df6e2010-01-07 12:43:24 -080011 */
12
13#include <linux/kernel.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
Steve Muckle9161d302010-02-11 11:50:40 -080016#include <linux/irq.h>
David Brown56e2d8a2011-08-04 02:01:02 -070017#include <linux/irqdomain.h>
18#include <linux/of.h>
19#include <linux/of_address.h>
20#include <linux/of_platform.h>
Steve Mucklea55df6e2010-01-07 12:43:24 -080021
22#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
24#include <asm/hardware/gic.h>
25
26#include <mach/board.h>
27#include <mach/msm_iomap.h>
28
Steve Mucklea55df6e2010-01-07 12:43:24 -080029
30static void __init msm8x60_map_io(void)
31{
32 msm_map_msm8x60_io();
33}
34
35static void __init msm8x60_init_irq(void)
36{
Steve Muckle9161d302010-02-11 11:50:40 -080037 unsigned int i;
38
Russell Kingff2e27a2010-12-04 16:13:29 +000039 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
40 (void *)MSM_QGIC_CPU_BASE);
Steve Muckle9161d302010-02-11 11:50:40 -080041
42 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
43 writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
44
45 /* RUMI does not adhere to GIC spec by enabling STIs by default.
46 * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
47 */
Steve Muckle57bbf1c2010-01-07 12:51:10 -080048 if (!machine_is_msm8x60_sim())
49 writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
Steve Muckle9161d302010-02-11 11:50:40 -080050
51 /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
52 * as they are configured as level, which does not play nice with
53 * handle_percpu_irq.
54 */
55 for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
56 if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
Thomas Gleixner6845664a2011-03-24 13:25:22 +010057 irq_set_handler(i, handle_percpu_irq);
Steve Muckle9161d302010-02-11 11:50:40 -080058 }
Steve Mucklea55df6e2010-01-07 12:43:24 -080059}
60
61static void __init msm8x60_init(void)
62{
63}
64
David Brown56e2d8a2011-08-04 02:01:02 -070065#ifdef CONFIG_OF
66static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = {
67 {}
68};
69
70static struct of_device_id msm_dt_gic_match[] __initdata = {
71 { .compatible = "qcom,msm-8660-qgic", },
72 {}
73};
74
75static void __init msm8x60_dt_init(void)
76{
77 struct device_node *node;
78
79 node = of_find_matching_node_by_address(NULL, msm_dt_gic_match,
80 MSM8X60_QGIC_DIST_PHYS);
81 if (node)
82 irq_domain_add_simple(node, GIC_SPI_START);
83
84 if (of_machine_is_compatible("qcom,msm8660-surf")) {
85 printk(KERN_INFO "Init surf UART registers\n");
86 msm8x60_init_uart12dm();
87 }
88
89 of_platform_populate(NULL, of_default_bus_match_table,
90 msm_auxdata_lookup, NULL);
91}
92
93static const char *msm8x60_fluid_match[] __initdata = {
94 "qcom,msm8660-fluid",
95 "qcom,msm8660-surf",
96 NULL
97};
98#endif /* CONFIG_OF */
99
Steve Mucklea55df6e2010-01-07 12:43:24 -0800100MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
101 .map_io = msm8x60_map_io,
102 .init_irq = msm8x60_init_irq,
103 .init_machine = msm8x60_init,
104 .timer = &msm_timer,
105MACHINE_END
Steve Muckle49b76f72010-03-19 17:00:08 -0700106
107MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
108 .map_io = msm8x60_map_io,
109 .init_irq = msm8x60_init_irq,
110 .init_machine = msm8x60_init,
111 .timer = &msm_timer,
112MACHINE_END
Steve Muckle57bbf1c2010-01-07 12:51:10 -0800113
114MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
115 .map_io = msm8x60_map_io,
116 .init_irq = msm8x60_init_irq,
117 .init_machine = msm8x60_init,
118 .timer = &msm_timer,
119MACHINE_END
Gregory Bean69b7f6f2010-04-04 22:29:02 -0700120
121MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
122 .map_io = msm8x60_map_io,
123 .init_irq = msm8x60_init_irq,
124 .init_machine = msm8x60_init,
125 .timer = &msm_timer,
126MACHINE_END
David Brown56e2d8a2011-08-04 02:01:02 -0700127
128#ifdef CONFIG_OF
129/* TODO: General device tree support for all MSM. */
130DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
131 .map_io = msm8x60_map_io,
132 .init_irq = msm8x60_init_irq,
133 .init_machine = msm8x60_dt_init,
134 .timer = &msm_timer,
135 .dt_compat = msm8x60_fluid_match,
136MACHINE_END
137#endif /* CONFIG_OF */