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