1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
7 #include <linux/init.h>
8 #include <linux/interrupt.h>
10 #include <linux/irqchip.h>
11 #include <linux/irqdomain.h>
13 #include <linux/kernel.h>
14 #include <linux/module.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>
24 #define PDC_MAX_IRQS 168
25 #define PDC_MAX_GPIO_IRQS 256
27 #define CLEAR_INTR(reg, intr) (reg & ~(1 << intr))
28 #define ENABLE_INTR(reg, intr) (reg | (1 << intr))
30 #define IRQ_ENABLE_BANK 0x10
31 #define IRQ_i_CFG 0x110
33 #define PDC_NO_PARENT_IRQ ~0UL
35 struct pdc_pin_region {
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;
46 static void pdc_reg_write(int reg, u32 i, u32 val)
48 writel_relaxed(val, pdc_base + reg + i * sizeof(u32));
51 static u32 pdc_reg_read(int reg, u32 i)
53 return readl_relaxed(pdc_base + reg + i * sizeof(u32));
56 static int qcom_pdc_gic_get_irqchip_state(struct irq_data *d,
57 enum irqchip_irq_state which,
60 if (d->hwirq == GPIO_NO_WAKE_IRQ)
63 return irq_chip_get_parent_state(d, which, state);
66 static int qcom_pdc_gic_set_irqchip_state(struct irq_data *d,
67 enum irqchip_irq_state which,
70 if (d->hwirq == GPIO_NO_WAKE_IRQ)
73 return irq_chip_set_parent_state(d, which, value);
76 static void pdc_enable_intr(struct irq_data *d, bool on)
78 int pin_out = d->hwirq;
85 raw_spin_lock(&pdc_lock);
86 enable = pdc_reg_read(IRQ_ENABLE_BANK, index);
87 enable = on ? ENABLE_INTR(enable, mask) : CLEAR_INTR(enable, mask);
88 pdc_reg_write(IRQ_ENABLE_BANK, index, enable);
89 raw_spin_unlock(&pdc_lock);
92 static void qcom_pdc_gic_disable(struct irq_data *d)
94 if (d->hwirq == GPIO_NO_WAKE_IRQ)
97 pdc_enable_intr(d, false);
98 irq_chip_disable_parent(d);
101 static void qcom_pdc_gic_enable(struct irq_data *d)
103 if (d->hwirq == GPIO_NO_WAKE_IRQ)
106 pdc_enable_intr(d, true);
107 irq_chip_enable_parent(d);
110 static void qcom_pdc_gic_mask(struct irq_data *d)
112 if (d->hwirq == GPIO_NO_WAKE_IRQ)
115 irq_chip_mask_parent(d);
118 static void qcom_pdc_gic_unmask(struct irq_data *d)
120 if (d->hwirq == GPIO_NO_WAKE_IRQ)
123 irq_chip_unmask_parent(d);
127 * GIC does not handle falling edge or active low. To allow falling edge and
128 * active low interrupts to be handled at GIC, PDC has an inverter that inverts
129 * falling edge into a rising edge and active low into an active high.
130 * For the inverter to work, the polarity bit in the IRQ_CONFIG register has to
131 * set as per the table below.
132 * Level sensitive active low LOW
133 * Rising edge sensitive NOT USED
134 * Falling edge sensitive LOW
135 * Dual Edge sensitive NOT USED
136 * Level sensitive active High HIGH
137 * Falling Edge sensitive NOT USED
138 * Rising edge sensitive HIGH
139 * Dual Edge sensitive HIGH
141 enum pdc_irq_config_bits {
142 PDC_LEVEL_LOW = 0b000,
143 PDC_EDGE_FALLING = 0b010,
144 PDC_LEVEL_HIGH = 0b100,
145 PDC_EDGE_RISING = 0b110,
146 PDC_EDGE_DUAL = 0b111,
150 * qcom_pdc_gic_set_type: Configure PDC for the interrupt
152 * @d: the interrupt data
153 * @type: the interrupt type
155 * If @type is edge triggered, forward that as Rising edge as PDC
156 * takes care of converting falling edge to rising edge signal
157 * If @type is level, then forward that as level high as PDC
158 * takes care of converting falling edge to rising edge signal
160 static int qcom_pdc_gic_set_type(struct irq_data *d, unsigned int type)
162 int pin_out = d->hwirq;
163 enum pdc_irq_config_bits pdc_type;
165 if (pin_out == GPIO_NO_WAKE_IRQ)
169 case IRQ_TYPE_EDGE_RISING:
170 pdc_type = PDC_EDGE_RISING;
172 case IRQ_TYPE_EDGE_FALLING:
173 pdc_type = PDC_EDGE_FALLING;
174 type = IRQ_TYPE_EDGE_RISING;
176 case IRQ_TYPE_EDGE_BOTH:
177 pdc_type = PDC_EDGE_DUAL;
178 type = IRQ_TYPE_EDGE_RISING;
180 case IRQ_TYPE_LEVEL_HIGH:
181 pdc_type = PDC_LEVEL_HIGH;
183 case IRQ_TYPE_LEVEL_LOW:
184 pdc_type = PDC_LEVEL_LOW;
185 type = IRQ_TYPE_LEVEL_HIGH;
192 pdc_reg_write(IRQ_i_CFG, pin_out, pdc_type);
194 return irq_chip_set_type_parent(d, type);
197 static struct irq_chip qcom_pdc_gic_chip = {
199 .irq_eoi = irq_chip_eoi_parent,
200 .irq_mask = qcom_pdc_gic_mask,
201 .irq_unmask = qcom_pdc_gic_unmask,
202 .irq_disable = qcom_pdc_gic_disable,
203 .irq_enable = qcom_pdc_gic_enable,
204 .irq_get_irqchip_state = qcom_pdc_gic_get_irqchip_state,
205 .irq_set_irqchip_state = qcom_pdc_gic_set_irqchip_state,
206 .irq_retrigger = irq_chip_retrigger_hierarchy,
207 .irq_set_type = qcom_pdc_gic_set_type,
208 .flags = IRQCHIP_MASK_ON_SUSPEND |
209 IRQCHIP_SET_TYPE_MASKED |
210 IRQCHIP_SKIP_SET_WAKE,
211 .irq_set_vcpu_affinity = irq_chip_set_vcpu_affinity_parent,
212 .irq_set_affinity = irq_chip_set_affinity_parent,
215 static irq_hw_number_t get_parent_hwirq(int pin)
218 struct pdc_pin_region *region;
220 for (i = 0; i < pdc_region_cnt; i++) {
221 region = &pdc_region[i];
222 if (pin >= region->pin_base &&
223 pin < region->pin_base + region->cnt)
224 return (region->parent_base + pin - region->pin_base);
227 return PDC_NO_PARENT_IRQ;
230 static int qcom_pdc_translate(struct irq_domain *d, struct irq_fwspec *fwspec,
231 unsigned long *hwirq, unsigned int *type)
233 if (is_of_node(fwspec->fwnode)) {
234 if (fwspec->param_count != 2)
237 *hwirq = fwspec->param[0];
238 *type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
245 static int qcom_pdc_alloc(struct irq_domain *domain, unsigned int virq,
246 unsigned int nr_irqs, void *data)
248 struct irq_fwspec *fwspec = data;
249 struct irq_fwspec parent_fwspec;
250 irq_hw_number_t hwirq, parent_hwirq;
254 ret = qcom_pdc_translate(domain, fwspec, &hwirq, &type);
258 ret = irq_domain_set_hwirq_and_chip(domain, virq, hwirq,
259 &qcom_pdc_gic_chip, NULL);
263 parent_hwirq = get_parent_hwirq(hwirq);
264 if (parent_hwirq == PDC_NO_PARENT_IRQ)
267 if (type & IRQ_TYPE_EDGE_BOTH)
268 type = IRQ_TYPE_EDGE_RISING;
270 if (type & IRQ_TYPE_LEVEL_MASK)
271 type = IRQ_TYPE_LEVEL_HIGH;
273 parent_fwspec.fwnode = domain->parent->fwnode;
274 parent_fwspec.param_count = 3;
275 parent_fwspec.param[0] = 0;
276 parent_fwspec.param[1] = parent_hwirq;
277 parent_fwspec.param[2] = type;
279 return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
283 static const struct irq_domain_ops qcom_pdc_ops = {
284 .translate = qcom_pdc_translate,
285 .alloc = qcom_pdc_alloc,
286 .free = irq_domain_free_irqs_common,
289 static int qcom_pdc_gpio_alloc(struct irq_domain *domain, unsigned int virq,
290 unsigned int nr_irqs, void *data)
292 struct irq_fwspec *fwspec = data;
293 struct irq_fwspec parent_fwspec;
294 irq_hw_number_t hwirq, parent_hwirq;
298 ret = qcom_pdc_translate(domain, fwspec, &hwirq, &type);
302 ret = irq_domain_set_hwirq_and_chip(domain, virq, hwirq,
303 &qcom_pdc_gic_chip, NULL);
307 if (hwirq == GPIO_NO_WAKE_IRQ)
310 parent_hwirq = get_parent_hwirq(hwirq);
311 if (parent_hwirq == PDC_NO_PARENT_IRQ)
314 if (type & IRQ_TYPE_EDGE_BOTH)
315 type = IRQ_TYPE_EDGE_RISING;
317 if (type & IRQ_TYPE_LEVEL_MASK)
318 type = IRQ_TYPE_LEVEL_HIGH;
320 parent_fwspec.fwnode = domain->parent->fwnode;
321 parent_fwspec.param_count = 3;
322 parent_fwspec.param[0] = 0;
323 parent_fwspec.param[1] = parent_hwirq;
324 parent_fwspec.param[2] = type;
326 return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
330 static int qcom_pdc_gpio_domain_select(struct irq_domain *d,
331 struct irq_fwspec *fwspec,
332 enum irq_domain_bus_token bus_token)
334 return bus_token == DOMAIN_BUS_WAKEUP;
337 static const struct irq_domain_ops qcom_pdc_gpio_ops = {
338 .select = qcom_pdc_gpio_domain_select,
339 .alloc = qcom_pdc_gpio_alloc,
340 .free = irq_domain_free_irqs_common,
343 static int pdc_setup_pin_mapping(struct device_node *np)
347 n = of_property_count_elems_of_size(np, "qcom,pdc-ranges", sizeof(u32));
351 pdc_region_cnt = n / 3;
352 pdc_region = kcalloc(pdc_region_cnt, sizeof(*pdc_region), GFP_KERNEL);
358 for (n = 0; n < pdc_region_cnt; n++) {
359 ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
361 &pdc_region[n].pin_base);
364 ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
366 &pdc_region[n].parent_base);
369 ret = of_property_read_u32_index(np, "qcom,pdc-ranges",
379 static int qcom_pdc_init(struct device_node *node, struct device_node *parent)
381 struct irq_domain *parent_domain, *pdc_domain, *pdc_gpio_domain;
384 pdc_base = of_iomap(node, 0);
386 pr_err("%pOF: unable to map PDC registers\n", node);
390 parent_domain = irq_find_host(parent);
391 if (!parent_domain) {
392 pr_err("%pOF: unable to find PDC's parent domain\n", node);
397 ret = pdc_setup_pin_mapping(node);
399 pr_err("%pOF: failed to init PDC pin-hwirq mapping\n", node);
403 pdc_domain = irq_domain_create_hierarchy(parent_domain, 0, PDC_MAX_IRQS,
404 of_fwnode_handle(node),
405 &qcom_pdc_ops, NULL);
407 pr_err("%pOF: GIC domain add failed\n", node);
412 pdc_gpio_domain = irq_domain_create_hierarchy(parent_domain,
413 IRQ_DOMAIN_FLAG_QCOM_PDC_WAKEUP,
415 of_fwnode_handle(node),
416 &qcom_pdc_gpio_ops, NULL);
417 if (!pdc_gpio_domain) {
418 pr_err("%pOF: PDC domain add failed for GPIO domain\n", node);
423 irq_domain_update_bus_token(pdc_gpio_domain, DOMAIN_BUS_WAKEUP);
428 irq_domain_remove(pdc_domain);
435 IRQCHIP_PLATFORM_DRIVER_BEGIN(qcom_pdc)
436 IRQCHIP_MATCH("qcom,pdc", qcom_pdc_init)
437 IRQCHIP_PLATFORM_DRIVER_END(qcom_pdc)
438 MODULE_DESCRIPTION("Qualcomm Technologies, Inc. Power Domain Controller");
439 MODULE_LICENSE("GPL v2");