1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) Maxime Coquelin 2015
4 * Copyright (C) STMicroelectronics 2017
5 * Author: Maxime Coquelin <mcoquelin.stm32@gmail.com>
6 */
7
8 #include <linux/bitops.h>
9 #include <linux/delay.h>
10 #include <linux/hwspinlock.h>
11 #include <linux/interrupt.h>
12 #include <linux/io.h>
13 #include <linux/irq.h>
14 #include <linux/irqchip.h>
15 #include <linux/irqchip/chained_irq.h>
16 #include <linux/irqdomain.h>
17 #include <linux/module.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_platform.h>
21 #include <linux/syscore_ops.h>
22
23 #include <dt-bindings/interrupt-controller/arm-gic.h>
24
25 #define IRQS_PER_BANK 32
26
27 #define HWSPNLCK_TIMEOUT 1000 /* usec */
28
29 struct stm32_exti_bank {
30 u32 imr_ofst;
31 u32 emr_ofst;
32 u32 rtsr_ofst;
33 u32 ftsr_ofst;
34 u32 swier_ofst;
35 u32 rpr_ofst;
36 u32 fpr_ofst;
37 };
38
39 #define UNDEF_REG ~0
40
41 struct stm32_desc_irq {
42 u32 exti;
43 u32 irq_parent;
44 struct irq_chip *chip;
45 };
46
47 struct stm32_exti_drv_data {
48 const struct stm32_exti_bank **exti_banks;
49 const struct stm32_desc_irq *desc_irqs;
50 u32 bank_nr;
51 u32 irq_nr;
52 };
53
54 struct stm32_exti_chip_data {
55 struct stm32_exti_host_data *host_data;
56 const struct stm32_exti_bank *reg_bank;
57 struct raw_spinlock rlock;
58 u32 wake_active;
59 u32 mask_cache;
60 u32 rtsr_cache;
61 u32 ftsr_cache;
62 };
63
64 struct stm32_exti_host_data {
65 void __iomem *base;
66 struct stm32_exti_chip_data *chips_data;
67 const struct stm32_exti_drv_data *drv_data;
68 struct hwspinlock *hwlock;
69 };
70
71 static struct stm32_exti_host_data *stm32_host_data;
72
73 static const struct stm32_exti_bank stm32f4xx_exti_b1 = {
74 .imr_ofst = 0x00,
75 .emr_ofst = 0x04,
76 .rtsr_ofst = 0x08,
77 .ftsr_ofst = 0x0C,
78 .swier_ofst = 0x10,
79 .rpr_ofst = 0x14,
80 .fpr_ofst = UNDEF_REG,
81 };
82
83 static const struct stm32_exti_bank *stm32f4xx_exti_banks[] = {
84 &stm32f4xx_exti_b1,
85 };
86
87 static const struct stm32_exti_drv_data stm32f4xx_drv_data = {
88 .exti_banks = stm32f4xx_exti_banks,
89 .bank_nr = ARRAY_SIZE(stm32f4xx_exti_banks),
90 };
91
92 static const struct stm32_exti_bank stm32h7xx_exti_b1 = {
93 .imr_ofst = 0x80,
94 .emr_ofst = 0x84,
95 .rtsr_ofst = 0x00,
96 .ftsr_ofst = 0x04,
97 .swier_ofst = 0x08,
98 .rpr_ofst = 0x88,
99 .fpr_ofst = UNDEF_REG,
100 };
101
102 static const struct stm32_exti_bank stm32h7xx_exti_b2 = {
103 .imr_ofst = 0x90,
104 .emr_ofst = 0x94,
105 .rtsr_ofst = 0x20,
106 .ftsr_ofst = 0x24,
107 .swier_ofst = 0x28,
108 .rpr_ofst = 0x98,
109 .fpr_ofst = UNDEF_REG,
110 };
111
112 static const struct stm32_exti_bank stm32h7xx_exti_b3 = {
113 .imr_ofst = 0xA0,
114 .emr_ofst = 0xA4,
115 .rtsr_ofst = 0x40,
116 .ftsr_ofst = 0x44,
117 .swier_ofst = 0x48,
118 .rpr_ofst = 0xA8,
119 .fpr_ofst = UNDEF_REG,
120 };
121
122 static const struct stm32_exti_bank *stm32h7xx_exti_banks[] = {
123 &stm32h7xx_exti_b1,
124 &stm32h7xx_exti_b2,
125 &stm32h7xx_exti_b3,
126 };
127
128 static const struct stm32_exti_drv_data stm32h7xx_drv_data = {
129 .exti_banks = stm32h7xx_exti_banks,
130 .bank_nr = ARRAY_SIZE(stm32h7xx_exti_banks),
131 };
132
133 static const struct stm32_exti_bank stm32mp1_exti_b1 = {
134 .imr_ofst = 0x80,
135 .emr_ofst = 0x84,
136 .rtsr_ofst = 0x00,
137 .ftsr_ofst = 0x04,
138 .swier_ofst = 0x08,
139 .rpr_ofst = 0x0C,
140 .fpr_ofst = 0x10,
141 };
142
143 static const struct stm32_exti_bank stm32mp1_exti_b2 = {
144 .imr_ofst = 0x90,
145 .emr_ofst = 0x94,
146 .rtsr_ofst = 0x20,
147 .ftsr_ofst = 0x24,
148 .swier_ofst = 0x28,
149 .rpr_ofst = 0x2C,
150 .fpr_ofst = 0x30,
151 };
152
153 static const struct stm32_exti_bank stm32mp1_exti_b3 = {
154 .imr_ofst = 0xA0,
155 .emr_ofst = 0xA4,
156 .rtsr_ofst = 0x40,
157 .ftsr_ofst = 0x44,
158 .swier_ofst = 0x48,
159 .rpr_ofst = 0x4C,
160 .fpr_ofst = 0x50,
161 };
162
163 static const struct stm32_exti_bank *stm32mp1_exti_banks[] = {
164 &stm32mp1_exti_b1,
165 &stm32mp1_exti_b2,
166 &stm32mp1_exti_b3,
167 };
168
169 static struct irq_chip stm32_exti_h_chip;
170 static struct irq_chip stm32_exti_h_chip_direct;
171
172 static const struct stm32_desc_irq stm32mp1_desc_irq[] = {
173 { .exti = 0, .irq_parent = 6, .chip = &stm32_exti_h_chip },
174 { .exti = 1, .irq_parent = 7, .chip = &stm32_exti_h_chip },
175 { .exti = 2, .irq_parent = 8, .chip = &stm32_exti_h_chip },
176 { .exti = 3, .irq_parent = 9, .chip = &stm32_exti_h_chip },
177 { .exti = 4, .irq_parent = 10, .chip = &stm32_exti_h_chip },
178 { .exti = 5, .irq_parent = 23, .chip = &stm32_exti_h_chip },
179 { .exti = 6, .irq_parent = 64, .chip = &stm32_exti_h_chip },
180 { .exti = 7, .irq_parent = 65, .chip = &stm32_exti_h_chip },
181 { .exti = 8, .irq_parent = 66, .chip = &stm32_exti_h_chip },
182 { .exti = 9, .irq_parent = 67, .chip = &stm32_exti_h_chip },
183 { .exti = 10, .irq_parent = 40, .chip = &stm32_exti_h_chip },
184 { .exti = 11, .irq_parent = 42, .chip = &stm32_exti_h_chip },
185 { .exti = 12, .irq_parent = 76, .chip = &stm32_exti_h_chip },
186 { .exti = 13, .irq_parent = 77, .chip = &stm32_exti_h_chip },
187 { .exti = 14, .irq_parent = 121, .chip = &stm32_exti_h_chip },
188 { .exti = 15, .irq_parent = 127, .chip = &stm32_exti_h_chip },
189 { .exti = 16, .irq_parent = 1, .chip = &stm32_exti_h_chip },
190 { .exti = 19, .irq_parent = 3, .chip = &stm32_exti_h_chip_direct },
191 { .exti = 21, .irq_parent = 31, .chip = &stm32_exti_h_chip_direct },
192 { .exti = 22, .irq_parent = 33, .chip = &stm32_exti_h_chip_direct },
193 { .exti = 23, .irq_parent = 72, .chip = &stm32_exti_h_chip_direct },
194 { .exti = 24, .irq_parent = 95, .chip = &stm32_exti_h_chip_direct },
195 { .exti = 25, .irq_parent = 107, .chip = &stm32_exti_h_chip_direct },
196 { .exti = 26, .irq_parent = 37, .chip = &stm32_exti_h_chip_direct },
197 { .exti = 27, .irq_parent = 38, .chip = &stm32_exti_h_chip_direct },
198 { .exti = 28, .irq_parent = 39, .chip = &stm32_exti_h_chip_direct },
199 { .exti = 29, .irq_parent = 71, .chip = &stm32_exti_h_chip_direct },
200 { .exti = 30, .irq_parent = 52, .chip = &stm32_exti_h_chip_direct },
201 { .exti = 31, .irq_parent = 53, .chip = &stm32_exti_h_chip_direct },
202 { .exti = 32, .irq_parent = 82, .chip = &stm32_exti_h_chip_direct },
203 { .exti = 33, .irq_parent = 83, .chip = &stm32_exti_h_chip_direct },
204 { .exti = 47, .irq_parent = 93, .chip = &stm32_exti_h_chip_direct },
205 { .exti = 48, .irq_parent = 138, .chip = &stm32_exti_h_chip_direct },
206 { .exti = 50, .irq_parent = 139, .chip = &stm32_exti_h_chip_direct },
207 { .exti = 52, .irq_parent = 140, .chip = &stm32_exti_h_chip_direct },
208 { .exti = 53, .irq_parent = 141, .chip = &stm32_exti_h_chip_direct },
209 { .exti = 54, .irq_parent = 135, .chip = &stm32_exti_h_chip_direct },
210 { .exti = 61, .irq_parent = 100, .chip = &stm32_exti_h_chip_direct },
211 { .exti = 65, .irq_parent = 144, .chip = &stm32_exti_h_chip },
212 { .exti = 68, .irq_parent = 143, .chip = &stm32_exti_h_chip },
213 { .exti = 70, .irq_parent = 62, .chip = &stm32_exti_h_chip_direct },
214 { .exti = 73, .irq_parent = 129, .chip = &stm32_exti_h_chip },
215 };
216
217 static const struct stm32_exti_drv_data stm32mp1_drv_data = {
218 .exti_banks = stm32mp1_exti_banks,
219 .bank_nr = ARRAY_SIZE(stm32mp1_exti_banks),
220 .desc_irqs = stm32mp1_desc_irq,
221 .irq_nr = ARRAY_SIZE(stm32mp1_desc_irq),
222 };
223
224 static const struct
stm32_exti_get_desc(const struct stm32_exti_drv_data * drv_data,irq_hw_number_t hwirq)225 stm32_desc_irq *stm32_exti_get_desc(const struct stm32_exti_drv_data *drv_data,
226 irq_hw_number_t hwirq)
227 {
228 const struct stm32_desc_irq *desc = NULL;
229 int i;
230
231 if (!drv_data->desc_irqs)
232 return NULL;
233
234 for (i = 0; i < drv_data->irq_nr; i++) {
235 desc = &drv_data->desc_irqs[i];
236 if (desc->exti == hwirq)
237 break;
238 }
239
240 return desc;
241 }
242
stm32_exti_pending(struct irq_chip_generic * gc)243 static unsigned long stm32_exti_pending(struct irq_chip_generic *gc)
244 {
245 struct stm32_exti_chip_data *chip_data = gc->private;
246 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
247 unsigned long pending;
248
249 pending = irq_reg_readl(gc, stm32_bank->rpr_ofst);
250 if (stm32_bank->fpr_ofst != UNDEF_REG)
251 pending |= irq_reg_readl(gc, stm32_bank->fpr_ofst);
252
253 return pending;
254 }
255
stm32_irq_handler(struct irq_desc * desc)256 static void stm32_irq_handler(struct irq_desc *desc)
257 {
258 struct irq_domain *domain = irq_desc_get_handler_data(desc);
259 struct irq_chip *chip = irq_desc_get_chip(desc);
260 unsigned int nbanks = domain->gc->num_chips;
261 struct irq_chip_generic *gc;
262 unsigned long pending;
263 int n, i, irq_base = 0;
264
265 chained_irq_enter(chip, desc);
266
267 for (i = 0; i < nbanks; i++, irq_base += IRQS_PER_BANK) {
268 gc = irq_get_domain_generic_chip(domain, irq_base);
269
270 while ((pending = stm32_exti_pending(gc))) {
271 for_each_set_bit(n, &pending, IRQS_PER_BANK)
272 generic_handle_domain_irq(domain, irq_base + n);
273 }
274 }
275
276 chained_irq_exit(chip, desc);
277 }
278
stm32_exti_set_type(struct irq_data * d,unsigned int type,u32 * rtsr,u32 * ftsr)279 static int stm32_exti_set_type(struct irq_data *d,
280 unsigned int type, u32 *rtsr, u32 *ftsr)
281 {
282 u32 mask = BIT(d->hwirq % IRQS_PER_BANK);
283
284 switch (type) {
285 case IRQ_TYPE_EDGE_RISING:
286 *rtsr |= mask;
287 *ftsr &= ~mask;
288 break;
289 case IRQ_TYPE_EDGE_FALLING:
290 *rtsr &= ~mask;
291 *ftsr |= mask;
292 break;
293 case IRQ_TYPE_EDGE_BOTH:
294 *rtsr |= mask;
295 *ftsr |= mask;
296 break;
297 default:
298 return -EINVAL;
299 }
300
301 return 0;
302 }
303
stm32_irq_set_type(struct irq_data * d,unsigned int type)304 static int stm32_irq_set_type(struct irq_data *d, unsigned int type)
305 {
306 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
307 struct stm32_exti_chip_data *chip_data = gc->private;
308 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
309 struct hwspinlock *hwlock = chip_data->host_data->hwlock;
310 u32 rtsr, ftsr;
311 int err;
312
313 irq_gc_lock(gc);
314
315 if (hwlock) {
316 err = hwspin_lock_timeout_in_atomic(hwlock, HWSPNLCK_TIMEOUT);
317 if (err) {
318 pr_err("%s can't get hwspinlock (%d)\n", __func__, err);
319 goto unlock;
320 }
321 }
322
323 rtsr = irq_reg_readl(gc, stm32_bank->rtsr_ofst);
324 ftsr = irq_reg_readl(gc, stm32_bank->ftsr_ofst);
325
326 err = stm32_exti_set_type(d, type, &rtsr, &ftsr);
327 if (err)
328 goto unspinlock;
329
330 irq_reg_writel(gc, rtsr, stm32_bank->rtsr_ofst);
331 irq_reg_writel(gc, ftsr, stm32_bank->ftsr_ofst);
332
333 unspinlock:
334 if (hwlock)
335 hwspin_unlock_in_atomic(hwlock);
336 unlock:
337 irq_gc_unlock(gc);
338
339 return err;
340 }
341
stm32_chip_suspend(struct stm32_exti_chip_data * chip_data,u32 wake_active)342 static void stm32_chip_suspend(struct stm32_exti_chip_data *chip_data,
343 u32 wake_active)
344 {
345 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
346 void __iomem *base = chip_data->host_data->base;
347
348 /* save rtsr, ftsr registers */
349 chip_data->rtsr_cache = readl_relaxed(base + stm32_bank->rtsr_ofst);
350 chip_data->ftsr_cache = readl_relaxed(base + stm32_bank->ftsr_ofst);
351
352 writel_relaxed(wake_active, base + stm32_bank->imr_ofst);
353 }
354
stm32_chip_resume(struct stm32_exti_chip_data * chip_data,u32 mask_cache)355 static void stm32_chip_resume(struct stm32_exti_chip_data *chip_data,
356 u32 mask_cache)
357 {
358 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
359 void __iomem *base = chip_data->host_data->base;
360
361 /* restore rtsr, ftsr, registers */
362 writel_relaxed(chip_data->rtsr_cache, base + stm32_bank->rtsr_ofst);
363 writel_relaxed(chip_data->ftsr_cache, base + stm32_bank->ftsr_ofst);
364
365 writel_relaxed(mask_cache, base + stm32_bank->imr_ofst);
366 }
367
stm32_irq_suspend(struct irq_chip_generic * gc)368 static void stm32_irq_suspend(struct irq_chip_generic *gc)
369 {
370 struct stm32_exti_chip_data *chip_data = gc->private;
371
372 irq_gc_lock(gc);
373 stm32_chip_suspend(chip_data, gc->wake_active);
374 irq_gc_unlock(gc);
375 }
376
stm32_irq_resume(struct irq_chip_generic * gc)377 static void stm32_irq_resume(struct irq_chip_generic *gc)
378 {
379 struct stm32_exti_chip_data *chip_data = gc->private;
380
381 irq_gc_lock(gc);
382 stm32_chip_resume(chip_data, gc->mask_cache);
383 irq_gc_unlock(gc);
384 }
385
stm32_exti_alloc(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs,void * data)386 static int stm32_exti_alloc(struct irq_domain *d, unsigned int virq,
387 unsigned int nr_irqs, void *data)
388 {
389 struct irq_fwspec *fwspec = data;
390 irq_hw_number_t hwirq;
391
392 hwirq = fwspec->param[0];
393
394 irq_map_generic_chip(d, virq, hwirq);
395
396 return 0;
397 }
398
stm32_exti_free(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs)399 static void stm32_exti_free(struct irq_domain *d, unsigned int virq,
400 unsigned int nr_irqs)
401 {
402 struct irq_data *data = irq_domain_get_irq_data(d, virq);
403
404 irq_domain_reset_irq_data(data);
405 }
406
407 static const struct irq_domain_ops irq_exti_domain_ops = {
408 .map = irq_map_generic_chip,
409 .alloc = stm32_exti_alloc,
410 .free = stm32_exti_free,
411 .xlate = irq_domain_xlate_twocell,
412 };
413
stm32_irq_ack(struct irq_data * d)414 static void stm32_irq_ack(struct irq_data *d)
415 {
416 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
417 struct stm32_exti_chip_data *chip_data = gc->private;
418 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
419
420 irq_gc_lock(gc);
421
422 irq_reg_writel(gc, d->mask, stm32_bank->rpr_ofst);
423 if (stm32_bank->fpr_ofst != UNDEF_REG)
424 irq_reg_writel(gc, d->mask, stm32_bank->fpr_ofst);
425
426 irq_gc_unlock(gc);
427 }
428
429 /* directly set the target bit without reading first. */
stm32_exti_write_bit(struct irq_data * d,u32 reg)430 static inline void stm32_exti_write_bit(struct irq_data *d, u32 reg)
431 {
432 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
433 void __iomem *base = chip_data->host_data->base;
434 u32 val = BIT(d->hwirq % IRQS_PER_BANK);
435
436 writel_relaxed(val, base + reg);
437 }
438
stm32_exti_set_bit(struct irq_data * d,u32 reg)439 static inline u32 stm32_exti_set_bit(struct irq_data *d, u32 reg)
440 {
441 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
442 void __iomem *base = chip_data->host_data->base;
443 u32 val;
444
445 val = readl_relaxed(base + reg);
446 val |= BIT(d->hwirq % IRQS_PER_BANK);
447 writel_relaxed(val, base + reg);
448
449 return val;
450 }
451
stm32_exti_clr_bit(struct irq_data * d,u32 reg)452 static inline u32 stm32_exti_clr_bit(struct irq_data *d, u32 reg)
453 {
454 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
455 void __iomem *base = chip_data->host_data->base;
456 u32 val;
457
458 val = readl_relaxed(base + reg);
459 val &= ~BIT(d->hwirq % IRQS_PER_BANK);
460 writel_relaxed(val, base + reg);
461
462 return val;
463 }
464
stm32_exti_h_eoi(struct irq_data * d)465 static void stm32_exti_h_eoi(struct irq_data *d)
466 {
467 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
468 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
469
470 raw_spin_lock(&chip_data->rlock);
471
472 stm32_exti_write_bit(d, stm32_bank->rpr_ofst);
473 if (stm32_bank->fpr_ofst != UNDEF_REG)
474 stm32_exti_write_bit(d, stm32_bank->fpr_ofst);
475
476 raw_spin_unlock(&chip_data->rlock);
477
478 if (d->parent_data->chip)
479 irq_chip_eoi_parent(d);
480 }
481
stm32_exti_h_mask(struct irq_data * d)482 static void stm32_exti_h_mask(struct irq_data *d)
483 {
484 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
485 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
486
487 raw_spin_lock(&chip_data->rlock);
488 chip_data->mask_cache = stm32_exti_clr_bit(d, stm32_bank->imr_ofst);
489 raw_spin_unlock(&chip_data->rlock);
490
491 if (d->parent_data->chip)
492 irq_chip_mask_parent(d);
493 }
494
stm32_exti_h_unmask(struct irq_data * d)495 static void stm32_exti_h_unmask(struct irq_data *d)
496 {
497 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
498 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
499
500 raw_spin_lock(&chip_data->rlock);
501 chip_data->mask_cache = stm32_exti_set_bit(d, stm32_bank->imr_ofst);
502 raw_spin_unlock(&chip_data->rlock);
503
504 if (d->parent_data->chip)
505 irq_chip_unmask_parent(d);
506 }
507
stm32_exti_h_set_type(struct irq_data * d,unsigned int type)508 static int stm32_exti_h_set_type(struct irq_data *d, unsigned int type)
509 {
510 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
511 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
512 struct hwspinlock *hwlock = chip_data->host_data->hwlock;
513 void __iomem *base = chip_data->host_data->base;
514 u32 rtsr, ftsr;
515 int err;
516
517 raw_spin_lock(&chip_data->rlock);
518
519 if (hwlock) {
520 err = hwspin_lock_timeout_in_atomic(hwlock, HWSPNLCK_TIMEOUT);
521 if (err) {
522 pr_err("%s can't get hwspinlock (%d)\n", __func__, err);
523 goto unlock;
524 }
525 }
526
527 rtsr = readl_relaxed(base + stm32_bank->rtsr_ofst);
528 ftsr = readl_relaxed(base + stm32_bank->ftsr_ofst);
529
530 err = stm32_exti_set_type(d, type, &rtsr, &ftsr);
531 if (err)
532 goto unspinlock;
533
534 writel_relaxed(rtsr, base + stm32_bank->rtsr_ofst);
535 writel_relaxed(ftsr, base + stm32_bank->ftsr_ofst);
536
537 unspinlock:
538 if (hwlock)
539 hwspin_unlock_in_atomic(hwlock);
540 unlock:
541 raw_spin_unlock(&chip_data->rlock);
542
543 return err;
544 }
545
stm32_exti_h_set_wake(struct irq_data * d,unsigned int on)546 static int stm32_exti_h_set_wake(struct irq_data *d, unsigned int on)
547 {
548 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
549 u32 mask = BIT(d->hwirq % IRQS_PER_BANK);
550
551 raw_spin_lock(&chip_data->rlock);
552
553 if (on)
554 chip_data->wake_active |= mask;
555 else
556 chip_data->wake_active &= ~mask;
557
558 raw_spin_unlock(&chip_data->rlock);
559
560 return 0;
561 }
562
stm32_exti_h_set_affinity(struct irq_data * d,const struct cpumask * dest,bool force)563 static int stm32_exti_h_set_affinity(struct irq_data *d,
564 const struct cpumask *dest, bool force)
565 {
566 if (d->parent_data->chip)
567 return irq_chip_set_affinity_parent(d, dest, force);
568
569 return -EINVAL;
570 }
571
stm32_exti_h_suspend(void)572 static int __maybe_unused stm32_exti_h_suspend(void)
573 {
574 struct stm32_exti_chip_data *chip_data;
575 int i;
576
577 for (i = 0; i < stm32_host_data->drv_data->bank_nr; i++) {
578 chip_data = &stm32_host_data->chips_data[i];
579 raw_spin_lock(&chip_data->rlock);
580 stm32_chip_suspend(chip_data, chip_data->wake_active);
581 raw_spin_unlock(&chip_data->rlock);
582 }
583
584 return 0;
585 }
586
stm32_exti_h_resume(void)587 static void __maybe_unused stm32_exti_h_resume(void)
588 {
589 struct stm32_exti_chip_data *chip_data;
590 int i;
591
592 for (i = 0; i < stm32_host_data->drv_data->bank_nr; i++) {
593 chip_data = &stm32_host_data->chips_data[i];
594 raw_spin_lock(&chip_data->rlock);
595 stm32_chip_resume(chip_data, chip_data->mask_cache);
596 raw_spin_unlock(&chip_data->rlock);
597 }
598 }
599
600 static struct syscore_ops stm32_exti_h_syscore_ops = {
601 #ifdef CONFIG_PM_SLEEP
602 .suspend = stm32_exti_h_suspend,
603 .resume = stm32_exti_h_resume,
604 #endif
605 };
606
stm32_exti_h_syscore_init(struct stm32_exti_host_data * host_data)607 static void stm32_exti_h_syscore_init(struct stm32_exti_host_data *host_data)
608 {
609 stm32_host_data = host_data;
610 register_syscore_ops(&stm32_exti_h_syscore_ops);
611 }
612
stm32_exti_h_syscore_deinit(void)613 static void stm32_exti_h_syscore_deinit(void)
614 {
615 unregister_syscore_ops(&stm32_exti_h_syscore_ops);
616 }
617
stm32_exti_h_retrigger(struct irq_data * d)618 static int stm32_exti_h_retrigger(struct irq_data *d)
619 {
620 struct stm32_exti_chip_data *chip_data = irq_data_get_irq_chip_data(d);
621 const struct stm32_exti_bank *stm32_bank = chip_data->reg_bank;
622 void __iomem *base = chip_data->host_data->base;
623 u32 mask = BIT(d->hwirq % IRQS_PER_BANK);
624
625 writel_relaxed(mask, base + stm32_bank->swier_ofst);
626
627 return 0;
628 }
629
630 static struct irq_chip stm32_exti_h_chip = {
631 .name = "stm32-exti-h",
632 .irq_eoi = stm32_exti_h_eoi,
633 .irq_mask = stm32_exti_h_mask,
634 .irq_unmask = stm32_exti_h_unmask,
635 .irq_retrigger = stm32_exti_h_retrigger,
636 .irq_set_type = stm32_exti_h_set_type,
637 .irq_set_wake = stm32_exti_h_set_wake,
638 .flags = IRQCHIP_MASK_ON_SUSPEND,
639 .irq_set_affinity = IS_ENABLED(CONFIG_SMP) ? stm32_exti_h_set_affinity : NULL,
640 };
641
642 static struct irq_chip stm32_exti_h_chip_direct = {
643 .name = "stm32-exti-h-direct",
644 .irq_eoi = irq_chip_eoi_parent,
645 .irq_ack = irq_chip_ack_parent,
646 .irq_mask = irq_chip_mask_parent,
647 .irq_unmask = irq_chip_unmask_parent,
648 .irq_retrigger = irq_chip_retrigger_hierarchy,
649 .irq_set_type = irq_chip_set_type_parent,
650 .irq_set_wake = stm32_exti_h_set_wake,
651 .flags = IRQCHIP_MASK_ON_SUSPEND,
652 .irq_set_affinity = IS_ENABLED(CONFIG_SMP) ? irq_chip_set_affinity_parent : NULL,
653 };
654
stm32_exti_h_domain_alloc(struct irq_domain * dm,unsigned int virq,unsigned int nr_irqs,void * data)655 static int stm32_exti_h_domain_alloc(struct irq_domain *dm,
656 unsigned int virq,
657 unsigned int nr_irqs, void *data)
658 {
659 struct stm32_exti_host_data *host_data = dm->host_data;
660 struct stm32_exti_chip_data *chip_data;
661 const struct stm32_desc_irq *desc;
662 struct irq_fwspec *fwspec = data;
663 struct irq_fwspec p_fwspec;
664 irq_hw_number_t hwirq;
665 int bank;
666
667 hwirq = fwspec->param[0];
668 bank = hwirq / IRQS_PER_BANK;
669 chip_data = &host_data->chips_data[bank];
670
671
672 desc = stm32_exti_get_desc(host_data->drv_data, hwirq);
673 if (!desc)
674 return -EINVAL;
675
676 irq_domain_set_hwirq_and_chip(dm, virq, hwirq, desc->chip,
677 chip_data);
678 if (desc->irq_parent) {
679 p_fwspec.fwnode = dm->parent->fwnode;
680 p_fwspec.param_count = 3;
681 p_fwspec.param[0] = GIC_SPI;
682 p_fwspec.param[1] = desc->irq_parent;
683 p_fwspec.param[2] = IRQ_TYPE_LEVEL_HIGH;
684
685 return irq_domain_alloc_irqs_parent(dm, virq, 1, &p_fwspec);
686 }
687
688 return 0;
689 }
690
691 static struct
stm32_exti_host_init(const struct stm32_exti_drv_data * dd,struct device_node * node)692 stm32_exti_host_data *stm32_exti_host_init(const struct stm32_exti_drv_data *dd,
693 struct device_node *node)
694 {
695 struct stm32_exti_host_data *host_data;
696
697 host_data = kzalloc(sizeof(*host_data), GFP_KERNEL);
698 if (!host_data)
699 return NULL;
700
701 host_data->drv_data = dd;
702 host_data->chips_data = kcalloc(dd->bank_nr,
703 sizeof(struct stm32_exti_chip_data),
704 GFP_KERNEL);
705 if (!host_data->chips_data)
706 goto free_host_data;
707
708 host_data->base = of_iomap(node, 0);
709 if (!host_data->base) {
710 pr_err("%pOF: Unable to map registers\n", node);
711 goto free_chips_data;
712 }
713
714 stm32_host_data = host_data;
715
716 return host_data;
717
718 free_chips_data:
719 kfree(host_data->chips_data);
720 free_host_data:
721 kfree(host_data);
722
723 return NULL;
724 }
725
726 static struct
stm32_exti_chip_init(struct stm32_exti_host_data * h_data,u32 bank_idx,struct device_node * node)727 stm32_exti_chip_data *stm32_exti_chip_init(struct stm32_exti_host_data *h_data,
728 u32 bank_idx,
729 struct device_node *node)
730 {
731 const struct stm32_exti_bank *stm32_bank;
732 struct stm32_exti_chip_data *chip_data;
733 void __iomem *base = h_data->base;
734
735 stm32_bank = h_data->drv_data->exti_banks[bank_idx];
736 chip_data = &h_data->chips_data[bank_idx];
737 chip_data->host_data = h_data;
738 chip_data->reg_bank = stm32_bank;
739
740 raw_spin_lock_init(&chip_data->rlock);
741
742 /*
743 * This IP has no reset, so after hot reboot we should
744 * clear registers to avoid residue
745 */
746 writel_relaxed(0, base + stm32_bank->imr_ofst);
747 writel_relaxed(0, base + stm32_bank->emr_ofst);
748
749 pr_info("%pOF: bank%d\n", node, bank_idx);
750
751 return chip_data;
752 }
753
stm32_exti_init(const struct stm32_exti_drv_data * drv_data,struct device_node * node)754 static int __init stm32_exti_init(const struct stm32_exti_drv_data *drv_data,
755 struct device_node *node)
756 {
757 struct stm32_exti_host_data *host_data;
758 unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
759 int nr_irqs, ret, i;
760 struct irq_chip_generic *gc;
761 struct irq_domain *domain;
762
763 host_data = stm32_exti_host_init(drv_data, node);
764 if (!host_data)
765 return -ENOMEM;
766
767 domain = irq_domain_add_linear(node, drv_data->bank_nr * IRQS_PER_BANK,
768 &irq_exti_domain_ops, NULL);
769 if (!domain) {
770 pr_err("%pOFn: Could not register interrupt domain.\n",
771 node);
772 ret = -ENOMEM;
773 goto out_unmap;
774 }
775
776 ret = irq_alloc_domain_generic_chips(domain, IRQS_PER_BANK, 1, "exti",
777 handle_edge_irq, clr, 0, 0);
778 if (ret) {
779 pr_err("%pOF: Could not allocate generic interrupt chip.\n",
780 node);
781 goto out_free_domain;
782 }
783
784 for (i = 0; i < drv_data->bank_nr; i++) {
785 const struct stm32_exti_bank *stm32_bank;
786 struct stm32_exti_chip_data *chip_data;
787
788 stm32_bank = drv_data->exti_banks[i];
789 chip_data = stm32_exti_chip_init(host_data, i, node);
790
791 gc = irq_get_domain_generic_chip(domain, i * IRQS_PER_BANK);
792
793 gc->reg_base = host_data->base;
794 gc->chip_types->type = IRQ_TYPE_EDGE_BOTH;
795 gc->chip_types->chip.irq_ack = stm32_irq_ack;
796 gc->chip_types->chip.irq_mask = irq_gc_mask_clr_bit;
797 gc->chip_types->chip.irq_unmask = irq_gc_mask_set_bit;
798 gc->chip_types->chip.irq_set_type = stm32_irq_set_type;
799 gc->chip_types->chip.irq_set_wake = irq_gc_set_wake;
800 gc->suspend = stm32_irq_suspend;
801 gc->resume = stm32_irq_resume;
802 gc->wake_enabled = IRQ_MSK(IRQS_PER_BANK);
803
804 gc->chip_types->regs.mask = stm32_bank->imr_ofst;
805 gc->private = (void *)chip_data;
806 }
807
808 nr_irqs = of_irq_count(node);
809 for (i = 0; i < nr_irqs; i++) {
810 unsigned int irq = irq_of_parse_and_map(node, i);
811
812 irq_set_handler_data(irq, domain);
813 irq_set_chained_handler(irq, stm32_irq_handler);
814 }
815
816 return 0;
817
818 out_free_domain:
819 irq_domain_remove(domain);
820 out_unmap:
821 iounmap(host_data->base);
822 kfree(host_data->chips_data);
823 kfree(host_data);
824 return ret;
825 }
826
827 static const struct irq_domain_ops stm32_exti_h_domain_ops = {
828 .alloc = stm32_exti_h_domain_alloc,
829 .free = irq_domain_free_irqs_common,
830 .xlate = irq_domain_xlate_twocell,
831 };
832
stm32_exti_remove_irq(void * data)833 static void stm32_exti_remove_irq(void *data)
834 {
835 struct irq_domain *domain = data;
836
837 irq_domain_remove(domain);
838 }
839
stm32_exti_remove(struct platform_device * pdev)840 static int stm32_exti_remove(struct platform_device *pdev)
841 {
842 stm32_exti_h_syscore_deinit();
843 return 0;
844 }
845
stm32_exti_probe(struct platform_device * pdev)846 static int stm32_exti_probe(struct platform_device *pdev)
847 {
848 int ret, i;
849 struct device *dev = &pdev->dev;
850 struct device_node *np = dev->of_node;
851 struct irq_domain *parent_domain, *domain;
852 struct stm32_exti_host_data *host_data;
853 const struct stm32_exti_drv_data *drv_data;
854 struct resource *res;
855
856 host_data = devm_kzalloc(dev, sizeof(*host_data), GFP_KERNEL);
857 if (!host_data)
858 return -ENOMEM;
859
860 /* check for optional hwspinlock which may be not available yet */
861 ret = of_hwspin_lock_get_id(np, 0);
862 if (ret == -EPROBE_DEFER)
863 /* hwspinlock framework not yet ready */
864 return ret;
865
866 if (ret >= 0) {
867 host_data->hwlock = devm_hwspin_lock_request_specific(dev, ret);
868 if (!host_data->hwlock) {
869 dev_err(dev, "Failed to request hwspinlock\n");
870 return -EINVAL;
871 }
872 } else if (ret != -ENOENT) {
873 /* note: ENOENT is a valid case (means 'no hwspinlock') */
874 dev_err(dev, "Failed to get hwspinlock\n");
875 return ret;
876 }
877
878 /* initialize host_data */
879 drv_data = of_device_get_match_data(dev);
880 if (!drv_data) {
881 dev_err(dev, "no of match data\n");
882 return -ENODEV;
883 }
884 host_data->drv_data = drv_data;
885
886 host_data->chips_data = devm_kcalloc(dev, drv_data->bank_nr,
887 sizeof(*host_data->chips_data),
888 GFP_KERNEL);
889 if (!host_data->chips_data)
890 return -ENOMEM;
891
892 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
893 host_data->base = devm_ioremap_resource(dev, res);
894 if (IS_ERR(host_data->base))
895 return PTR_ERR(host_data->base);
896
897 for (i = 0; i < drv_data->bank_nr; i++)
898 stm32_exti_chip_init(host_data, i, np);
899
900 parent_domain = irq_find_host(of_irq_find_parent(np));
901 if (!parent_domain) {
902 dev_err(dev, "GIC interrupt-parent not found\n");
903 return -EINVAL;
904 }
905
906 domain = irq_domain_add_hierarchy(parent_domain, 0,
907 drv_data->bank_nr * IRQS_PER_BANK,
908 np, &stm32_exti_h_domain_ops,
909 host_data);
910
911 if (!domain) {
912 dev_err(dev, "Could not register exti domain\n");
913 return -ENOMEM;
914 }
915
916 ret = devm_add_action_or_reset(dev, stm32_exti_remove_irq, domain);
917 if (ret)
918 return ret;
919
920 stm32_exti_h_syscore_init(host_data);
921
922 return 0;
923 }
924
925 /* platform driver only for MP1 */
926 static const struct of_device_id stm32_exti_ids[] = {
927 { .compatible = "st,stm32mp1-exti", .data = &stm32mp1_drv_data},
928 {},
929 };
930 MODULE_DEVICE_TABLE(of, stm32_exti_ids);
931
932 static struct platform_driver stm32_exti_driver = {
933 .probe = stm32_exti_probe,
934 .remove = stm32_exti_remove,
935 .driver = {
936 .name = "stm32_exti",
937 .of_match_table = stm32_exti_ids,
938 },
939 };
940
stm32_exti_arch_init(void)941 static int __init stm32_exti_arch_init(void)
942 {
943 return platform_driver_register(&stm32_exti_driver);
944 }
945
stm32_exti_arch_exit(void)946 static void __exit stm32_exti_arch_exit(void)
947 {
948 return platform_driver_unregister(&stm32_exti_driver);
949 }
950
951 arch_initcall(stm32_exti_arch_init);
952 module_exit(stm32_exti_arch_exit);
953
954 /* no platform driver for F4 and H7 */
stm32f4_exti_of_init(struct device_node * np,struct device_node * parent)955 static int __init stm32f4_exti_of_init(struct device_node *np,
956 struct device_node *parent)
957 {
958 return stm32_exti_init(&stm32f4xx_drv_data, np);
959 }
960
961 IRQCHIP_DECLARE(stm32f4_exti, "st,stm32-exti", stm32f4_exti_of_init);
962
stm32h7_exti_of_init(struct device_node * np,struct device_node * parent)963 static int __init stm32h7_exti_of_init(struct device_node *np,
964 struct device_node *parent)
965 {
966 return stm32_exti_init(&stm32h7xx_drv_data, np);
967 }
968
969 IRQCHIP_DECLARE(stm32h7_exti, "st,stm32h7-exti", stm32h7_exti_of_init);
970