Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 1 | /* |
Colin Cross | 938fa34 | 2011-05-01 14:10:10 -0700 | [diff] [blame] | 2 | * Copyright (C) 2011 Google, Inc. |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 3 | * |
| 4 | * Author: |
Colin Cross | 938fa34 | 2011-05-01 14:10:10 -0700 | [diff] [blame] | 5 | * Colin Cross <ccross@android.com> |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 6 | * |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 7 | * Copyright (C) 2010, NVIDIA Corporation |
| 8 | * |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 9 | * This software is licensed under the terms of the GNU General Public |
| 10 | * License version 2, as published by the Free Software Foundation, and |
| 11 | * may be copied, distributed, and modified under those terms. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | */ |
| 19 | |
| 20 | #include <linux/kernel.h> |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/irq.h> |
| 23 | #include <linux/io.h> |
pdeschrijver@nvidia.com | 0d4f747 | 2011-11-29 18:29:19 -0700 | [diff] [blame] | 24 | #include <linux/of.h> |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 25 | |
| 26 | #include <asm/hardware/gic.h> |
| 27 | |
| 28 | #include <mach/iomap.h> |
| 29 | |
| 30 | #include "board.h" |
| 31 | |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 32 | #define ICTLR_CPU_IEP_VFIQ 0x08 |
| 33 | #define ICTLR_CPU_IEP_FIR 0x14 |
| 34 | #define ICTLR_CPU_IEP_FIR_SET 0x18 |
| 35 | #define ICTLR_CPU_IEP_FIR_CLR 0x1c |
| 36 | |
| 37 | #define ICTLR_CPU_IER 0x20 |
| 38 | #define ICTLR_CPU_IER_SET 0x24 |
| 39 | #define ICTLR_CPU_IER_CLR 0x28 |
| 40 | #define ICTLR_CPU_IEP_CLASS 0x2C |
| 41 | |
| 42 | #define ICTLR_COP_IER 0x30 |
| 43 | #define ICTLR_COP_IER_SET 0x34 |
| 44 | #define ICTLR_COP_IER_CLR 0x38 |
| 45 | #define ICTLR_COP_IEP_CLASS 0x3c |
| 46 | |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 47 | #define FIRST_LEGACY_IRQ 32 |
| 48 | |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 49 | static int num_ictlrs; |
| 50 | |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 51 | static void __iomem *ictlr_reg_base[] = { |
| 52 | IO_ADDRESS(TEGRA_PRIMARY_ICTLR_BASE), |
| 53 | IO_ADDRESS(TEGRA_SECONDARY_ICTLR_BASE), |
| 54 | IO_ADDRESS(TEGRA_TERTIARY_ICTLR_BASE), |
| 55 | IO_ADDRESS(TEGRA_QUATERNARY_ICTLR_BASE), |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 56 | IO_ADDRESS(TEGRA_QUINARY_ICTLR_BASE), |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | static inline void tegra_irq_write_mask(unsigned int irq, unsigned long reg) |
| 60 | { |
| 61 | void __iomem *base; |
| 62 | u32 mask; |
| 63 | |
| 64 | BUG_ON(irq < FIRST_LEGACY_IRQ || |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 65 | irq >= FIRST_LEGACY_IRQ + num_ictlrs * 32); |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 66 | |
| 67 | base = ictlr_reg_base[(irq - FIRST_LEGACY_IRQ) / 32]; |
| 68 | mask = BIT((irq - FIRST_LEGACY_IRQ) % 32); |
| 69 | |
| 70 | __raw_writel(mask, base + reg); |
| 71 | } |
| 72 | |
Lennert Buytenhek | 37337a8 | 2010-11-29 11:14:46 +0100 | [diff] [blame] | 73 | static void tegra_mask(struct irq_data *d) |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 74 | { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 75 | if (d->irq < FIRST_LEGACY_IRQ) |
| 76 | return; |
| 77 | |
| 78 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IER_CLR); |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Lennert Buytenhek | 37337a8 | 2010-11-29 11:14:46 +0100 | [diff] [blame] | 81 | static void tegra_unmask(struct irq_data *d) |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 82 | { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 83 | if (d->irq < FIRST_LEGACY_IRQ) |
| 84 | return; |
| 85 | |
| 86 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IER_SET); |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Colin Cross | 26d902c | 2011-02-09 22:17:17 -0800 | [diff] [blame] | 89 | static void tegra_ack(struct irq_data *d) |
| 90 | { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 91 | if (d->irq < FIRST_LEGACY_IRQ) |
| 92 | return; |
| 93 | |
| 94 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR); |
Colin Cross | 26d902c | 2011-02-09 22:17:17 -0800 | [diff] [blame] | 95 | } |
| 96 | |
Colin Cross | 4bd66cf | 2011-05-01 15:27:34 -0700 | [diff] [blame] | 97 | static void tegra_eoi(struct irq_data *d) |
| 98 | { |
| 99 | if (d->irq < FIRST_LEGACY_IRQ) |
| 100 | return; |
| 101 | |
| 102 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR); |
| 103 | } |
| 104 | |
Colin Cross | 26d902c | 2011-02-09 22:17:17 -0800 | [diff] [blame] | 105 | static int tegra_retrigger(struct irq_data *d) |
| 106 | { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 107 | if (d->irq < FIRST_LEGACY_IRQ) |
Colin Cross | 938fa34 | 2011-05-01 14:10:10 -0700 | [diff] [blame] | 108 | return 0; |
| 109 | |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 110 | tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_SET); |
| 111 | |
Colin Cross | 26d902c | 2011-02-09 22:17:17 -0800 | [diff] [blame] | 112 | return 1; |
| 113 | } |
| 114 | |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 115 | void __init tegra_init_irq(void) |
| 116 | { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 117 | int i; |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 118 | void __iomem *distbase; |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 119 | |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 120 | distbase = IO_ADDRESS(TEGRA_ARM_INT_DIST_BASE); |
| 121 | num_ictlrs = readl_relaxed(distbase + GIC_DIST_CTR) & 0x1f; |
| 122 | |
| 123 | if (num_ictlrs > ARRAY_SIZE(ictlr_reg_base)) { |
| 124 | WARN(1, "Too many (%d) interrupt controllers found. Maximum is %d.", |
| 125 | num_ictlrs, ARRAY_SIZE(ictlr_reg_base)); |
| 126 | num_ictlrs = ARRAY_SIZE(ictlr_reg_base); |
| 127 | } |
| 128 | |
| 129 | for (i = 0; i < num_ictlrs; i++) { |
Colin Cross | d1d8c66 | 2011-05-01 15:26:51 -0700 | [diff] [blame] | 130 | void __iomem *ictlr = ictlr_reg_base[i]; |
| 131 | writel(~0, ictlr + ICTLR_CPU_IER_CLR); |
| 132 | writel(0, ictlr + ICTLR_CPU_IEP_CLASS); |
| 133 | } |
Gary King | 460907b | 2010-04-05 20:30:59 -0700 | [diff] [blame] | 134 | |
Colin Cross | 938fa34 | 2011-05-01 14:10:10 -0700 | [diff] [blame] | 135 | gic_arch_extn.irq_ack = tegra_ack; |
Colin Cross | 4bd66cf | 2011-05-01 15:27:34 -0700 | [diff] [blame] | 136 | gic_arch_extn.irq_eoi = tegra_eoi; |
Colin Cross | 938fa34 | 2011-05-01 14:10:10 -0700 | [diff] [blame] | 137 | gic_arch_extn.irq_mask = tegra_mask; |
| 138 | gic_arch_extn.irq_unmask = tegra_unmask; |
| 139 | gic_arch_extn.irq_retrigger = tegra_retrigger; |
| 140 | |
pdeschrijver@nvidia.com | 0d4f747 | 2011-11-29 18:29:19 -0700 | [diff] [blame] | 141 | /* |
| 142 | * Check if there is a devicetree present, since the GIC will be |
| 143 | * initialized elsewhere under DT. |
| 144 | */ |
| 145 | if (!of_have_populated_dt()) |
Peter De Schrijver | caa4868 | 2012-01-05 03:31:45 +0000 | [diff] [blame] | 146 | gic_init(0, 29, distbase, |
pdeschrijver@nvidia.com | 0d4f747 | 2011-11-29 18:29:19 -0700 | [diff] [blame] | 147 | IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x100)); |
Erik Gilling | 5ad36c5 | 2010-03-15 23:04:46 -0700 | [diff] [blame] | 148 | } |