Bartosz Golaszewski | 2d242aa | 2019-02-14 15:52:04 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | // |
| 3 | // Copyright (C) 2006, 2019 Texas Instruments. |
| 4 | // |
| 5 | // Interrupt handler for DaVinci boards. |
| 6 | |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 7 | #include <linux/kernel.h> |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/interrupt.h> |
| 10 | #include <linux/irq.h> |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 11 | #include <linux/irqchip/irq-davinci-aintc.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 12 | #include <linux/io.h> |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 13 | #include <linux/irqdomain.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 14 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 15 | #include <mach/hardware.h> |
Sudhakar Rajashekhara | 9e16469 | 2009-04-14 07:53:02 -0500 | [diff] [blame] | 16 | #include <mach/cputype.h> |
Mark A. Greer | 673dd36 | 2009-04-15 12:40:00 -0700 | [diff] [blame] | 17 | #include <mach/common.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 18 | #include <asm/mach/irq.h> |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 19 | #include <asm/exception.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 20 | |
Bartosz Golaszewski | 544ca0b | 2019-02-14 15:52:03 +0100 | [diff] [blame] | 21 | #include "irqs.h" |
| 22 | |
Bartosz Golaszewski | 919da6f1 | 2019-02-14 15:52:07 +0100 | [diff] [blame] | 23 | #define DAVINCI_AINTC_FIQ_REG0 0x00 |
| 24 | #define DAVINCI_AINTC_FIQ_REG1 0x04 |
| 25 | #define DAVINCI_AINTC_IRQ_REG0 0x08 |
| 26 | #define DAVINCI_AINTC_IRQ_REG1 0x0c |
| 27 | #define DAVINCI_AINTC_IRQ_IRQENTRY 0x14 |
| 28 | #define DAVINCI_AINTC_IRQ_ENT_REG0 0x18 |
| 29 | #define DAVINCI_AINTC_IRQ_ENT_REG1 0x1c |
| 30 | #define DAVINCI_AINTC_IRQ_INCTL_REG 0x20 |
| 31 | #define DAVINCI_AINTC_IRQ_EABASE_REG 0x24 |
| 32 | #define DAVINCI_AINTC_IRQ_INTPRI0_REG 0x30 |
| 33 | #define DAVINCI_AINTC_IRQ_INTPRI7_REG 0x4c |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 34 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 35 | static void __iomem *davinci_aintc_base; |
| 36 | static struct irq_domain *davinci_aintc_irq_domain; |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 37 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 38 | static inline void davinci_aintc_writel(unsigned long value, int offset) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 39 | { |
Bartosz Golaszewski | f412384 | 2019-02-14 15:52:08 +0100 | [diff] [blame] | 40 | writel_relaxed(value, davinci_aintc_base + offset); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 41 | } |
| 42 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 43 | static inline unsigned long davinci_aintc_readl(int offset) |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 44 | { |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 45 | return readl_relaxed(davinci_aintc_base + offset); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 46 | } |
| 47 | |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 48 | static __init void |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 49 | davinci_aintc_setup_gc(void __iomem *base, |
| 50 | unsigned int irq_start, unsigned int num) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 51 | { |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 52 | struct irq_chip_generic *gc; |
| 53 | struct irq_chip_type *ct; |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 54 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 55 | gc = irq_get_domain_generic_chip(davinci_aintc_irq_domain, irq_start); |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 56 | gc->reg_base = base; |
| 57 | gc->irq_base = irq_start; |
Todd Poynor | 33e1e5e | 2011-07-16 22:39:35 -0700 | [diff] [blame] | 58 | |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 59 | ct = gc->chip_types; |
Simon Guinot | 659fb32 | 2011-07-06 12:41:31 -0400 | [diff] [blame] | 60 | ct->chip.irq_ack = irq_gc_ack_set_bit; |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 61 | ct->chip.irq_mask = irq_gc_mask_clr_bit; |
| 62 | ct->chip.irq_unmask = irq_gc_mask_set_bit; |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 63 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 64 | ct->regs.ack = DAVINCI_AINTC_IRQ_REG0; |
| 65 | ct->regs.mask = DAVINCI_AINTC_IRQ_ENT_REG0; |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 66 | irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE, |
| 67 | IRQ_NOREQUEST | IRQ_NOPROBE, 0); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 68 | } |
| 69 | |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 70 | static asmlinkage void __exception_irq_entry |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 71 | davinci_aintc_handle_irq(struct pt_regs *regs) |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 72 | { |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 73 | int irqnr = davinci_aintc_readl(DAVINCI_AINTC_IRQ_IRQENTRY); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * Use the formula for entry vector index generation from section |
| 77 | * 8.3.3 of the manual. |
| 78 | */ |
| 79 | irqnr >>= 2; |
| 80 | irqnr -= 1; |
| 81 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 82 | handle_domain_irq(davinci_aintc_irq_domain, irqnr, regs); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 83 | } |
| 84 | |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 85 | /* ARM Interrupt Controller Initialization */ |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 86 | void __init davinci_aintc_init(const struct davinci_aintc_config *config) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 87 | { |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 88 | unsigned int irq_off, reg_off, prio, shift; |
Bartosz Golaszewski | 882bed7 | 2019-02-14 15:52:13 +0100 | [diff] [blame^] | 89 | void __iomem *req; |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 90 | int ret, irq_base; |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 91 | const u8 *prios; |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 92 | |
Bartosz Golaszewski | 882bed7 | 2019-02-14 15:52:13 +0100 | [diff] [blame^] | 93 | req = request_mem_region(config->reg.start, |
| 94 | resource_size(&config->reg), |
| 95 | "davinci-cp-intc"); |
| 96 | if (!req) { |
| 97 | pr_err("%s: register range busy\n", __func__); |
| 98 | return; |
| 99 | } |
| 100 | |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 101 | davinci_aintc_base = ioremap(config->reg.start, |
| 102 | resource_size(&config->reg)); |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 103 | if (!davinci_aintc_base) { |
| 104 | pr_err("%s: unable to ioremap register range\n", __func__); |
Cyril Chemparathy | bd80894 | 2010-05-07 17:06:37 -0400 | [diff] [blame] | 105 | return; |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 106 | } |
Cyril Chemparathy | bd80894 | 2010-05-07 17:06:37 -0400 | [diff] [blame] | 107 | |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 108 | /* Clear all interrupt requests */ |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 109 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG0); |
| 110 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG1); |
| 111 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG0); |
| 112 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG1); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 113 | |
| 114 | /* Disable all interrupts */ |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 115 | davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_ENT_REG0); |
| 116 | davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_ENT_REG1); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 117 | |
| 118 | /* Interrupts disabled immediately, IRQ entry reflects all */ |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 119 | davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_INCTL_REG); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 120 | |
| 121 | /* we don't use the hardware vector table, just its entry addresses */ |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 122 | davinci_aintc_writel(0, DAVINCI_AINTC_IRQ_EABASE_REG); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 123 | |
| 124 | /* Clear all interrupt requests */ |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 125 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG0); |
| 126 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG1); |
| 127 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG0); |
| 128 | davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG1); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 129 | |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 130 | prios = config->prios; |
| 131 | for (reg_off = DAVINCI_AINTC_IRQ_INTPRI0_REG; |
| 132 | reg_off <= DAVINCI_AINTC_IRQ_INTPRI7_REG; reg_off += 4) { |
| 133 | for (shift = 0, prio = 0; shift < 32; shift += 4, prios++) |
| 134 | prio |= (*prios & 0x07) << shift; |
| 135 | davinci_aintc_writel(prio, reg_off); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 136 | } |
| 137 | |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 138 | irq_base = irq_alloc_descs(-1, 0, config->num_irqs, 0); |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 139 | if (irq_base < 0) { |
| 140 | pr_err("%s: unable to allocate interrupt descriptors: %d\n", |
| 141 | __func__, irq_base); |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 142 | return; |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 143 | } |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 144 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 145 | davinci_aintc_irq_domain = irq_domain_add_legacy(NULL, |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 146 | config->num_irqs, irq_base, 0, |
| 147 | &irq_domain_simple_ops, NULL); |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 148 | if (!davinci_aintc_irq_domain) { |
| 149 | pr_err("%s: unable to create interrupt domain\n", __func__); |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 150 | return; |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 151 | } |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 152 | |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 153 | ret = irq_alloc_domain_generic_chips(davinci_aintc_irq_domain, 32, 1, |
| 154 | "AINTC", handle_edge_irq, |
| 155 | IRQ_NOREQUEST | IRQ_NOPROBE, 0, 0); |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 156 | if (ret) { |
| 157 | pr_err("%s: unable to allocate generic irq chips for domain\n", |
| 158 | __func__); |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 159 | return; |
Bartosz Golaszewski | a6c0bba | 2019-02-14 15:52:12 +0100 | [diff] [blame] | 160 | } |
Bartosz Golaszewski | 74b0eac | 2019-02-14 15:51:57 +0100 | [diff] [blame] | 161 | |
Bartosz Golaszewski | 06a2871 | 2019-02-14 15:52:11 +0100 | [diff] [blame] | 162 | for (irq_off = 0, reg_off = 0; |
| 163 | irq_off < config->num_irqs; |
| 164 | irq_off += 32, reg_off += 0x04) |
| 165 | davinci_aintc_setup_gc(davinci_aintc_base + reg_off, |
| 166 | irq_base + irq_off, 32); |
Thomas Gleixner | aac4dd1 | 2011-04-15 11:19:57 +0200 | [diff] [blame] | 167 | |
Bartosz Golaszewski | a98ca73 | 2019-02-14 15:52:01 +0100 | [diff] [blame] | 168 | irq_set_handler(DAVINCI_INTC_IRQ(IRQ_TINT1_TINT34), handle_level_irq); |
Bartosz Golaszewski | 2b6a2e7 | 2019-02-14 15:52:06 +0100 | [diff] [blame] | 169 | set_handle_irq(davinci_aintc_handle_irq); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 170 | } |