blob: bc67bea4e21342a62188f0e7545af770804c4db8 [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>
Stephen Boydbd323442011-02-23 09:37:42 -080022#include <linux/clkdev.h>
Stephen Boyd9e775ad2011-08-12 00:14:28 +010023#include <linux/memblock.h>
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080024
25#include <asm/mach-types.h>
26#include <asm/mach/arch.h>
27#include <asm/hardware/gic.h>
Stephen Boyd9e775ad2011-08-12 00:14:28 +010028#include <asm/setup.h>
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080029
30#include <mach/board.h>
31#include <mach/msm_iomap.h>
32
Marc Zyngierf7c1a752011-09-08 13:15:22 +010033#include "core.h"
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080034#include "devices.h"
35
Stephen Boyd47a67702011-10-25 09:35:19 -070036static void __init msm8960_fixup(struct tag *tag, char **cmdline,
37 struct meminfo *mi)
Stephen Boyd9e775ad2011-08-12 00:14:28 +010038{
39 for (; tag->hdr.size; tag = tag_next(tag))
40 if (tag->hdr.tag == ATAG_MEM &&
41 tag->u.mem.start == 0x40200000) {
42 tag->u.mem.start = 0x40000000;
43 tag->u.mem.size += SZ_2M;
44 }
45}
46
47static void __init msm8960_reserve(void)
48{
49 memblock_remove(0x40000000, SZ_2M);
50}
51
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080052static void __init msm8960_map_io(void)
53{
54 msm_map_msm8960_io();
55}
56
57static void __init msm8960_init_irq(void)
58{
59 unsigned int i;
60 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
61 (void *)MSM_QGIC_CPU_BASE);
62
63 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
64 writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
65
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -080066 if (machine_is_msm8960_rumi3())
67 writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
68
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080069 /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
70 * as they are configured as level, which does not play nice with
71 * handle_percpu_irq.
72 */
73 for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
74 if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
Thomas Gleixner6845664a2011-03-24 13:25:22 +010075 irq_set_handler(i, handle_percpu_irq);
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080076 }
77}
78
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -080079static struct platform_device *sim_devices[] __initdata = {
80 &msm8960_device_uart_gsbi2,
81};
82
83static struct platform_device *rumi3_devices[] __initdata = {
84 &msm8960_device_uart_gsbi5,
85};
86
87static void __init msm8960_sim_init(void)
88{
89 platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices));
90}
91
92static void __init msm8960_rumi3_init(void)
93{
94 platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices));
95}
96
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -080097MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR")
Marc Zyngierf7c1a752011-09-08 13:15:22 +010098 .soc = &msm_soc_desc,
Stephen Boyd9e775ad2011-08-12 00:14:28 +010099 .fixup = msm8960_fixup,
100 .reserve = msm8960_reserve,
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -0800101 .map_io = msm8960_map_io,
102 .init_irq = msm8960_init_irq,
103 .timer = &msm_timer,
Marc Zyngier041f7772011-09-06 10:23:45 +0100104 .handle_irq = gic_handle_irq,
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -0800105 .init_machine = msm8960_sim_init,
Stepan Moskovchenkof441ca22010-12-01 19:31:16 -0800106MACHINE_END
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -0800107
108MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3")
Marc Zyngierf7c1a752011-09-08 13:15:22 +0100109 .soc = &msm_soc_desc,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100110 .fixup = msm8960_fixup,
111 .reserve = msm8960_reserve,
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -0800112 .map_io = msm8960_map_io,
113 .init_irq = msm8960_init_irq,
114 .timer = &msm_timer,
Marc Zyngier041f7772011-09-06 10:23:45 +0100115 .handle_irq = gic_handle_irq,
Stepan Moskovchenkod056fca2011-01-27 12:12:07 -0800116 .init_machine = msm8960_rumi3_init,
Stepan Moskovchenko50ede4e2010-12-13 18:12:19 -0800117MACHINE_END
118