blob: b2e16dca76a603821fc85b16683419cea22979e3 [file] [log] [blame]
Lars-Peter Clausen98698482010-07-17 11:08:43 +00001/*
2 * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de>
3 * JZ4740 platform IRQ support
4 *
5 * This program is free software; you can redistribute it and/or modify it
Ralf Baechle70342282013-01-22 12:59:30 +01006 * under the terms of the GNU General Public License as published by the
Lars-Peter Clausen98698482010-07-17 11:08:43 +00007 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 * You should have received a copy of the GNU General Public License along
11 * with this program; if not, write to the Free Software Foundation, Inc.,
12 * 675 Mass Ave, Cambridge, MA 02139, USA.
13 *
14 */
15
16#include <linux/errno.h>
17#include <linux/init.h>
18#include <linux/types.h>
19#include <linux/interrupt.h>
20#include <linux/ioport.h>
Joel Porquet41a83e02015-07-07 17:11:46 -040021#include <linux/irqchip.h>
Paul Burton44e08e72015-05-24 16:11:31 +010022#include <linux/irqchip/ingenic.h>
Paul Burton3aa94592015-05-24 16:11:28 +010023#include <linux/of_address.h>
Paul Burtonadbdce72015-05-24 16:11:21 +010024#include <linux/of_irq.h>
Lars-Peter Clausen98698482010-07-17 11:08:43 +000025#include <linux/timex.h>
26#include <linux/slab.h>
27#include <linux/delay.h>
28
Lars-Peter Clausen98698482010-07-17 11:08:43 +000029#include <asm/io.h>
Brian Norris942e22d2014-12-17 18:39:01 -080030#include <asm/mach-jz4740/irq.h>
31
Paul Burtonfe778ec2015-05-24 16:11:25 +010032struct ingenic_intc_data {
33 void __iomem *base;
Paul Burton943d69c2015-05-24 16:11:26 +010034 unsigned num_chips;
Paul Burtonfe778ec2015-05-24 16:11:25 +010035};
Lars-Peter Clausen98698482010-07-17 11:08:43 +000036
37#define JZ_REG_INTC_STATUS 0x00
38#define JZ_REG_INTC_MASK 0x04
39#define JZ_REG_INTC_SET_MASK 0x08
40#define JZ_REG_INTC_CLEAR_MASK 0x0c
41#define JZ_REG_INTC_PENDING 0x10
Paul Burton943d69c2015-05-24 16:11:26 +010042#define CHIP_SIZE 0x20
Lars-Peter Clausen98698482010-07-17 11:08:43 +000043
Paul Burton2da01882015-05-24 16:11:29 +010044static irqreturn_t intc_cascade(int irq, void *data)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000045{
Paul Burtonfe778ec2015-05-24 16:11:25 +010046 struct ingenic_intc_data *intc = irq_get_handler_data(irq);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000047 uint32_t irq_reg;
Paul Burton943d69c2015-05-24 16:11:26 +010048 unsigned i;
Lars-Peter Clausen98698482010-07-17 11:08:43 +000049
Paul Burton943d69c2015-05-24 16:11:26 +010050 for (i = 0; i < intc->num_chips; i++) {
51 irq_reg = readl(intc->base + (i * CHIP_SIZE) +
52 JZ_REG_INTC_PENDING);
53 if (!irq_reg)
54 continue;
Lars-Peter Clausen98698482010-07-17 11:08:43 +000055
Paul Burton943d69c2015-05-24 16:11:26 +010056 generic_handle_irq(__fls(irq_reg) + (i * 32) + JZ4740_IRQ_BASE);
57 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +000058
59 return IRQ_HANDLED;
60}
61
Paul Burton2da01882015-05-24 16:11:29 +010062static void intc_irq_set_mask(struct irq_chip_generic *gc, uint32_t mask)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020063{
64 struct irq_chip_regs *regs = &gc->chip_types->regs;
65
66 writel(mask, gc->reg_base + regs->enable);
67 writel(~mask, gc->reg_base + regs->disable);
68}
69
Paul Burton2da01882015-05-24 16:11:29 +010070void ingenic_intc_irq_suspend(struct irq_data *data)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020071{
72 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
Paul Burton2da01882015-05-24 16:11:29 +010073 intc_irq_set_mask(gc, gc->wake_active);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020074}
75
Paul Burton2da01882015-05-24 16:11:29 +010076void ingenic_intc_irq_resume(struct irq_data *data)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020077{
78 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
Paul Burton2da01882015-05-24 16:11:29 +010079 intc_irq_set_mask(gc, gc->mask_cache);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020080}
81
Paul Burton2da01882015-05-24 16:11:29 +010082static struct irqaction intc_cascade_action = {
83 .handler = intc_cascade,
84 .name = "SoC intc cascade interrupt",
Lars-Peter Clausen98698482010-07-17 11:08:43 +000085};
86
Paul Burton943d69c2015-05-24 16:11:26 +010087static int __init ingenic_intc_of_init(struct device_node *node,
88 unsigned num_chips)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000089{
Paul Burtonfe778ec2015-05-24 16:11:25 +010090 struct ingenic_intc_data *intc;
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020091 struct irq_chip_generic *gc;
92 struct irq_chip_type *ct;
Paul Burton638c8852015-05-24 16:11:23 +010093 struct irq_domain *domain;
Paul Burtonfe778ec2015-05-24 16:11:25 +010094 int parent_irq, err = 0;
Paul Burton943d69c2015-05-24 16:11:26 +010095 unsigned i;
Paul Burtonfe778ec2015-05-24 16:11:25 +010096
97 intc = kzalloc(sizeof(*intc), GFP_KERNEL);
98 if (!intc) {
99 err = -ENOMEM;
100 goto out_err;
101 }
Paul Burton69ce4b22015-05-24 16:11:22 +0100102
103 parent_irq = irq_of_parse_and_map(node, 0);
Paul Burtonfe778ec2015-05-24 16:11:25 +0100104 if (!parent_irq) {
105 err = -EINVAL;
106 goto out_free;
107 }
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200108
Paul Burtonfe778ec2015-05-24 16:11:25 +0100109 err = irq_set_handler_data(parent_irq, intc);
110 if (err)
111 goto out_unmap_irq;
112
Paul Burton943d69c2015-05-24 16:11:26 +0100113 intc->num_chips = num_chips;
Paul Burton3aa94592015-05-24 16:11:28 +0100114 intc->base = of_iomap(node, 0);
115 if (!intc->base) {
116 err = -ENODEV;
117 goto out_unmap_irq;
118 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000119
Paul Cercueilc4c22502019-10-02 19:25:22 +0800120 domain = irq_domain_add_legacy(node, num_chips * 32,
121 JZ4740_IRQ_BASE, 0,
122 &irq_domain_simple_ops, NULL);
123 if (!domain) {
124 err = -ENOMEM;
125 goto out_unmap_base;
126 }
127
Paul Burton943d69c2015-05-24 16:11:26 +0100128 for (i = 0; i < num_chips; i++) {
129 /* Mask all irqs */
130 writel(0xffffffff, intc->base + (i * CHIP_SIZE) +
131 JZ_REG_INTC_SET_MASK);
Thomas Gleixner42b64f32011-03-23 21:08:53 +0000132
Paul Burton943d69c2015-05-24 16:11:26 +0100133 gc = irq_alloc_generic_chip("INTC", 1,
134 JZ4740_IRQ_BASE + (i * 32),
135 intc->base + (i * CHIP_SIZE),
136 handle_level_irq);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200137
Paul Burton943d69c2015-05-24 16:11:26 +0100138 gc->wake_enabled = IRQ_MSK(32);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200139
Paul Burton943d69c2015-05-24 16:11:26 +0100140 ct = gc->chip_types;
141 ct->regs.enable = JZ_REG_INTC_CLEAR_MASK;
142 ct->regs.disable = JZ_REG_INTC_SET_MASK;
143 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
144 ct->chip.irq_mask = irq_gc_mask_disable_reg;
145 ct->chip.irq_mask_ack = irq_gc_mask_disable_reg;
146 ct->chip.irq_set_wake = irq_gc_set_wake;
Paul Burton2da01882015-05-24 16:11:29 +0100147 ct->chip.irq_suspend = ingenic_intc_irq_suspend;
148 ct->chip.irq_resume = ingenic_intc_irq_resume;
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200149
Paul Burton943d69c2015-05-24 16:11:26 +0100150 irq_setup_generic_chip(gc, IRQ_MSK(32), 0, 0,
151 IRQ_NOPROBE | IRQ_LEVEL);
152 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000153
Paul Burton2da01882015-05-24 16:11:29 +0100154 setup_irq(parent_irq, &intc_cascade_action);
Paul Burtonadbdce72015-05-24 16:11:21 +0100155 return 0;
Paul Burtonfe778ec2015-05-24 16:11:25 +0100156
Paul Cercueilc4c22502019-10-02 19:25:22 +0800157out_unmap_base:
158 iounmap(intc->base);
Paul Burtonfe778ec2015-05-24 16:11:25 +0100159out_unmap_irq:
160 irq_dispose_mapping(parent_irq);
161out_free:
162 kfree(intc);
163out_err:
164 return err;
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000165}
Paul Burton943d69c2015-05-24 16:11:26 +0100166
167static int __init intc_1chip_of_init(struct device_node *node,
168 struct device_node *parent)
169{
170 return ingenic_intc_of_init(node, 1);
171}
172IRQCHIP_DECLARE(jz4740_intc, "ingenic,jz4740-intc", intc_1chip_of_init);
Paul Burton24ccfa02015-05-24 16:11:30 +0100173
174static int __init intc_2chip_of_init(struct device_node *node,
175 struct device_node *parent)
176{
177 return ingenic_intc_of_init(node, 2);
178}
179IRQCHIP_DECLARE(jz4770_intc, "ingenic,jz4770-intc", intc_2chip_of_init);
180IRQCHIP_DECLARE(jz4775_intc, "ingenic,jz4775-intc", intc_2chip_of_init);
181IRQCHIP_DECLARE(jz4780_intc, "ingenic,jz4780-intc", intc_2chip_of_init);