David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2010, 2011, Code Aurora Forum. All rights reserved. |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 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. |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/io.h> |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 16 | #include <linux/irq.h> |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 17 | #include <linux/irqdomain.h> |
| 18 | #include <linux/of.h> |
| 19 | #include <linux/of_address.h> |
David Brown | 2b7b9a7 | 2012-04-23 15:34:20 -0700 | [diff] [blame] | 20 | #include <linux/of_irq.h> |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 21 | #include <linux/of_platform.h> |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 22 | #include <linux/memblock.h> |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 23 | |
| 24 | #include <asm/mach-types.h> |
| 25 | #include <asm/mach/arch.h> |
| 26 | #include <asm/hardware/gic.h> |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 27 | #include <asm/setup.h> |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 28 | |
| 29 | #include <mach/board.h> |
| 30 | #include <mach/msm_iomap.h> |
| 31 | |
Stephen Boyd | 47a6770 | 2011-10-25 09:35:19 -0700 | [diff] [blame] | 32 | static void __init msm8x60_fixup(struct tag *tag, char **cmdline, |
| 33 | struct meminfo *mi) |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 34 | { |
| 35 | for (; tag->hdr.size; tag = tag_next(tag)) |
| 36 | if (tag->hdr.tag == ATAG_MEM && |
| 37 | tag->u.mem.start == 0x40200000) { |
| 38 | tag->u.mem.start = 0x40000000; |
| 39 | tag->u.mem.size += SZ_2M; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | static void __init msm8x60_reserve(void) |
| 44 | { |
| 45 | memblock_remove(0x40000000, SZ_2M); |
| 46 | } |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 47 | |
| 48 | static void __init msm8x60_map_io(void) |
| 49 | { |
| 50 | msm_map_msm8x60_io(); |
| 51 | } |
| 52 | |
David Brown | 2b7b9a7 | 2012-04-23 15:34:20 -0700 | [diff] [blame] | 53 | #ifdef CONFIG_OF |
| 54 | static struct of_device_id msm_dt_gic_match[] __initdata = { |
| 55 | { .compatible = "qcom,msm-8660-qgic", .data = gic_of_init }, |
| 56 | {} |
| 57 | }; |
| 58 | #endif |
| 59 | |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 60 | static void __init msm8x60_init_irq(void) |
| 61 | { |
David Brown | 2b7b9a7 | 2012-04-23 15:34:20 -0700 | [diff] [blame] | 62 | if (!of_have_populated_dt()) |
| 63 | gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE, |
| 64 | (void *)MSM_QGIC_CPU_BASE); |
| 65 | #ifdef CONFIG_OF |
| 66 | else |
| 67 | of_irq_init(msm_dt_gic_match); |
| 68 | #endif |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 69 | |
| 70 | /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */ |
| 71 | writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4); |
| 72 | |
| 73 | /* RUMI does not adhere to GIC spec by enabling STIs by default. |
| 74 | * Enable/clear is supposed to be RO for STIs, but is RW on RUMI. |
| 75 | */ |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 76 | if (!machine_is_msm8x60_sim()) |
| 77 | writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET); |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static void __init msm8x60_init(void) |
| 81 | { |
| 82 | } |
| 83 | |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 84 | static void __init msm8x60_init_late(void) |
| 85 | { |
| 86 | smd_debugfs_init(); |
| 87 | } |
| 88 | |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 89 | #ifdef CONFIG_OF |
| 90 | static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = { |
| 91 | {} |
| 92 | }; |
| 93 | |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 94 | static void __init msm8x60_dt_init(void) |
| 95 | { |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 96 | if (of_machine_is_compatible("qcom,msm8660-surf")) { |
| 97 | printk(KERN_INFO "Init surf UART registers\n"); |
| 98 | msm8x60_init_uart12dm(); |
| 99 | } |
| 100 | |
| 101 | of_platform_populate(NULL, of_default_bus_match_table, |
| 102 | msm_auxdata_lookup, NULL); |
| 103 | } |
| 104 | |
| 105 | static const char *msm8x60_fluid_match[] __initdata = { |
| 106 | "qcom,msm8660-fluid", |
| 107 | "qcom,msm8660-surf", |
| 108 | NULL |
| 109 | }; |
| 110 | #endif /* CONFIG_OF */ |
| 111 | |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 112 | MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 113 | .fixup = msm8x60_fixup, |
| 114 | .reserve = msm8x60_reserve, |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 115 | .map_io = msm8x60_map_io, |
| 116 | .init_irq = msm8x60_init_irq, |
Marc Zyngier | 041f777 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 117 | .handle_irq = gic_handle_irq, |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 118 | .init_machine = msm8x60_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 119 | .init_late = msm8x60_init_late, |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 120 | .timer = &msm_timer, |
| 121 | MACHINE_END |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 122 | |
| 123 | MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 124 | .fixup = msm8x60_fixup, |
| 125 | .reserve = msm8x60_reserve, |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 126 | .map_io = msm8x60_map_io, |
| 127 | .init_irq = msm8x60_init_irq, |
Marc Zyngier | 041f777 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 128 | .handle_irq = gic_handle_irq, |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 129 | .init_machine = msm8x60_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 130 | .init_late = msm8x60_init_late, |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 131 | .timer = &msm_timer, |
| 132 | MACHINE_END |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 133 | |
| 134 | MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 135 | .fixup = msm8x60_fixup, |
| 136 | .reserve = msm8x60_reserve, |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 137 | .map_io = msm8x60_map_io, |
| 138 | .init_irq = msm8x60_init_irq, |
Marc Zyngier | 041f777 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 139 | .handle_irq = gic_handle_irq, |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 140 | .init_machine = msm8x60_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 141 | .init_late = msm8x60_init_late, |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 142 | .timer = &msm_timer, |
| 143 | MACHINE_END |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 144 | |
| 145 | MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 146 | .fixup = msm8x60_fixup, |
| 147 | .reserve = msm8x60_reserve, |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 148 | .map_io = msm8x60_map_io, |
| 149 | .init_irq = msm8x60_init_irq, |
Marc Zyngier | 041f777 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 150 | .handle_irq = gic_handle_irq, |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 151 | .init_machine = msm8x60_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 152 | .init_late = msm8x60_init_late, |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 153 | .timer = &msm_timer, |
| 154 | MACHINE_END |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 155 | |
| 156 | #ifdef CONFIG_OF |
| 157 | /* TODO: General device tree support for all MSM. */ |
| 158 | DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") |
| 159 | .map_io = msm8x60_map_io, |
| 160 | .init_irq = msm8x60_init_irq, |
| 161 | .init_machine = msm8x60_dt_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 162 | .init_late = msm8x60_init_late, |
David Brown | 56e2d8a | 2011-08-04 02:01:02 -0700 | [diff] [blame] | 163 | .timer = &msm_timer, |
| 164 | .dt_compat = msm8x60_fluid_match, |
| 165 | MACHINE_END |
| 166 | #endif /* CONFIG_OF */ |