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> |
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> |
| 27 | |
| 28 | #include <mach/board.h> |
| 29 | #include <mach/msm_iomap.h> |
| 30 | |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 31 | |
| 32 | static void __init msm8x60_map_io(void) |
| 33 | { |
| 34 | msm_map_msm8x60_io(); |
| 35 | } |
| 36 | |
| 37 | static void __init msm8x60_init_irq(void) |
| 38 | { |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 39 | unsigned int i; |
| 40 | |
Russell King | ff2e27a | 2010-12-04 16:13:29 +0000 | [diff] [blame] | 41 | gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE, |
| 42 | (void *)MSM_QGIC_CPU_BASE); |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 43 | |
| 44 | /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */ |
| 45 | writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4); |
| 46 | |
| 47 | /* RUMI does not adhere to GIC spec by enabling STIs by default. |
| 48 | * Enable/clear is supposed to be RO for STIs, but is RW on RUMI. |
| 49 | */ |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 50 | if (!machine_is_msm8x60_sim()) |
| 51 | writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET); |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 52 | |
| 53 | /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet |
| 54 | * as they are configured as level, which does not play nice with |
| 55 | * handle_percpu_irq. |
| 56 | */ |
| 57 | for (i = GIC_PPI_START; i < GIC_SPI_START; i++) { |
| 58 | if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE) |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame^] | 59 | irq_set_handler(i, handle_percpu_irq); |
Steve Muckle | 9161d30 | 2010-02-11 11:50:40 -0800 | [diff] [blame] | 60 | } |
Steve Muckle | a55df6e | 2010-01-07 12:43:24 -0800 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static void __init msm8x60_init(void) |
| 64 | { |
| 65 | } |
| 66 | |
| 67 | MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3") |
| 68 | .map_io = msm8x60_map_io, |
| 69 | .init_irq = msm8x60_init_irq, |
| 70 | .init_machine = msm8x60_init, |
| 71 | .timer = &msm_timer, |
| 72 | MACHINE_END |
Steve Muckle | 49b76f7 | 2010-03-19 17:00:08 -0700 | [diff] [blame] | 73 | |
| 74 | MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF") |
| 75 | .map_io = msm8x60_map_io, |
| 76 | .init_irq = msm8x60_init_irq, |
| 77 | .init_machine = msm8x60_init, |
| 78 | .timer = &msm_timer, |
| 79 | MACHINE_END |
Steve Muckle | 57bbf1c | 2010-01-07 12:51:10 -0800 | [diff] [blame] | 80 | |
| 81 | MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") |
| 82 | .map_io = msm8x60_map_io, |
| 83 | .init_irq = msm8x60_init_irq, |
| 84 | .init_machine = msm8x60_init, |
| 85 | .timer = &msm_timer, |
| 86 | MACHINE_END |
Gregory Bean | 69b7f6f | 2010-04-04 22:29:02 -0700 | [diff] [blame] | 87 | |
| 88 | MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") |
| 89 | .map_io = msm8x60_map_io, |
| 90 | .init_irq = msm8x60_init_irq, |
| 91 | .init_machine = msm8x60_init, |
| 92 | .timer = &msm_timer, |
| 93 | MACHINE_END |