]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-pxa/irq.c
ARM / PXA: Use struct syscore_ops for "core" power management
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-pxa / irq.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/mach-pxa/irq.c
3 *
e3630db1 4 * Generic PXA IRQ handling
1da177e4
LT
5 *
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/interrupt.h>
2eaa03b5 18#include <linux/syscore_ops.h>
a79a9ad9
HZ
19#include <linux/io.h>
20#include <linux/irq.h>
1da177e4 21
a09e64fb 22#include <mach/hardware.h>
a79a9ad9 23#include <mach/irqs.h>
a58fbcd8 24#include <mach/gpio.h>
1da177e4
LT
25
26#include "generic.h"
27
a79a9ad9
HZ
28#define IRQ_BASE (void __iomem *)io_p2v(0x40d00000)
29
30#define ICIP (0x000)
31#define ICMR (0x004)
32#define ICLR (0x008)
33#define ICFR (0x00c)
34#define ICPR (0x010)
35#define ICCR (0x014)
36#define ICHP (0x018)
37#define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
38 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
39 (0x144 + (((i) - 64) << 2)))
40#define IPR_VALID (1 << 31)
41#define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
c482ae4d 42
a79a9ad9 43#define MAX_INTERNAL_IRQS 128
1da177e4
LT
44
45/*
46 * This is for peripheral IRQs internal to the PXA chip.
47 */
48
f6fb7af4 49static int pxa_internal_irq_nr;
50
bb71bdd3
HZ
51static inline int cpu_has_ipr(void)
52{
53 return !cpu_is_pxa25x();
54}
55
a1015a15
EM
56static inline void __iomem *irq_base(int i)
57{
58 static unsigned long phys_base[] = {
59 0x40d00000,
60 0x40d0009c,
61 0x40d00130,
62 };
63
64 return (void __iomem *)io_p2v(phys_base[i]);
65}
66
a3f4c927 67static void pxa_mask_irq(struct irq_data *d)
1da177e4 68{
a3f4c927 69 void __iomem *base = irq_data_get_irq_chip_data(d);
a79a9ad9
HZ
70 uint32_t icmr = __raw_readl(base + ICMR);
71
a3f4c927 72 icmr &= ~(1 << IRQ_BIT(d->irq));
a79a9ad9 73 __raw_writel(icmr, base + ICMR);
1da177e4
LT
74}
75
a3f4c927 76static void pxa_unmask_irq(struct irq_data *d)
1da177e4 77{
a3f4c927 78 void __iomem *base = irq_data_get_irq_chip_data(d);
a79a9ad9
HZ
79 uint32_t icmr = __raw_readl(base + ICMR);
80
a3f4c927 81 icmr |= 1 << IRQ_BIT(d->irq);
a79a9ad9 82 __raw_writel(icmr, base + ICMR);
1da177e4
LT
83}
84
f6fb7af4 85static struct irq_chip pxa_internal_irq_chip = {
38c677cb 86 .name = "SC",
a3f4c927
LB
87 .irq_ack = pxa_mask_irq,
88 .irq_mask = pxa_mask_irq,
89 .irq_unmask = pxa_unmask_irq,
1da177e4
LT
90};
91
a58fbcd8
EM
92/*
93 * GPIO IRQs for GPIO 0 and 1
94 */
a3f4c927 95static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type)
a58fbcd8 96{
a3f4c927 97 int gpio = d->irq - IRQ_GPIO0;
a58fbcd8
EM
98
99 if (__gpio_is_occupied(gpio)) {
100 pr_err("%s failed: GPIO is configured\n", __func__);
101 return -EINVAL;
102 }
103
104 if (type & IRQ_TYPE_EDGE_RISING)
105 GRER0 |= GPIO_bit(gpio);
106 else
107 GRER0 &= ~GPIO_bit(gpio);
108
109 if (type & IRQ_TYPE_EDGE_FALLING)
110 GFER0 |= GPIO_bit(gpio);
111 else
112 GFER0 &= ~GPIO_bit(gpio);
113
114 return 0;
115}
116
a3f4c927 117static void pxa_ack_low_gpio(struct irq_data *d)
a58fbcd8 118{
a3f4c927 119 GEDR0 = (1 << (d->irq - IRQ_GPIO0));
a58fbcd8
EM
120}
121
a58fbcd8
EM
122static struct irq_chip pxa_low_gpio_chip = {
123 .name = "GPIO-l",
a3f4c927 124 .irq_ack = pxa_ack_low_gpio,
a1015a15
EM
125 .irq_mask = pxa_mask_irq,
126 .irq_unmask = pxa_unmask_irq,
a3f4c927 127 .irq_set_type = pxa_set_low_gpio_type,
a58fbcd8
EM
128};
129
130static void __init pxa_init_low_gpio_irq(set_wake_t fn)
131{
132 int irq;
133
134 /* clear edge detection on GPIO 0 and 1 */
135 GFER0 &= ~0x3;
136 GRER0 &= ~0x3;
137 GEDR0 = 0x3;
138
139 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
f38c02f3
TG
140 irq_set_chip_and_handler(irq, &pxa_low_gpio_chip,
141 handle_edge_irq);
9323f261 142 irq_set_chip_data(irq, irq_base(0));
a58fbcd8
EM
143 set_irq_flags(irq, IRQF_VALID);
144 }
145
a3f4c927 146 pxa_low_gpio_chip.irq_set_wake = fn;
a58fbcd8
EM
147}
148
b9e25ace 149void __init pxa_init_irq(int irq_nr, set_wake_t fn)
53665a50 150{
a79a9ad9 151 int irq, i, n;
53665a50 152
c482ae4d
HZ
153 BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
154
f6fb7af4 155 pxa_internal_irq_nr = irq_nr;
53665a50 156
a79a9ad9 157 for (n = 0; n < irq_nr; n += 32) {
1b624fb6 158 void __iomem *base = irq_base(n >> 5);
a79a9ad9
HZ
159
160 __raw_writel(0, base + ICMR); /* disable all IRQs */
161 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
162 for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
163 /* initialize interrupt priority */
164 if (cpu_has_ipr())
165 __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
166
167 irq = PXA_IRQ(i);
f38c02f3
TG
168 irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
169 handle_level_irq);
9323f261 170 irq_set_chip_data(irq, base);
a79a9ad9
HZ
171 set_irq_flags(irq, IRQF_VALID);
172 }
d2c37068
HZ
173 }
174
53665a50 175 /* only unmasked interrupts kick us out of idle */
a79a9ad9 176 __raw_writel(1, irq_base(0) + ICCR);
1da177e4 177
a3f4c927 178 pxa_internal_irq_chip.irq_set_wake = fn;
a58fbcd8 179 pxa_init_low_gpio_irq(fn);
c95530c7 180}
c0165504 181
182#ifdef CONFIG_PM
c482ae4d
HZ
183static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
184static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
c0165504 185
2eaa03b5 186static int pxa_irq_suspend(void)
c0165504 187{
a79a9ad9
HZ
188 int i;
189
1b624fb6 190 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
a79a9ad9 191 void __iomem *base = irq_base(i);
f6fb7af4 192
a79a9ad9
HZ
193 saved_icmr[i] = __raw_readl(base + ICMR);
194 __raw_writel(0, base + ICMR);
c0165504 195 }
c70f5a60 196
bb71bdd3 197 if (cpu_has_ipr()) {
c70f5a60 198 for (i = 0; i < pxa_internal_irq_nr; i++)
a79a9ad9 199 saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
c70f5a60 200 }
c0165504 201
202 return 0;
203}
204
2eaa03b5 205static void pxa_irq_resume(void)
c0165504 206{
a79a9ad9 207 int i;
f6fb7af4 208
1b624fb6 209 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
a79a9ad9 210 void __iomem *base = irq_base(i);
c70f5a60 211
a79a9ad9
HZ
212 __raw_writel(saved_icmr[i], base + ICMR);
213 __raw_writel(0, base + ICLR);
c0165504 214 }
215
57879b8c 216 if (cpu_has_ipr())
a79a9ad9
HZ
217 for (i = 0; i < pxa_internal_irq_nr; i++)
218 __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
219
220 __raw_writel(1, IRQ_BASE + ICCR);
c0165504 221}
222#else
223#define pxa_irq_suspend NULL
224#define pxa_irq_resume NULL
225#endif
226
2eaa03b5 227struct syscore_ops pxa_irq_syscore_ops = {
c0165504 228 .suspend = pxa_irq_suspend,
229 .resume = pxa_irq_resume,
230};