Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 1 | /* 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 Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 22 | #include <linux/irq.h> |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 23 | #include <linux/memblock.h> |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 24 | |
| 25 | #include <asm/mach-types.h> |
| 26 | #include <asm/mach/arch.h> |
| 27 | #include <asm/hardware/gic.h> |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 28 | #include <asm/setup.h> |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 29 | |
| 30 | #include <mach/board.h> |
| 31 | #include <mach/msm_iomap.h> |
| 32 | |
Stephen Boyd | 47a6770 | 2011-10-25 09:35:19 -0700 | [diff] [blame^] | 33 | static void __init msm8x60_fixup(struct tag *tag, char **cmdline, |
| 34 | struct meminfo *mi) |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 35 | { |
| 36 | for (; tag->hdr.size; tag = tag_next(tag)) |
| 37 | if (tag->hdr.tag == ATAG_MEM && |
| 38 | tag->u.mem.start == 0x40200000) { |
| 39 | tag->u.mem.start = 0x40000000; |
| 40 | tag->u.mem.size += SZ_2M; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | static void __init msm8x60_reserve(void) |
| 45 | { |
| 46 | memblock_remove(0x40000000, SZ_2M); |
| 47 | } |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 48 | |
| 49 | static void __init msm8x60_map_io(void) |
| 50 | { |
| 51 | msm_map_msm8x60_io(); |
| 52 | } |
| 53 | |
| 54 | static void __init msm8x60_init_irq(void) |
| 55 | { |
Russell King | ff2e27a | 2010-12-04 16:13:29 +0000 | [diff] [blame] | 56 | gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE, |
| 57 | (void *)MSM_QGIC_CPU_BASE); |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 58 | |
| 59 | /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */ |
| 60 | writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4); |
| 61 | |
| 62 | /* RUMI does not adhere to GIC spec by enabling STIs by default. |
| 63 | * Enable/clear is supposed to be RO for STIs, but is RW on RUMI. |
| 64 | */ |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 65 | if (!machine_is_msm8x60_sim()) |
| 66 | writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET); |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static void __init msm8x60_init(void) |
| 70 | { |
| 71 | } |
| 72 | |
| 73 | MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 74 | .fixup = msm8x60_fixup, |
| 75 | .reserve = msm8x60_reserve, |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 76 | .map_io = msm8x60_map_io, |
| 77 | .init_irq = msm8x60_init_irq, |
| 78 | .init_machine = msm8x60_init, |
| 79 | .timer = &msm_timer, |
| 80 | MACHINE_END |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 81 | |
| 82 | MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 83 | .fixup = msm8x60_fixup, |
| 84 | .reserve = msm8x60_reserve, |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 85 | .map_io = msm8x60_map_io, |
| 86 | .init_irq = msm8x60_init_irq, |
| 87 | .init_machine = msm8x60_init, |
| 88 | .timer = &msm_timer, |
| 89 | MACHINE_END |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 90 | |
| 91 | MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 92 | .fixup = msm8x60_fixup, |
| 93 | .reserve = msm8x60_reserve, |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 94 | .map_io = msm8x60_map_io, |
| 95 | .init_irq = msm8x60_init_irq, |
| 96 | .init_machine = msm8x60_init, |
| 97 | .timer = &msm_timer, |
| 98 | MACHINE_END |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 99 | |
| 100 | MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 101 | .fixup = msm8x60_fixup, |
| 102 | .reserve = msm8x60_reserve, |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 103 | .map_io = msm8x60_map_io, |
| 104 | .init_irq = msm8x60_init_irq, |
| 105 | .init_machine = msm8x60_init, |
| 106 | .timer = &msm_timer, |
| 107 | MACHINE_END |