aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip/irq-xilinx-intc.c
blob: 43d6e4e705f547f05a01ead677b3e3817d258944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
 * Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu>
 * Copyright (C) 2012-2013 Xilinx, Inc.
 * Copyright (C) 2007-2009 PetaLogix
 * Copyright (C) 2006 Atmark Techno, Inc.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License. See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#include <linux/irqdomain.h>
#include <linux/irq.h>
#include <linux/irqchip.h>
#include <linux/irqchip/chained_irq.h>
#include <linux/of_address.h>
#include <linux/io.h>
#include <linux/bug.h>
#include <linux/of_irq.h>

static struct xintc_irq_chip *primary_intc;

/* No one else should require these constants, so define them locally here. */
#define ISR 0x00			/* Interrupt Status Register */
#define IPR 0x04			/* Interrupt Pending Register */
#define IER 0x08			/* Interrupt Enable Register */
#define IAR 0x0c			/* Interrupt Acknowledge Register */
#define SIE 0x10			/* Set Interrupt Enable bits */
#define CIE 0x14			/* Clear Interrupt Enable bits */
#define IVR 0x18			/* Interrupt Vector Register */
#define MER 0x1c			/* Master Enable Register */

#define MER_ME (1<<0)
#define MER_HIE (1<<1)

struct xintc_irq_chip {
	void		__iomem *base;
	struct		irq_domain *root_domain;
	u32		intr_mask;
	struct			irq_chip *intc_dev;
	u32				nr_irq;
	unsigned int	(*read_fn)(void __iomem *addr);
	void			(*write_fn)(void __iomem *addr, u32);
};

static void xintc_write(void __iomem *addr, u32 data)
{
		iowrite32(data, addr);
}

static unsigned int xintc_read(void __iomem *addr)
{
		return ioread32(addr);
}

static void xintc_write_be(void __iomem *addr, u32 data)
{
		iowrite32be(data, addr);
}

static unsigned int xintc_read_be(void __iomem *addr)
{
		return ioread32be(addr);
}

static void intc_enable_or_unmask(struct irq_data *d)
{
	unsigned long mask = 1 << d->hwirq;
	struct xintc_irq_chip *local_intc = irq_data_get_irq_chip_data(d);

	pr_debug("irq-xilinx: enable_or_unmask: %ld\n", d->hwirq);

	/* ack level irqs because they can't be acked during
	 * ack function since the handle_level_irq function
	 * acks the irq before calling the interrupt handler
	 */
	if (irqd_is_level_type(d))
		local_intc->write_fn(local_intc->base + IAR, mask);

	local_intc->write_fn(local_intc->base + SIE, mask);
}

static void intc_disable_or_mask(struct irq_data *d)
{
	struct xintc_irq_chip *local_intc = irq_data_get_irq_chip_data(d);

	pr_debug("irq-xilinx: disable: %ld\n", d->hwirq);
	local_intc->write_fn(local_intc->base + CIE, 1 << d->hwirq);
}

static void intc_ack(struct irq_data *d)
{
	struct xintc_irq_chip *local_intc = irq_data_get_irq_chip_data(d);

	pr_debug("irq-xilinx: ack: %ld\n", d->hwirq);
	local_intc->write_fn(local_intc->base + IAR, 1 << d->hwirq);
}

static void intc_mask_ack(struct irq_data *d)
{
	unsigned long mask = 1 << d->hwirq;
	struct xintc_irq_chip *local_intc = irq_data_get_irq_chip_data(d);

	pr_debug("irq-xilinx: disable_and_ack: %ld\n", d->hwirq);
	local_intc->write_fn(local_intc->base + CIE, mask);
	local_intc->write_fn(local_intc->base + IAR, mask);
}

static unsigned int xintc_get_irq_local(struct xintc_irq_chip *local_intc)
{
	int hwirq, irq = -1;

	hwirq = local_intc->read_fn(local_intc->base + IVR);
	if (hwirq != -1U)
		irq = irq_find_mapping(local_intc->root_domain, hwirq);

	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);

	return irq;
}

unsigned int xintc_get_irq(void)
{
	int hwirq, irq = -1;

	hwirq = primary_intc->read_fn(primary_intc->base + IVR);
	if (hwirq != -1U)
		irq = irq_find_mapping(primary_intc->root_domain, hwirq);

	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);

	return irq;
}

static int xintc_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)
{
	struct xintc_irq_chip *local_intc = d->host_data;

	if (local_intc->intr_mask & (1 << hw)) {
		irq_set_chip_and_handler_name(irq, local_intc->intc_dev,
						handle_edge_irq, "edge");
		irq_clear_status_flags(irq, IRQ_LEVEL);
	} else {
		irq_set_chip_and_handler_name(irq, local_intc->intc_dev,
						handle_level_irq, "level");
		irq_set_status_flags(irq, IRQ_LEVEL);
	}
	irq_set_chip_data(irq, local_intc);
	return 0;
}

static const struct irq_domain_ops xintc_irq_domain_ops = {
	.xlate = irq_domain_xlate_onetwocell,
	.map = xintc_map,
};

static void xil_intc_irq_handler(struct irq_desc *desc)
{
	struct irq_chip *chip = irq_desc_get_chip(desc);
	struct xintc_irq_chip *local_intc =
		irq_data_get_irq_handler_data(&desc->irq_data);
	u32 pending;

	chained_irq_enter(chip, desc);
	do {
		pending = xintc_get_irq_local(local_intc);
		if (pending == -1U)
			break;
		generic_handle_irq(pending);
	} while (true);
	chained_irq_exit(chip, desc);
}

static int __init xilinx_intc_of_init(struct device_node *intc,
					     struct device_node *parent)
{
	int ret, irq;
	struct xintc_irq_chip *irqc;
	struct irq_chip *intc_dev;

	irqc = kzalloc(sizeof(*irqc), GFP_KERNEL);
	if (!irqc)
		return -ENOMEM;
	irqc->base = of_iomap(intc, 0);
	BUG_ON(!irqc->base);

	ret = of_property_read_u32(intc, "xlnx,num-intr-inputs", &irqc->nr_irq);
	if (ret < 0) {
		pr_err("irq-xilinx: unable to read xlnx,num-intr-inputs\n");
		goto error;
	}

	ret = of_property_read_u32(intc, "xlnx,kind-of-intr", &irqc->intr_mask);
	if (ret < 0) {
		pr_warn("irq-xilinx: unable to read xlnx,kind-of-intr\n");
		irqc->intr_mask = 0;
	}

	if (irqc->intr_mask >> irqc->nr_irq)
		pr_warn("irq-xilinx: mismatch in kind-of-intr param\n");

	pr_info("irq-xilinx: %pOF: num_irq=%d, edge=0x%x\n",
		intc, irqc->nr_irq, irqc->intr_mask);

	intc_dev = kzalloc(sizeof(*intc_dev), GFP_KERNEL);
	if (!intc_dev) {
		ret = -ENOMEM;
		goto error;
	}

	intc_dev->name = intc->full_name;
	intc_dev->irq_unmask = intc_enable_or_unmask,
	intc_dev->irq_mask = intc_disable_or_mask,
	intc_dev->irq_ack = intc_ack,
	intc_dev->irq_mask_ack = intc_mask_ack,
	irqc->intc_dev = intc_dev;

	irqc->write_fn = xintc_write;
	irqc->read_fn = xintc_read;
	/*
	 * Disable all external interrupts until they are
	 * explicity requested.
	 */
	irqc->write_fn(irqc->base + IER, 0);

	/* Acknowledge any pending interrupts just in case. */
	irqc->write_fn(irqc->base + IAR, 0xffffffff);

	/* Turn on the Master Enable. */
	irqc->write_fn(irqc->base + MER, MER_HIE | MER_ME);
	if (!(irqc->read_fn(irqc->base + MER) & (MER_HIE | MER_ME))) {
		irqc->write_fn = xintc_write_be;
		irqc->read_fn = xintc_read_be;
		irqc->write_fn(irqc->base + MER, MER_HIE | MER_ME);
	}

	irqc->root_domain = irq_domain_add_linear(intc, irqc->nr_irq,
						  &xintc_irq_domain_ops, irqc);
	if (!irqc->root_domain) {
		pr_err("irq-xilinx: Unable to create IRQ domain\n");
		goto err_alloc;
	}

	if (parent) {
		irq = irq_of_parse_and_map(intc, 0);
		if (irq) {
			irq_set_chained_handler_and_data(irq,
							 xil_intc_irq_handler,
							 irqc);
		} else {
			pr_err("irq-xilinx: interrupts property not in DT\n");
			ret = -EINVAL;
			goto err_alloc;
		}
	} else {
		primary_intc = irqc;
		irq_set_default_host(primary_intc->root_domain);
	}

	return 0;

err_alloc:
	kfree(intc_dev);
error:
	iounmap(irqc->base);
	kfree(irqc);
	return ret;

}

IRQCHIP_DECLARE(xilinx_intc_xps, "xlnx,xps-intc-1.00.a", xilinx_intc_of_init);
IRQCHIP_DECLARE(xilinx_intc_opb, "xlnx,opb-intc-1.00.c", xilinx_intc_of_init);