]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/irqchip/exynos-combiner.c
i2c: fix leaked device refcount on of_find_i2c_* error path
[mirror_ubuntu-bionic-kernel.git] / drivers / irqchip / exynos-combiner.c
CommitLineData
a900e5d9
RH
1/*
2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
5 * Combiner irqchip for EXYNOS
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/err.h>
12#include <linux/export.h>
13#include <linux/init.h>
14#include <linux/io.h>
d34f03d4 15#include <linux/slab.h>
6fd4899a 16#include <linux/syscore_ops.h>
a900e5d9 17#include <linux/irqdomain.h>
de88cbb7 18#include <linux/irqchip/chained_irq.h>
bc64690e 19#include <linux/interrupt.h>
a900e5d9
RH
20#include <linux/of_address.h>
21#include <linux/of_irq.h>
a900e5d9 22
a900e5d9
RH
23#include "irqchip.h"
24
25#define COMBINER_ENABLE_SET 0x0
26#define COMBINER_ENABLE_CLEAR 0x4
27#define COMBINER_INT_STATUS 0xC
28
6761dcfe
AB
29#define IRQ_IN_COMBINER 8
30
a900e5d9
RH
31static DEFINE_SPINLOCK(irq_controller_lock);
32
33struct combiner_chip_data {
20adee8f 34 unsigned int hwirq_offset;
a900e5d9
RH
35 unsigned int irq_mask;
36 void __iomem *base;
df7ef462 37 unsigned int parent_irq;
6fd4899a
JMC
38#ifdef CONFIG_PM
39 u32 pm_save;
40#endif
a900e5d9
RH
41};
42
6fd4899a 43static struct combiner_chip_data *combiner_data;
a900e5d9 44static struct irq_domain *combiner_irq_domain;
6fd4899a 45static unsigned int max_nr = 20;
a900e5d9
RH
46
47static inline void __iomem *combiner_base(struct irq_data *data)
48{
49 struct combiner_chip_data *combiner_data =
50 irq_data_get_irq_chip_data(data);
51
52 return combiner_data->base;
53}
54
55static void combiner_mask_irq(struct irq_data *data)
56{
57 u32 mask = 1 << (data->hwirq % 32);
58
59 __raw_writel(mask, combiner_base(data) + COMBINER_ENABLE_CLEAR);
60}
61
62static void combiner_unmask_irq(struct irq_data *data)
63{
64 u32 mask = 1 << (data->hwirq % 32);
65
66 __raw_writel(mask, combiner_base(data) + COMBINER_ENABLE_SET);
67}
68
69static void combiner_handle_cascade_irq(unsigned int irq, struct irq_desc *desc)
70{
71 struct combiner_chip_data *chip_data = irq_get_handler_data(irq);
72 struct irq_chip *chip = irq_get_chip(irq);
73 unsigned int cascade_irq, combiner_irq;
74 unsigned long status;
75
76 chained_irq_enter(chip, desc);
77
78 spin_lock(&irq_controller_lock);
79 status = __raw_readl(chip_data->base + COMBINER_INT_STATUS);
80 spin_unlock(&irq_controller_lock);
81 status &= chip_data->irq_mask;
82
83 if (status == 0)
84 goto out;
85
20adee8f
AB
86 combiner_irq = chip_data->hwirq_offset + __ffs(status);
87 cascade_irq = irq_find_mapping(combiner_irq_domain, combiner_irq);
a900e5d9 88
20adee8f 89 if (unlikely(!cascade_irq))
a8378485 90 handle_bad_irq(irq, desc);
a900e5d9
RH
91 else
92 generic_handle_irq(cascade_irq);
93
94 out:
95 chained_irq_exit(chip, desc);
96}
97
df7ef462
CP
98#ifdef CONFIG_SMP
99static int combiner_set_affinity(struct irq_data *d,
100 const struct cpumask *mask_val, bool force)
101{
102 struct combiner_chip_data *chip_data = irq_data_get_irq_chip_data(d);
103 struct irq_chip *chip = irq_get_chip(chip_data->parent_irq);
104 struct irq_data *data = irq_get_irq_data(chip_data->parent_irq);
105
106 if (chip && chip->irq_set_affinity)
107 return chip->irq_set_affinity(data, mask_val, force);
108 else
109 return -EINVAL;
110}
111#endif
112
a900e5d9 113static struct irq_chip combiner_chip = {
df7ef462
CP
114 .name = "COMBINER",
115 .irq_mask = combiner_mask_irq,
116 .irq_unmask = combiner_unmask_irq,
117#ifdef CONFIG_SMP
118 .irq_set_affinity = combiner_set_affinity,
119#endif
a900e5d9
RH
120};
121
d34f03d4 122static void __init combiner_cascade_irq(struct combiner_chip_data *combiner_data,
4e164dc5
CP
123 unsigned int irq)
124{
d34f03d4 125 if (irq_set_handler_data(irq, combiner_data) != 0)
a900e5d9
RH
126 BUG();
127 irq_set_chained_handler(irq, combiner_handle_cascade_irq);
128}
129
d34f03d4
AB
130static void __init combiner_init_one(struct combiner_chip_data *combiner_data,
131 unsigned int combiner_nr,
df7ef462 132 void __iomem *base, unsigned int irq)
a900e5d9 133{
d34f03d4 134 combiner_data->base = base;
20adee8f 135 combiner_data->hwirq_offset = (combiner_nr & ~3) * IRQ_IN_COMBINER;
d34f03d4
AB
136 combiner_data->irq_mask = 0xff << ((combiner_nr % 4) << 3);
137 combiner_data->parent_irq = irq;
a900e5d9
RH
138
139 /* Disable all interrupts */
d34f03d4 140 __raw_writel(combiner_data->irq_mask, base + COMBINER_ENABLE_CLEAR);
a900e5d9
RH
141}
142
a900e5d9
RH
143static int combiner_irq_domain_xlate(struct irq_domain *d,
144 struct device_node *controller,
145 const u32 *intspec, unsigned int intsize,
146 unsigned long *out_hwirq,
147 unsigned int *out_type)
148{
149 if (d->of_node != controller)
150 return -EINVAL;
151
152 if (intsize < 2)
153 return -EINVAL;
154
6761dcfe 155 *out_hwirq = intspec[0] * IRQ_IN_COMBINER + intspec[1];
a900e5d9
RH
156 *out_type = 0;
157
158 return 0;
159}
a900e5d9
RH
160
161static int combiner_irq_domain_map(struct irq_domain *d, unsigned int irq,
162 irq_hw_number_t hw)
163{
d34f03d4
AB
164 struct combiner_chip_data *combiner_data = d->host_data;
165
a900e5d9
RH
166 irq_set_chip_and_handler(irq, &combiner_chip, handle_level_irq);
167 irq_set_chip_data(irq, &combiner_data[hw >> 3]);
168 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
169
170 return 0;
171}
172
96009736 173static const struct irq_domain_ops combiner_irq_domain_ops = {
a900e5d9
RH
174 .xlate = combiner_irq_domain_xlate,
175 .map = combiner_irq_domain_map,
176};
177
b8394dee 178static void __init combiner_init(void __iomem *combiner_base,
6fd4899a 179 struct device_node *np)
a900e5d9 180{
863a08dc 181 int i, irq;
6761dcfe 182 unsigned int nr_irq;
a900e5d9 183
6761dcfe 184 nr_irq = max_nr * IRQ_IN_COMBINER;
4e164dc5 185
d34f03d4
AB
186 combiner_data = kcalloc(max_nr, sizeof (*combiner_data), GFP_KERNEL);
187 if (!combiner_data) {
188 pr_warning("%s: could not allocate combiner data\n", __func__);
189 return;
a900e5d9
RH
190 }
191
9403ac88 192 combiner_irq_domain = irq_domain_add_linear(np, nr_irq,
d34f03d4 193 &combiner_irq_domain_ops, combiner_data);
a900e5d9
RH
194 if (WARN_ON(!combiner_irq_domain)) {
195 pr_warning("%s: irq domain init failed\n", __func__);
196 return;
197 }
198
199 for (i = 0; i < max_nr; i++) {
0f561511 200 irq = irq_of_parse_and_map(np, i);
92c8e496 201
d34f03d4
AB
202 combiner_init_one(&combiner_data[i], i,
203 combiner_base + (i >> 2) * 0x10, irq);
204 combiner_cascade_irq(&combiner_data[i], irq);
a900e5d9
RH
205 }
206}
207
6fd4899a
JMC
208#ifdef CONFIG_PM
209
210/**
211 * combiner_suspend - save interrupt combiner state before suspend
212 *
213 * Save the interrupt enable set register for all combiner groups since
214 * the state is lost when the system enters into a sleep state.
215 *
216 */
217static int combiner_suspend(void)
218{
219 int i;
220
221 for (i = 0; i < max_nr; i++)
222 combiner_data[i].pm_save =
223 __raw_readl(combiner_data[i].base + COMBINER_ENABLE_SET);
224
225 return 0;
226}
227
228/**
229 * combiner_resume - restore interrupt combiner state after resume
230 *
231 * Restore the interrupt enable set register for all combiner groups since
232 * the state is lost when the system enters into a sleep state on suspend.
233 *
234 */
235static void combiner_resume(void)
236{
237 int i;
238
239 for (i = 0; i < max_nr; i++) {
240 __raw_writel(combiner_data[i].irq_mask,
241 combiner_data[i].base + COMBINER_ENABLE_CLEAR);
242 __raw_writel(combiner_data[i].pm_save,
243 combiner_data[i].base + COMBINER_ENABLE_SET);
244 }
245}
246
247#else
248#define combiner_suspend NULL
249#define combiner_resume NULL
250#endif
251
252static struct syscore_ops combiner_syscore_ops = {
253 .suspend = combiner_suspend,
254 .resume = combiner_resume,
255};
256
a900e5d9
RH
257static int __init combiner_of_init(struct device_node *np,
258 struct device_node *parent)
259{
260 void __iomem *combiner_base;
261
262 combiner_base = of_iomap(np, 0);
263 if (!combiner_base) {
264 pr_err("%s: failed to map combiner registers\n", __func__);
265 return -ENXIO;
266 }
267
6761dcfe
AB
268 if (of_property_read_u32(np, "samsung,combiner-nr", &max_nr)) {
269 pr_info("%s: number of combiners not specified, "
270 "setting default as %d.\n",
271 __func__, max_nr);
272 }
273
6fd4899a
JMC
274 combiner_init(combiner_base, np);
275
276 register_syscore_ops(&combiner_syscore_ops);
a900e5d9
RH
277
278 return 0;
279}
280IRQCHIP_DECLARE(exynos4210_combiner, "samsung,exynos4210-combiner",
281 combiner_of_init);