xref: /openbmc/linux/drivers/irqchip/irq-sa11x0.c (revision c62af70f)
1 /*
2  * Copyright (C) 2015 Dmitry Eremin-Solenikov
3  * Copyright (C) 1999-2001 Nicolas Pitre
4  *
5  * Generic IRQ handling for the SA11x0.
6  *
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.
10  */
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>
19 
20 #include <soc/sa1100/pwer.h>
21 
22 #include <asm/exception.h>
23 
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.     */
30 
31 static void __iomem *iobase;
32 
33 /*
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.
36  */
37 static void sa1100_mask_irq(struct irq_data *d)
38 {
39 	u32 reg;
40 
41 	reg = readl_relaxed(iobase + ICMR);
42 	reg &= ~BIT(d->hwirq);
43 	writel_relaxed(reg, iobase + ICMR);
44 }
45 
46 static void sa1100_unmask_irq(struct irq_data *d)
47 {
48 	u32 reg;
49 
50 	reg = readl_relaxed(iobase + ICMR);
51 	reg |= BIT(d->hwirq);
52 	writel_relaxed(reg, iobase + ICMR);
53 }
54 
55 static int sa1100_set_wake(struct irq_data *d, unsigned int on)
56 {
57 	return sa11x0_sc_set_wake(d->hwirq, on);
58 }
59 
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,
66 };
67 
68 static int sa1100_normal_irqdomain_map(struct irq_domain *d,
69 		unsigned int irq, irq_hw_number_t hwirq)
70 {
71 	irq_set_chip_and_handler(irq, &sa1100_normal_chip,
72 				 handle_level_irq);
73 	set_irq_flags(irq, IRQF_VALID);
74 
75 	return 0;
76 }
77 
78 static const struct irq_domain_ops sa1100_normal_irqdomain_ops = {
79 	.map = sa1100_normal_irqdomain_map,
80 	.xlate = irq_domain_xlate_onetwocell,
81 };
82 
83 static struct irq_domain *sa1100_normal_irqdomain;
84 
85 static struct sa1100irq_state {
86 	unsigned int	saved;
87 	unsigned int	icmr;
88 	unsigned int	iclr;
89 	unsigned int	iccr;
90 } sa1100irq_state;
91 
92 static int sa1100irq_suspend(void)
93 {
94 	struct sa1100irq_state *st = &sa1100irq_state;
95 
96 	st->saved = 1;
97 	st->icmr = readl_relaxed(iobase + ICMR);
98 	st->iclr = readl_relaxed(iobase + ICLR);
99 	st->iccr = readl_relaxed(iobase + ICCR);
100 
101 	/*
102 	 * Disable all GPIO-based interrupts.
103 	 */
104 	writel_relaxed(st->icmr & 0xfffff000, iobase + ICMR);
105 
106 	return 0;
107 }
108 
109 static void sa1100irq_resume(void)
110 {
111 	struct sa1100irq_state *st = &sa1100irq_state;
112 
113 	if (st->saved) {
114 		writel_relaxed(st->iccr, iobase + ICCR);
115 		writel_relaxed(st->iclr, iobase + ICLR);
116 
117 		writel_relaxed(st->icmr, iobase + ICMR);
118 	}
119 }
120 
121 static struct syscore_ops sa1100irq_syscore_ops = {
122 	.suspend	= sa1100irq_suspend,
123 	.resume		= sa1100irq_resume,
124 };
125 
126 static int __init sa1100irq_init_devicefs(void)
127 {
128 	register_syscore_ops(&sa1100irq_syscore_ops);
129 	return 0;
130 }
131 
132 device_initcall(sa1100irq_init_devicefs);
133 
134 static asmlinkage void __exception_irq_entry
135 sa1100_handle_irq(struct pt_regs *regs)
136 {
137 	uint32_t icip, icmr, mask;
138 
139 	do {
140 		icip = readl_relaxed(iobase + ICIP);
141 		icmr = readl_relaxed(iobase + ICMR);
142 		mask = icip & icmr;
143 
144 		if (mask == 0)
145 			break;
146 
147 		handle_domain_irq(sa1100_normal_irqdomain,
148 				ffs(mask) - 1, regs);
149 	} while (1);
150 }
151 
152 void __init sa11x0_init_irq_nodt(int irq_start, resource_size_t io_start)
153 {
154 	iobase = ioremap(io_start, SZ_64K);
155 	if (WARN_ON(!iobase))
156 		return;
157 
158 	/* disable all IRQs */
159 	writel_relaxed(0, iobase + ICMR);
160 
161 	/* all IRQs are IRQ, not FIQ */
162 	writel_relaxed(0, iobase + ICLR);
163 
164 	/*
165 	 * Whatever the doc says, this has to be set for the wait-on-irq
166 	 * instruction to work... on a SA1100 rev 9 at least.
167 	 */
168 	writel_relaxed(1, iobase + ICCR);
169 
170 	sa1100_normal_irqdomain = irq_domain_add_simple(NULL,
171 			32, irq_start,
172 			&sa1100_normal_irqdomain_ops, NULL);
173 
174 	set_handle_irq(sa1100_handle_irq);
175 }
176