Linux 4.14.110
[linux-stable.git] / drivers / irqchip / irq-sa11x0.c
blob61bb28d7b19b9a11776b6563293a6e2fd281aa0f
1 /*
2 * Copyright (C) 2015 Dmitry Eremin-Solenikov
3 * Copyright (C) 1999-2001 Nicolas Pitre
5 * Generic IRQ handling for the SA11x0.
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.
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/interrupt.h>
14 #include <linux/io.h>
15 #include <linux/irq.h>
16 #include <linux/irqdomain.h>
17 #include <linux/syscore_ops.h>
18 #include <linux/irqchip/irq-sa11x0.h>
20 #include <soc/sa1100/pwer.h>
22 #include <asm/exception.h>
24 #define ICIP 0x00 /* IC IRQ Pending reg. */
25 #define ICMR 0x04 /* IC Mask Reg. */
26 #define ICLR 0x08 /* IC Level Reg. */
27 #define ICCR 0x0C /* IC Control Reg. */
28 #define ICFP 0x10 /* IC FIQ Pending reg. */
29 #define ICPR 0x20 /* IC Pending Reg. */
31 static void __iomem *iobase;
34 * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
35 * this is for internal IRQs i.e. from IRQ LCD to RTCAlrm.
37 static void sa1100_mask_irq(struct irq_data *d)
39 u32 reg;
41 reg = readl_relaxed(iobase + ICMR);
42 reg &= ~BIT(d->hwirq);
43 writel_relaxed(reg, iobase + ICMR);
46 static void sa1100_unmask_irq(struct irq_data *d)
48 u32 reg;
50 reg = readl_relaxed(iobase + ICMR);
51 reg |= BIT(d->hwirq);
52 writel_relaxed(reg, iobase + ICMR);
55 static int sa1100_set_wake(struct irq_data *d, unsigned int on)
57 return sa11x0_sc_set_wake(d->hwirq, on);
60 static struct irq_chip sa1100_normal_chip = {
61 .name = "SC",
62 .irq_ack = sa1100_mask_irq,
63 .irq_mask = sa1100_mask_irq,
64 .irq_unmask = sa1100_unmask_irq,
65 .irq_set_wake = sa1100_set_wake,
68 static int sa1100_normal_irqdomain_map(struct irq_domain *d,
69 unsigned int irq, irq_hw_number_t hwirq)
71 irq_set_chip_and_handler(irq, &sa1100_normal_chip,
72 handle_level_irq);
74 return 0;
77 static const struct irq_domain_ops sa1100_normal_irqdomain_ops = {
78 .map = sa1100_normal_irqdomain_map,
79 .xlate = irq_domain_xlate_onetwocell,
82 static struct irq_domain *sa1100_normal_irqdomain;
84 static struct sa1100irq_state {
85 unsigned int saved;
86 unsigned int icmr;
87 unsigned int iclr;
88 unsigned int iccr;
89 } sa1100irq_state;
91 static int sa1100irq_suspend(void)
93 struct sa1100irq_state *st = &sa1100irq_state;
95 st->saved = 1;
96 st->icmr = readl_relaxed(iobase + ICMR);
97 st->iclr = readl_relaxed(iobase + ICLR);
98 st->iccr = readl_relaxed(iobase + ICCR);
101 * Disable all GPIO-based interrupts.
103 writel_relaxed(st->icmr & 0xfffff000, iobase + ICMR);
105 return 0;
108 static void sa1100irq_resume(void)
110 struct sa1100irq_state *st = &sa1100irq_state;
112 if (st->saved) {
113 writel_relaxed(st->iccr, iobase + ICCR);
114 writel_relaxed(st->iclr, iobase + ICLR);
116 writel_relaxed(st->icmr, iobase + ICMR);
120 static struct syscore_ops sa1100irq_syscore_ops = {
121 .suspend = sa1100irq_suspend,
122 .resume = sa1100irq_resume,
125 static int __init sa1100irq_init_devicefs(void)
127 register_syscore_ops(&sa1100irq_syscore_ops);
128 return 0;
131 device_initcall(sa1100irq_init_devicefs);
133 static asmlinkage void __exception_irq_entry
134 sa1100_handle_irq(struct pt_regs *regs)
136 uint32_t icip, icmr, mask;
138 do {
139 icip = readl_relaxed(iobase + ICIP);
140 icmr = readl_relaxed(iobase + ICMR);
141 mask = icip & icmr;
143 if (mask == 0)
144 break;
146 handle_domain_irq(sa1100_normal_irqdomain,
147 ffs(mask) - 1, regs);
148 } while (1);
151 void __init sa11x0_init_irq_nodt(int irq_start, resource_size_t io_start)
153 iobase = ioremap(io_start, SZ_64K);
154 if (WARN_ON(!iobase))
155 return;
157 /* disable all IRQs */
158 writel_relaxed(0, iobase + ICMR);
160 /* all IRQs are IRQ, not FIQ */
161 writel_relaxed(0, iobase + ICLR);
164 * Whatever the doc says, this has to be set for the wait-on-irq
165 * instruction to work... on a SA1100 rev 9 at least.
167 writel_relaxed(1, iobase + ICCR);
169 sa1100_normal_irqdomain = irq_domain_add_simple(NULL,
170 32, irq_start,
171 &sa1100_normal_irqdomain_ops, NULL);
173 set_handle_irq(sa1100_handle_irq);