blob: 9b5eb2b4ae1b8507a78927e43ce8c9c27b4220f6 [file] [log] [blame]
Steve Mucklea55df6e2010-01-07 12:43:24 -08001/* Copyright (c) 2010, Code Aurora Forum. 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 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/platform_device.h>
21#include <linux/io.h>
Steve Muckle9161d302010-02-11 11:50:40 -080022#include <linux/irq.h>
Steve Mucklea55df6e2010-01-07 12:43:24 -080023
24#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <asm/hardware/gic.h>
27
28#include <mach/board.h>
29#include <mach/msm_iomap.h>
30
Steve Mucklea55df6e2010-01-07 12:43:24 -080031unsigned long clk_get_max_axi_khz(void)
32{
33 return 0;
34}
35
36static void __init msm8x60_map_io(void)
37{
38 msm_map_msm8x60_io();
39}
40
41static void __init msm8x60_init_irq(void)
42{
Steve Muckle9161d302010-02-11 11:50:40 -080043 unsigned int i;
44
Russell Kingff2e27a2010-12-04 16:13:29 +000045 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
46 (void *)MSM_QGIC_CPU_BASE);
Steve Muckle9161d302010-02-11 11:50:40 -080047
48 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
49 writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
50
51 /* RUMI does not adhere to GIC spec by enabling STIs by default.
52 * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
53 */
Steve Muckle57bbf1c2010-01-07 12:51:10 -080054 if (!machine_is_msm8x60_sim())
55 writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
Steve Muckle9161d302010-02-11 11:50:40 -080056
57 /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
58 * as they are configured as level, which does not play nice with
59 * handle_percpu_irq.
60 */
61 for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
62 if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
63 set_irq_handler(i, handle_percpu_irq);
64 }
Steve Mucklea55df6e2010-01-07 12:43:24 -080065}
66
67static void __init msm8x60_init(void)
68{
69}
70
71MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
72 .map_io = msm8x60_map_io,
73 .init_irq = msm8x60_init_irq,
74 .init_machine = msm8x60_init,
75 .timer = &msm_timer,
76MACHINE_END
Steve Muckle49b76f72010-03-19 17:00:08 -070077
78MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
79 .map_io = msm8x60_map_io,
80 .init_irq = msm8x60_init_irq,
81 .init_machine = msm8x60_init,
82 .timer = &msm_timer,
83MACHINE_END
Steve Muckle57bbf1c2010-01-07 12:51:10 -080084
85MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
86 .map_io = msm8x60_map_io,
87 .init_irq = msm8x60_init_irq,
88 .init_machine = msm8x60_init,
89 .timer = &msm_timer,
90MACHINE_END
Gregory Bean69b7f6f2010-04-04 22:29:02 -070091
92MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
93 .map_io = msm8x60_map_io,
94 .init_irq = msm8x60_init_irq,
95 .init_machine = msm8x60_init,
96 .timer = &msm_timer,
97MACHINE_END