Bartosz Golaszewski | 9ad1acb | 2019-02-14 15:52:28 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
| 2 | // |
| 3 | // Author: Steve Chen <schen@mvista.com> |
| 4 | // Copyright (C) 2008-2009, MontaVista Software, Inc. <source@mvista.com> |
| 5 | // Author: Bartosz Golaszewski <bgolaszewski@baylibre.com> |
| 6 | // Copyright (C) 2019, Texas Instruments |
| 7 | // |
| 8 | // TI Common Platform Interrupt Controller (cp_intc) driver |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 9 | |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 10 | #include <linux/export.h> |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 11 | #include <linux/init.h> |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 12 | #include <linux/irq.h> |
David Lechner | 9a7f2fc | 2016-02-29 16:33:26 -0600 | [diff] [blame] | 13 | #include <linux/irqchip.h> |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 14 | #include <linux/irqchip/irq-davinci-cp-intc.h> |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 15 | #include <linux/irqdomain.h> |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 16 | #include <linux/io.h> |
Heiko Schocher | 961e657 | 2012-05-30 12:18:58 +0200 | [diff] [blame] | 17 | #include <linux/of.h> |
| 18 | #include <linux/of_address.h> |
| 19 | #include <linux/of_irq.h> |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 20 | |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 21 | #include <asm/exception.h> |
Bartosz Golaszewski | ed4d189 | 2019-02-14 15:52:17 +0100 | [diff] [blame] | 22 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 23 | #define DAVINCI_CP_INTC_CTRL 0x04 |
Bartosz Golaszewski | 3b5d1c5 | 2019-02-14 15:52:22 +0100 | [diff] [blame] | 24 | #define DAVINCI_CP_INTC_HOST_CTRL 0x0c |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 25 | #define DAVINCI_CP_INTC_GLOBAL_ENABLE 0x10 |
| 26 | #define DAVINCI_CP_INTC_SYS_STAT_IDX_CLR 0x24 |
| 27 | #define DAVINCI_CP_INTC_SYS_ENABLE_IDX_SET 0x28 |
Bartosz Golaszewski | 3b5d1c5 | 2019-02-14 15:52:22 +0100 | [diff] [blame] | 28 | #define DAVINCI_CP_INTC_SYS_ENABLE_IDX_CLR 0x2c |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 29 | #define DAVINCI_CP_INTC_HOST_ENABLE_IDX_SET 0x34 |
| 30 | #define DAVINCI_CP_INTC_HOST_ENABLE_IDX_CLR 0x38 |
| 31 | #define DAVINCI_CP_INTC_PRIO_IDX 0x80 |
| 32 | #define DAVINCI_CP_INTC_SYS_STAT_CLR(n) (0x0280 + (n << 2)) |
| 33 | #define DAVINCI_CP_INTC_SYS_ENABLE_CLR(n) (0x0380 + (n << 2)) |
| 34 | #define DAVINCI_CP_INTC_CHAN_MAP(n) (0x0400 + (n << 2)) |
Bartosz Golaszewski | 3b5d1c5 | 2019-02-14 15:52:22 +0100 | [diff] [blame] | 35 | #define DAVINCI_CP_INTC_SYS_POLARITY(n) (0x0d00 + (n << 2)) |
| 36 | #define DAVINCI_CP_INTC_SYS_TYPE(n) (0x0d80 + (n << 2)) |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 37 | #define DAVINCI_CP_INTC_HOST_ENABLE(n) (0x1500 + (n << 2)) |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 38 | #define DAVINCI_CP_INTC_PRI_INDX_MASK GENMASK(9, 0) |
| 39 | #define DAVINCI_CP_INTC_GPIR_NONE BIT(31) |
| 40 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 41 | static void __iomem *davinci_cp_intc_base; |
| 42 | static struct irq_domain *davinci_cp_intc_irq_domain; |
Bartosz Golaszewski | fb74684 | 2019-02-14 15:52:00 +0100 | [diff] [blame] | 43 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 44 | static inline unsigned int davinci_cp_intc_read(unsigned int offset) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 45 | { |
Bartosz Golaszewski | d43da8d | 2019-02-14 15:52:27 +0100 | [diff] [blame] | 46 | return readl_relaxed(davinci_cp_intc_base + offset); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 47 | } |
| 48 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 49 | static inline void davinci_cp_intc_write(unsigned long value, |
| 50 | unsigned int offset) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 51 | { |
Bartosz Golaszewski | d43da8d | 2019-02-14 15:52:27 +0100 | [diff] [blame] | 52 | writel_relaxed(value, davinci_cp_intc_base + offset); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 53 | } |
| 54 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 55 | static void davinci_cp_intc_ack_irq(struct irq_data *d) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 56 | { |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 57 | davinci_cp_intc_write(d->hwirq, DAVINCI_CP_INTC_SYS_STAT_IDX_CLR); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 58 | } |
| 59 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 60 | static void davinci_cp_intc_mask_irq(struct irq_data *d) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 61 | { |
| 62 | /* XXX don't know why we need to disable nIRQ here... */ |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 63 | davinci_cp_intc_write(1, DAVINCI_CP_INTC_HOST_ENABLE_IDX_CLR); |
| 64 | davinci_cp_intc_write(d->hwirq, DAVINCI_CP_INTC_SYS_ENABLE_IDX_CLR); |
| 65 | davinci_cp_intc_write(1, DAVINCI_CP_INTC_HOST_ENABLE_IDX_SET); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 66 | } |
| 67 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 68 | static void davinci_cp_intc_unmask_irq(struct irq_data *d) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 69 | { |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 70 | davinci_cp_intc_write(d->hwirq, DAVINCI_CP_INTC_SYS_ENABLE_IDX_SET); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 71 | } |
| 72 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 73 | static int davinci_cp_intc_set_irq_type(struct irq_data *d, |
| 74 | unsigned int flow_type) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 75 | { |
Bartosz Golaszewski | 9762d87 | 2019-02-14 15:52:25 +0100 | [diff] [blame] | 76 | unsigned int reg, mask, polarity, type; |
| 77 | |
| 78 | reg = BIT_WORD(d->hwirq); |
| 79 | mask = BIT_MASK(d->hwirq); |
| 80 | polarity = davinci_cp_intc_read(DAVINCI_CP_INTC_SYS_POLARITY(reg)); |
| 81 | type = davinci_cp_intc_read(DAVINCI_CP_INTC_SYS_TYPE(reg)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 82 | |
| 83 | switch (flow_type) { |
| 84 | case IRQ_TYPE_EDGE_RISING: |
| 85 | polarity |= mask; |
| 86 | type |= mask; |
| 87 | break; |
| 88 | case IRQ_TYPE_EDGE_FALLING: |
| 89 | polarity &= ~mask; |
| 90 | type |= mask; |
| 91 | break; |
| 92 | case IRQ_TYPE_LEVEL_HIGH: |
| 93 | polarity |= mask; |
| 94 | type &= ~mask; |
| 95 | break; |
| 96 | case IRQ_TYPE_LEVEL_LOW: |
| 97 | polarity &= ~mask; |
| 98 | type &= ~mask; |
| 99 | break; |
| 100 | default: |
| 101 | return -EINVAL; |
| 102 | } |
| 103 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 104 | davinci_cp_intc_write(polarity, DAVINCI_CP_INTC_SYS_POLARITY(reg)); |
| 105 | davinci_cp_intc_write(type, DAVINCI_CP_INTC_SYS_TYPE(reg)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 106 | |
| 107 | return 0; |
| 108 | } |
| 109 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 110 | static struct irq_chip davinci_cp_intc_irq_chip = { |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 111 | .name = "cp_intc", |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 112 | .irq_ack = davinci_cp_intc_ack_irq, |
| 113 | .irq_mask = davinci_cp_intc_mask_irq, |
| 114 | .irq_unmask = davinci_cp_intc_unmask_irq, |
| 115 | .irq_set_type = davinci_cp_intc_set_irq_type, |
Sudeep Holla | 3f86e57 | 2015-08-01 21:03:56 +0530 | [diff] [blame] | 116 | .flags = IRQCHIP_SKIP_SET_WAKE, |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 117 | }; |
| 118 | |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 119 | static asmlinkage void __exception_irq_entry |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 120 | davinci_cp_intc_handle_irq(struct pt_regs *regs) |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 121 | { |
| 122 | int gpir, irqnr, none; |
| 123 | |
| 124 | /* |
| 125 | * The interrupt number is in first ten bits. The NONE field set to 1 |
| 126 | * indicates a spurious irq. |
| 127 | */ |
| 128 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 129 | gpir = davinci_cp_intc_read(DAVINCI_CP_INTC_PRIO_IDX); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 130 | irqnr = gpir & DAVINCI_CP_INTC_PRI_INDX_MASK; |
| 131 | none = gpir & DAVINCI_CP_INTC_GPIR_NONE; |
| 132 | |
| 133 | if (unlikely(none)) { |
| 134 | pr_err_once("%s: spurious irq!\n", __func__); |
| 135 | return; |
| 136 | } |
| 137 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 138 | handle_domain_irq(davinci_cp_intc_irq_domain, irqnr, regs); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 139 | } |
| 140 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 141 | static int davinci_cp_intc_host_map(struct irq_domain *h, unsigned int virq, |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 142 | irq_hw_number_t hw) |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 143 | { |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 144 | pr_debug("cp_intc_host_map(%d, 0x%lx)\n", virq, hw); |
| 145 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 146 | irq_set_chip(virq, &davinci_cp_intc_irq_chip); |
Rob Herring | e8d36d5 | 2015-07-27 15:55:13 -0500 | [diff] [blame] | 147 | irq_set_probe(virq); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 148 | irq_set_handler(virq, handle_edge_irq); |
Bartosz Golaszewski | 9762d87 | 2019-02-14 15:52:25 +0100 | [diff] [blame] | 149 | |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 153 | static const struct irq_domain_ops davinci_cp_intc_irq_domain_ops = { |
| 154 | .map = davinci_cp_intc_host_map, |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 155 | .xlate = irq_domain_xlate_onetwocell, |
| 156 | }; |
| 157 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 158 | static int __init |
| 159 | davinci_cp_intc_do_init(const struct davinci_cp_intc_config *config, |
| 160 | struct device_node *node) |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 161 | { |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 162 | unsigned int num_regs = BITS_TO_LONGS(config->num_irqs); |
| 163 | int offset, irq_base; |
Bartosz Golaszewski | 9cf58a4 | 2019-02-14 15:52:24 +0100 | [diff] [blame] | 164 | void __iomem *req; |
| 165 | |
| 166 | req = request_mem_region(config->reg.start, |
| 167 | resource_size(&config->reg), |
| 168 | "davinci-cp-intc"); |
| 169 | if (!req) { |
| 170 | pr_err("%s: register range busy\n", __func__); |
| 171 | return -EBUSY; |
| 172 | } |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 173 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 174 | davinci_cp_intc_base = ioremap(config->reg.start, |
| 175 | resource_size(&config->reg)); |
Bartosz Golaszewski | 6c702da | 2019-02-14 15:52:26 +0100 | [diff] [blame] | 176 | if (!davinci_cp_intc_base) { |
| 177 | pr_err("%s: unable to ioremap register range\n", __func__); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 178 | return -EINVAL; |
Bartosz Golaszewski | 6c702da | 2019-02-14 15:52:26 +0100 | [diff] [blame] | 179 | } |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 180 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 181 | davinci_cp_intc_write(0, DAVINCI_CP_INTC_GLOBAL_ENABLE); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 182 | |
| 183 | /* Disable all host interrupts */ |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 184 | davinci_cp_intc_write(0, DAVINCI_CP_INTC_HOST_ENABLE(0)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 185 | |
| 186 | /* Disable system interrupts */ |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 187 | for (offset = 0; offset < num_regs; offset++) |
| 188 | davinci_cp_intc_write(~0, |
| 189 | DAVINCI_CP_INTC_SYS_ENABLE_CLR(offset)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 190 | |
| 191 | /* Set to normal mode, no nesting, no priority hold */ |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 192 | davinci_cp_intc_write(0, DAVINCI_CP_INTC_CTRL); |
| 193 | davinci_cp_intc_write(0, DAVINCI_CP_INTC_HOST_CTRL); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 194 | |
| 195 | /* Clear system interrupt status */ |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 196 | for (offset = 0; offset < num_regs; offset++) |
| 197 | davinci_cp_intc_write(~0, |
| 198 | DAVINCI_CP_INTC_SYS_STAT_CLR(offset)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 199 | |
| 200 | /* Enable nIRQ (what about nFIQ?) */ |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 201 | davinci_cp_intc_write(1, DAVINCI_CP_INTC_HOST_ENABLE_IDX_SET); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 202 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 203 | /* Default all priorities to channel 7. */ |
| 204 | num_regs = (config->num_irqs + 3) >> 2; /* 4 channels per register */ |
| 205 | for (offset = 0; offset < num_regs; offset++) |
| 206 | davinci_cp_intc_write(0x07070707, |
| 207 | DAVINCI_CP_INTC_CHAN_MAP(offset)); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 208 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 209 | irq_base = irq_alloc_descs(-1, 0, config->num_irqs, 0); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 210 | if (irq_base < 0) { |
Bartosz Golaszewski | 6c702da | 2019-02-14 15:52:26 +0100 | [diff] [blame] | 211 | pr_err("%s: unable to allocate interrupt descriptors: %d\n", |
| 212 | __func__, irq_base); |
| 213 | return irq_base; |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 214 | } |
| 215 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 216 | davinci_cp_intc_irq_domain = irq_domain_add_legacy( |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 217 | node, config->num_irqs, irq_base, 0, |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 218 | &davinci_cp_intc_irq_domain_ops, NULL); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 219 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 220 | if (!davinci_cp_intc_irq_domain) { |
Bartosz Golaszewski | 6c702da | 2019-02-14 15:52:26 +0100 | [diff] [blame] | 221 | pr_err("%s: unable to create an interrupt domain\n", __func__); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 222 | return -EINVAL; |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 223 | } |
| 224 | |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 225 | set_handle_irq(davinci_cp_intc_handle_irq); |
Bartosz Golaszewski | d006459 | 2019-02-14 15:51:58 +0100 | [diff] [blame] | 226 | |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 227 | /* Enable global interrupt */ |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 228 | davinci_cp_intc_write(1, DAVINCI_CP_INTC_GLOBAL_ENABLE); |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 229 | |
| 230 | return 0; |
| 231 | } |
| 232 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 233 | int __init davinci_cp_intc_init(const struct davinci_cp_intc_config *config) |
Heiko Schocher | 07caba9 | 2012-05-30 12:18:57 +0200 | [diff] [blame] | 234 | { |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 235 | return davinci_cp_intc_do_init(config, NULL); |
Sergei Shtylyov | 0521444 | 2009-03-11 19:49:05 +0400 | [diff] [blame] | 236 | } |
David Lechner | 9a7f2fc | 2016-02-29 16:33:26 -0600 | [diff] [blame] | 237 | |
Bartosz Golaszewski | 6567954 | 2019-02-14 15:52:23 +0100 | [diff] [blame] | 238 | static int __init davinci_cp_intc_of_init(struct device_node *node, |
| 239 | struct device_node *parent) |
| 240 | { |
| 241 | struct davinci_cp_intc_config config = { }; |
| 242 | int ret; |
| 243 | |
| 244 | ret = of_address_to_resource(node, 0, &config.reg); |
| 245 | if (ret) { |
| 246 | pr_err("%s: unable to get the register range from device-tree\n", |
| 247 | __func__); |
| 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | ret = of_property_read_u32(node, "ti,intc-size", &config.num_irqs); |
| 252 | if (ret) { |
| 253 | pr_err("%s: unable to read the 'ti,intc-size' property\n", |
| 254 | __func__); |
| 255 | return ret; |
| 256 | } |
| 257 | |
| 258 | return davinci_cp_intc_do_init(&config, node); |
| 259 | } |
Bartosz Golaszewski | b35b55e | 2019-02-14 15:52:21 +0100 | [diff] [blame] | 260 | IRQCHIP_DECLARE(cp_intc, "ti,cp-intc", davinci_cp_intc_of_init); |