blob: ef80f46d6cb303fed7ebaba88c565fd5cb420a3e [file] [log] [blame]
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -08001/* Copyright (c) 2011, 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#include <linux/kernel.h>
19#include <linux/platform_device.h>
20#include <linux/io.h>
21#include <linux/irq.h>
22
23#include <asm/mach-types.h>
24#include <asm/mach/arch.h>
25#include <asm/hardware/gic.h>
26
27#include <mach/board.h>
28#include <mach/msm_iomap.h>
29
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080030#include "devices.h"
31
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080032static void __init msm8960_map_io(void)
33{
34 msm_map_msm8960_io();
35}
36
37static void __init msm8960_init_irq(void)
38{
39 unsigned int i;
40 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
41 (void *)MSM_QGIC_CPU_BASE);
42
43 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
44 writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
45
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -080046 if (machine_is_msm8960_rumi3())
47 writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
48
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080049 /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
50 * as they are configured as level, which does not play nice with
51 * handle_percpu_irq.
52 */
53 for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
54 if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
55 set_irq_handler(i, handle_percpu_irq);
56 }
57}
58
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080059static struct platform_device *sim_devices[] __initdata = {
60 &msm8960_device_uart_gsbi2,
61};
62
63static struct platform_device *rumi3_devices[] __initdata = {
64 &msm8960_device_uart_gsbi5,
65};
66
67static void __init msm8960_sim_init(void)
68{
69 platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices));
70}
71
72static void __init msm8960_rumi3_init(void)
73{
74 platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices));
75}
76
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080077MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR")
78 .map_io = msm8960_map_io,
79 .init_irq = msm8960_init_irq,
80 .timer = &msm_timer,
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080081 .init_machine = msm8960_sim_init,
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080082MACHINE_END
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -080083
84MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3")
85 .map_io = msm8960_map_io,
86 .init_irq = msm8960_init_irq,
87 .timer = &msm_timer,
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080088 .init_machine = msm8960_rumi3_init,
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -080089MACHINE_END
90