xref: /openbmc/linux/drivers/irqchip/qcom-pdc.c (revision 8d4c9989)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
4  */
5 
6 #include <linux/err.h>
7 #include <linux/init.h>
8 #include <linux/interrupt.h>
9 #include <linux/irq.h>
10 #include <linux/irqchip.h>
11 #include <linux/irqdomain.h>
12 #include <linux/io.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/of.h>
16 #include <linux/of_address.h>
17 #include <linux/of_device.h>
18 #include <linux/of_irq.h>
19 #include <linux/soc/qcom/irq.h>
20 #include <linux/spinlock.h>
21 #include <linux/slab.h>
22 #include <linux/types.h>
23 
24 #define PDC_MAX_IRQS		168
25 #define PDC_MAX_GPIO_IRQS	256
26 
27 #define CLEAR_INTR(reg, intr)	(reg & ~(1 << intr))
28 #define ENABLE_INTR(reg, intr)	(reg | (1 << intr))
29 
30 #define IRQ_ENABLE_BANK		0x10
31 #define IRQ_i_CFG		0x110
32 
33 struct pdc_pin_region {
34 	u32 pin_base;
35 	u32 parent_base;
36 	u32 cnt;
37 };
38 
39 #define pin_to_hwirq(r, p)	((r)->parent_base + (p) - (r)->pin_base)
40 
41 static DEFINE_RAW_SPINLOCK(pdc_lock);
42 static void __iomem *pdc_base;
43 static struct pdc_pin_region *pdc_region;
44 static int pdc_region_cnt;
45 
46 static void pdc_reg_write(int reg, u32 i, u32 val)
47 {
48 	writel_relaxed(val, pdc_base + reg + i * sizeof(u32));
49 }
50 
51 static u32 pdc_reg_read(int reg, u32 i)
52 {
53 	return readl_relaxed(pdc_base + reg + i * sizeof(u32));
54 }
55 
56 static void pdc_enable_intr(struct irq_data *d, bool on)
57 {
58 	int pin_out = d->hwirq;
59 	u32 index, mask;
60 	u32 enable;
61 
62 	index = pin_out / 32;
63 	mask = pin_out % 32;
64 
65 	raw_spin_lock(&pdc_lock);
66 	enable = pdc_reg_read(IRQ_ENABLE_BANK, index);
67 	enable = on ? ENABLE_INTR(enable, mask) : CLEAR_INTR(enable, mask);
68 	pdc_reg_write(IRQ_ENABLE_BANK, index, enable);
69 	raw_spin_unlock(&pdc_lock);
70 }
71 
72 static void qcom_pdc_gic_disable(struct irq_data *d)
73 {
74 	pdc_enable_intr(d, false);
75 	irq_chip_disable_parent(d);
76 }
77 
78 static void qcom_pdc_gic_enable(struct irq_data *d)
79 {
80 	pdc_enable_intr(d, true);
81 	irq_chip_enable_parent(d);
82 }
83 
84 /*
85  * GIC does not handle falling edge or active low. To allow falling edge and
86  * active low interrupts to be handled at GIC, PDC has an inverter that inverts
87  * falling edge into a rising edge and active low into an active high.
88  * For the inverter to work, the polarity bit in the IRQ_CONFIG register has to
89  * set as per the table below.
90  * Level sensitive active low    LOW
91  * Rising edge sensitive         NOT USED
92  * Falling edge sensitive        LOW
93  * Dual Edge sensitive           NOT USED
94  * Level sensitive active High   HIGH
95  * Falling Edge sensitive        NOT USED
96  * Rising edge sensitive         HIGH
97  * Dual Edge sensitive           HIGH
98  */
99 enum pdc_irq_config_bits {
100 	PDC_LEVEL_LOW		= 0b000,
101 	PDC_EDGE_FALLING	= 0b010,
102 	PDC_LEVEL_HIGH		= 0b100,
103 	PDC_EDGE_RISING		= 0b110,
104 	PDC_EDGE_DUAL		= 0b111,
105 };
106 
107 /**
108  * qcom_pdc_gic_set_type: Configure PDC for the interrupt
109  *
110  * @d: the interrupt data
111  * @type: the interrupt type
112  *
113  * If @type is edge triggered, forward that as Rising edge as PDC
114  * takes care of converting falling edge to rising edge signal
115  * If @type is level, then forward that as level high as PDC
116  * takes care of converting falling edge to rising edge signal
117  */
118 static int qcom_pdc_gic_set_type(struct irq_data *d, unsigned int type)
119 {
120 	enum pdc_irq_config_bits pdc_type;
121 	enum pdc_irq_config_bits old_pdc_type;
122 	int ret;
123 
124 	switch (type) {
125 	case IRQ_TYPE_EDGE_RISING:
126 		pdc_type = PDC_EDGE_RISING;
127 		break;
128 	case IRQ_TYPE_EDGE_FALLING:
129 		pdc_type = PDC_EDGE_FALLING;
130 		type = IRQ_TYPE_EDGE_RISING;
131 		break;
132 	case IRQ_TYPE_EDGE_BOTH:
133 		pdc_type = PDC_EDGE_DUAL;
134 		type = IRQ_TYPE_EDGE_RISING;
135 		break;
136 	case IRQ_TYPE_LEVEL_HIGH:
137 		pdc_type = PDC_LEVEL_HIGH;
138 		break;
139 	case IRQ_TYPE_LEVEL_LOW:
140 		pdc_type = PDC_LEVEL_LOW;
141 		type = IRQ_TYPE_LEVEL_HIGH;
142 		break;
143 	default:
144 		WARN_ON(1);
145 		return -EINVAL;
146 	}
147 
148 	old_pdc_type = pdc_reg_read(IRQ_i_CFG, d->hwirq);
149 	pdc_reg_write(IRQ_i_CFG, d->hwirq, pdc_type);
150 
151 	ret = irq_chip_set_type_parent(d, type);
152 	if (ret)
153 		return ret;
154 
155 	/*
156 	 * When we change types the PDC can give a phantom interrupt.
157 	 * Clear it.  Specifically the phantom shows up when reconfiguring
158 	 * polarity of interrupt without changing the state of the signal
159 	 * but let's be consistent and clear it always.
160 	 *
161 	 * Doing this works because we have IRQCHIP_SET_TYPE_MASKED so the
162 	 * interrupt will be cleared before the rest of the system sees it.
163 	 */
164 	if (old_pdc_type != pdc_type)
165 		irq_chip_set_parent_state(d, IRQCHIP_STATE_PENDING, false);
166 
167 	return 0;
168 }
169 
170 static struct irq_chip qcom_pdc_gic_chip = {
171 	.name			= "PDC",
172 	.irq_eoi		= irq_chip_eoi_parent,
173 	.irq_mask		= irq_chip_mask_parent,
174 	.irq_unmask		= irq_chip_unmask_parent,
175 	.irq_disable		= qcom_pdc_gic_disable,
176 	.irq_enable		= qcom_pdc_gic_enable,
177 	.irq_get_irqchip_state	= irq_chip_get_parent_state,
178 	.irq_set_irqchip_state	= irq_chip_set_parent_state,
179 	.irq_retrigger		= irq_chip_retrigger_hierarchy,
180 	.irq_set_type		= qcom_pdc_gic_set_type,
181 	.flags			= IRQCHIP_MASK_ON_SUSPEND |
182 				  IRQCHIP_SET_TYPE_MASKED |
183 				  IRQCHIP_SKIP_SET_WAKE |
184 				  IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND,
185 	.irq_set_vcpu_affinity	= irq_chip_set_vcpu_affinity_parent,
186 	.irq_set_affinity	= irq_chip_set_affinity_parent,
187 };
188 
189 static struct pdc_pin_region *get_pin_region(int pin)
190 {
191 	int i;
192 
193 	for (i = 0; i < pdc_region_cnt; i++) {
194 		if (pin >= pdc_region[i].pin_base &&
195 		    pin < pdc_region[i].pin_base + pdc_region[i].cnt)
196 			return &pdc_region[i];
197 	}
198 
199 	return NULL;
200 }
201 
202 static int qcom_pdc_translate(struct irq_domain *d, struct irq_fwspec *fwspec,
203 			      unsigned long *hwirq, unsigned int *type)
204 {
205 	if (is_of_node(fwspec->fwnode)) {
206 		if (fwspec->param_count != 2)
207 			return -EINVAL;
208 
209 		*hwirq = fwspec->param[0];
210 		*type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
211 		return 0;
212 	}
213 
214 	return -EINVAL;
215 }
216 
217 static int qcom_pdc_alloc(struct irq_domain *domain, unsigned int virq,
218 			  unsigned int nr_irqs, void *data)
219 {
220 	struct irq_fwspec *fwspec = data;
221 	struct irq_fwspec parent_fwspec;
222 	struct pdc_pin_region *region;
223 	irq_hw_number_t hwirq;
224 	unsigned int type;
225 	int ret;
226 
227 	ret = qcom_pdc_translate(domain, fwspec, &hwirq, &type);
228 	if (ret)
229 		return ret;
230 
231 	ret  = irq_domain_set_hwirq_and_chip(domain, virq, hwirq,
232 					     &qcom_pdc_gic_chip, NULL);
233 	if (ret)
234 		return ret;
235 
236 	region = get_pin_region(hwirq);
237 	if (!region)
238 		return irq_domain_disconnect_hierarchy(domain->parent, virq);
239 
240 	if (type & IRQ_TYPE_EDGE_BOTH)
241 		type = IRQ_TYPE_EDGE_RISING;
242 
243 	if (type & IRQ_TYPE_LEVEL_MASK)
244 		type = IRQ_TYPE_LEVEL_HIGH;
245 
246 	parent_fwspec.fwnode      = domain->parent->fwnode;
247 	parent_fwspec.param_count = 3;
248 	parent_fwspec.param[0]    = 0;
249 	parent_fwspec.param[1]    = pin_to_hwirq(region, hwirq);
250 	parent_fwspec.param[2]    = type;
251 
252 	return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
253 					    &parent_fwspec);
254 }
255 
256 static const struct irq_domain_ops qcom_pdc_ops = {
257 	.translate	= qcom_pdc_translate,
258 	.alloc		= qcom_pdc_alloc,
259 	.free		= irq_domain_free_irqs_common,
260 };
261 
262 static int qcom_pdc_gpio_alloc(struct irq_domain *domain, unsigned int virq,
263 			       unsigned int nr_irqs, void *data)
264 {
265 	struct irq_fwspec *fwspec = data;
266 	struct irq_fwspec parent_fwspec;
267 	struct pdc_pin_region *region;
268 	irq_hw_number_t hwirq;
269 	unsigned int type;
270 	int ret;
271 
272 	ret = qcom_pdc_translate(domain, fwspec, &hwirq, &type);
273 	if (ret)
274 		return ret;
275 
276 	if (hwirq == GPIO_NO_WAKE_IRQ)
277 		return irq_domain_disconnect_hierarchy(domain, virq);
278 
279 	ret = irq_domain_set_hwirq_and_chip(domain, virq, hwirq,
280 					    &qcom_pdc_gic_chip, NULL);
281 	if (ret)
282 		return ret;
283 
284 	region = get_pin_region(hwirq);
285 	if (!region)
286 		return irq_domain_disconnect_hierarchy(domain->parent, virq);
287 
288 	if (type & IRQ_TYPE_EDGE_BOTH)
289 		type = IRQ_TYPE_EDGE_RISING;
290 
291 	if (type & IRQ_TYPE_LEVEL_MASK)
292 		type = IRQ_TYPE_LEVEL_HIGH;
293 
294 	parent_fwspec.fwnode      = domain->parent->fwnode;
295 	parent_fwspec.param_count = 3;
296 	parent_fwspec.param[0]    = 0;
297 	parent_fwspec.param[1]    = pin_to_hwirq(region, hwirq);
298 	parent_fwspec.param[2]    = type;
299 
300 	return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
301 					    &parent_fwspec);
302 }
303 
304 static int qcom_pdc_gpio_domain_select(struct irq_domain *d,
305 				       struct irq_fwspec *fwspec,
306 				       enum irq_domain_bus_token bus_token)
307 {
308 	return bus_token == DOMAIN_BUS_WAKEUP;
309 }
310 
311 static const struct irq_domain_ops qcom_pdc_gpio_ops = {
312 	.select		= qcom_pdc_gpio_domain_select,
313 	.alloc		= qcom_pdc_gpio_alloc,
314 	.free		= irq_domain_free_irqs_common,
315 };
316 
317 static int pdc_setup_pin_mapping(struct device_node *np)
318 {
319 	int ret, n, i;
320 	u32 irq_index, reg_index, val;
321 
322 	n = of_property_count_elems_of_size(np, "qcom,pdc-ranges", sizeof(u32));
323 	if (n <= 0 || n % 3)
324 		return -EINVAL;
325 
326 	pdc_region_cnt = n / 3;
327 	pdc_region = kcalloc(pdc_region_cnt, sizeof(*pdc_region), GFP_KERNEL);
328 	if (!pdc_region) {
329 		pdc_region_cnt = 0;
330 		return -ENOMEM;
331 	}
332 
333 	for (n = 0; n < pdc_region_cnt; n++) {
334 		ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
335 						 n * 3 + 0,
336 						 &pdc_region[n].pin_base);
337 		if (ret)
338 			return ret;
339 		ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
340 						 n * 3 + 1,
341 						 &pdc_region[n].parent_base);
342 		if (ret)
343 			return ret;
344 		ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
345 						 n * 3 + 2,
346 						 &pdc_region[n].cnt);
347 		if (ret)
348 			return ret;
349 
350 		for (i = 0; i < pdc_region[n].cnt; i++) {
351 			reg_index = (i + pdc_region[n].pin_base) >> 5;
352 			irq_index = (i + pdc_region[n].pin_base) & 0x1f;
353 			val = pdc_reg_read(IRQ_ENABLE_BANK, reg_index);
354 			val &= ~BIT(irq_index);
355 			pdc_reg_write(IRQ_ENABLE_BANK, reg_index, val);
356 		}
357 	}
358 
359 	return 0;
360 }
361 
362 static int qcom_pdc_init(struct device_node *node, struct device_node *parent)
363 {
364 	struct irq_domain *parent_domain, *pdc_domain, *pdc_gpio_domain;
365 	int ret;
366 
367 	pdc_base = of_iomap(node, 0);
368 	if (!pdc_base) {
369 		pr_err("%pOF: unable to map PDC registers\n", node);
370 		return -ENXIO;
371 	}
372 
373 	parent_domain = irq_find_host(parent);
374 	if (!parent_domain) {
375 		pr_err("%pOF: unable to find PDC's parent domain\n", node);
376 		ret = -ENXIO;
377 		goto fail;
378 	}
379 
380 	ret = pdc_setup_pin_mapping(node);
381 	if (ret) {
382 		pr_err("%pOF: failed to init PDC pin-hwirq mapping\n", node);
383 		goto fail;
384 	}
385 
386 	pdc_domain = irq_domain_create_hierarchy(parent_domain, 0, PDC_MAX_IRQS,
387 						 of_fwnode_handle(node),
388 						 &qcom_pdc_ops, NULL);
389 	if (!pdc_domain) {
390 		pr_err("%pOF: GIC domain add failed\n", node);
391 		ret = -ENOMEM;
392 		goto fail;
393 	}
394 
395 	pdc_gpio_domain = irq_domain_create_hierarchy(parent_domain,
396 					IRQ_DOMAIN_FLAG_QCOM_PDC_WAKEUP,
397 					PDC_MAX_GPIO_IRQS,
398 					of_fwnode_handle(node),
399 					&qcom_pdc_gpio_ops, NULL);
400 	if (!pdc_gpio_domain) {
401 		pr_err("%pOF: PDC domain add failed for GPIO domain\n", node);
402 		ret = -ENOMEM;
403 		goto remove;
404 	}
405 
406 	irq_domain_update_bus_token(pdc_gpio_domain, DOMAIN_BUS_WAKEUP);
407 
408 	return 0;
409 
410 remove:
411 	irq_domain_remove(pdc_domain);
412 fail:
413 	kfree(pdc_region);
414 	iounmap(pdc_base);
415 	return ret;
416 }
417 
418 IRQCHIP_PLATFORM_DRIVER_BEGIN(qcom_pdc)
419 IRQCHIP_MATCH("qcom,pdc", qcom_pdc_init)
420 IRQCHIP_PLATFORM_DRIVER_END(qcom_pdc)
421 MODULE_DESCRIPTION("Qualcomm Technologies, Inc. Power Domain Controller");
422 MODULE_LICENSE("GPL v2");
423