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