]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/irqchip/irq-sa11x0.c
Merge tag 'pci-v4.10-fixes-4' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[mirror_ubuntu-zesty-kernel.git] / drivers / irqchip / irq-sa11x0.c
CommitLineData
1da177e4 1/*
85e6f097 2 * Copyright (C) 2015 Dmitry Eremin-Solenikov
1da177e4
LT
3 * Copyright (C) 1999-2001 Nicolas Pitre
4 *
85e6f097 5 * Generic IRQ handling for the SA11x0.
1da177e4
LT
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>
119c641c 13#include <linux/interrupt.h>
3169663a 14#include <linux/io.h>
119c641c 15#include <linux/irq.h>
1eca42b4 16#include <linux/irqdomain.h>
90533980 17#include <linux/syscore_ops.h>
85e6f097 18#include <linux/irqchip/irq-sa11x0.h>
1da177e4 19
a657d7f6 20#include <soc/sa1100/pwer.h>
1da177e4 21
affcab32 22#include <asm/exception.h>
1da177e4 23
60c06c4c
DES
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. */
1da177e4 30
60c06c4c 31static void __iomem *iobase;
1da177e4 32
ab71f99f
DES
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 */
37static void sa1100_mask_irq(struct irq_data *d)
38{
60c06c4c
DES
39 u32 reg;
40
41 reg = readl_relaxed(iobase + ICMR);
42 reg &= ~BIT(d->hwirq);
43 writel_relaxed(reg, iobase + ICMR);
ab71f99f
DES
44}
45
46static void sa1100_unmask_irq(struct irq_data *d)
47{
60c06c4c
DES
48 u32 reg;
49
50 reg = readl_relaxed(iobase + ICMR);
51 reg |= BIT(d->hwirq);
52 writel_relaxed(reg, iobase + ICMR);
ab71f99f
DES
53}
54
ab71f99f
DES
55static int sa1100_set_wake(struct irq_data *d, unsigned int on)
56{
a657d7f6 57 return sa11x0_sc_set_wake(d->hwirq, on);
ab71f99f
DES
58}
59
60static 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
68static 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);
ab71f99f
DES
73
74 return 0;
75}
76
9827e8e5 77static const struct irq_domain_ops sa1100_normal_irqdomain_ops = {
ab71f99f
DES
78 .map = sa1100_normal_irqdomain_map,
79 .xlate = irq_domain_xlate_onetwocell,
80};
81
82static struct irq_domain *sa1100_normal_irqdomain;
83
1da177e4
LT
84static struct sa1100irq_state {
85 unsigned int saved;
86 unsigned int icmr;
87 unsigned int iclr;
88 unsigned int iccr;
89} sa1100irq_state;
90
90533980 91static int sa1100irq_suspend(void)
1da177e4
LT
92{
93 struct sa1100irq_state *st = &sa1100irq_state;
94
95 st->saved = 1;
60c06c4c
DES
96 st->icmr = readl_relaxed(iobase + ICMR);
97 st->iclr = readl_relaxed(iobase + ICLR);
98 st->iccr = readl_relaxed(iobase + ICCR);
1da177e4
LT
99
100 /*
101 * Disable all GPIO-based interrupts.
102 */
60c06c4c 103 writel_relaxed(st->icmr & 0xfffff000, iobase + ICMR);
1da177e4 104
1da177e4
LT
105 return 0;
106}
107
90533980 108static void sa1100irq_resume(void)
1da177e4
LT
109{
110 struct sa1100irq_state *st = &sa1100irq_state;
111
112 if (st->saved) {
60c06c4c
DES
113 writel_relaxed(st->iccr, iobase + ICCR);
114 writel_relaxed(st->iclr, iobase + ICLR);
1da177e4 115
60c06c4c 116 writel_relaxed(st->icmr, iobase + ICMR);
1da177e4 117 }
1da177e4
LT
118}
119
90533980 120static struct syscore_ops sa1100irq_syscore_ops = {
1da177e4
LT
121 .suspend = sa1100irq_suspend,
122 .resume = sa1100irq_resume,
123};
124
1da177e4
LT
125static int __init sa1100irq_init_devicefs(void)
126{
90533980
RW
127 register_syscore_ops(&sa1100irq_syscore_ops);
128 return 0;
1da177e4
LT
129}
130
131device_initcall(sa1100irq_init_devicefs);
132
affcab32
DES
133static asmlinkage void __exception_irq_entry
134sa1100_handle_irq(struct pt_regs *regs)
135{
136 uint32_t icip, icmr, mask;
137
138 do {
60c06c4c
DES
139 icip = readl_relaxed(iobase + ICIP);
140 icmr = readl_relaxed(iobase + ICMR);
affcab32
DES
141 mask = icip & icmr;
142
143 if (mask == 0)
144 break;
145
364e3869
DES
146 handle_domain_irq(sa1100_normal_irqdomain,
147 ffs(mask) - 1, regs);
affcab32
DES
148 } while (1);
149}
150
85e6f097 151void __init sa11x0_init_irq_nodt(int irq_start, resource_size_t io_start)
1da177e4 152{
85e6f097 153 iobase = ioremap(io_start, SZ_64K);
60c06c4c
DES
154 if (WARN_ON(!iobase))
155 return;
1da177e4
LT
156
157 /* disable all IRQs */
60c06c4c 158 writel_relaxed(0, iobase + ICMR);
1da177e4
LT
159
160 /* all IRQs are IRQ, not FIQ */
60c06c4c 161 writel_relaxed(0, iobase + ICLR);
1da177e4 162
1da177e4
LT
163 /*
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.
166 */
60c06c4c 167 writel_relaxed(1, iobase + ICCR);
1da177e4 168
a82be3f0 169 sa1100_normal_irqdomain = irq_domain_add_simple(NULL,
85e6f097 170 32, irq_start,
83508093
DES
171 &sa1100_normal_irqdomain_ops, NULL);
172
affcab32 173 set_handle_irq(sa1100_handle_irq);
1da177e4 174}