blob: 005de3f932ae8807a2a7af66a40c2c421e425996 [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>
Paul Burton44e08e72015-05-24 16:11:31 +010021#include <linux/irqchip/ingenic.h>
Paul Burton3aa94592015-05-24 16:11:28 +010022#include <linux/of_address.h>
Paul Burtonadbdce72015-05-24 16:11:21 +010023#include <linux/of_irq.h>
Lars-Peter Clausen98698482010-07-17 11:08:43 +000024#include <linux/timex.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
27
Lars-Peter Clausen98698482010-07-17 11:08:43 +000028#include <asm/io.h>
Brian Norris942e22d2014-12-17 18:39:01 -080029#include <asm/mach-jz4740/irq.h>
30
Paul Burton44e08e72015-05-24 16:11:31 +010031#include "irqchip.h"
Paul Burtonadbdce72015-05-24 16:11:21 +010032
Paul Burtonfe778ec2015-05-24 16:11:25 +010033struct ingenic_intc_data {
34 void __iomem *base;
Paul Burton943d69c2015-05-24 16:11:26 +010035 unsigned num_chips;
Paul Burtonfe778ec2015-05-24 16:11:25 +010036};
Lars-Peter Clausen98698482010-07-17 11:08:43 +000037
38#define JZ_REG_INTC_STATUS 0x00
39#define JZ_REG_INTC_MASK 0x04
40#define JZ_REG_INTC_SET_MASK 0x08
41#define JZ_REG_INTC_CLEAR_MASK 0x0c
42#define JZ_REG_INTC_PENDING 0x10
Paul Burton943d69c2015-05-24 16:11:26 +010043#define CHIP_SIZE 0x20
Lars-Peter Clausen98698482010-07-17 11:08:43 +000044
Paul Burton2da01882015-05-24 16:11:29 +010045static irqreturn_t intc_cascade(int irq, void *data)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000046{
Paul Burtonfe778ec2015-05-24 16:11:25 +010047 struct ingenic_intc_data *intc = irq_get_handler_data(irq);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000048 uint32_t irq_reg;
Paul Burton943d69c2015-05-24 16:11:26 +010049 unsigned i;
Lars-Peter Clausen98698482010-07-17 11:08:43 +000050
Paul Burton943d69c2015-05-24 16:11:26 +010051 for (i = 0; i < intc->num_chips; i++) {
52 irq_reg = readl(intc->base + (i * CHIP_SIZE) +
53 JZ_REG_INTC_PENDING);
54 if (!irq_reg)
55 continue;
Lars-Peter Clausen98698482010-07-17 11:08:43 +000056
Paul Burton943d69c2015-05-24 16:11:26 +010057 generic_handle_irq(__fls(irq_reg) + (i * 32) + JZ4740_IRQ_BASE);
58 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +000059
60 return IRQ_HANDLED;
61}
62
Paul Burton2da01882015-05-24 16:11:29 +010063static void intc_irq_set_mask(struct irq_chip_generic *gc, uint32_t mask)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020064{
65 struct irq_chip_regs *regs = &gc->chip_types->regs;
66
67 writel(mask, gc->reg_base + regs->enable);
68 writel(~mask, gc->reg_base + regs->disable);
69}
70
Paul Burton2da01882015-05-24 16:11:29 +010071void ingenic_intc_irq_suspend(struct irq_data *data)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020072{
73 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
Paul Burton2da01882015-05-24 16:11:29 +010074 intc_irq_set_mask(gc, gc->wake_active);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020075}
76
Paul Burton2da01882015-05-24 16:11:29 +010077void ingenic_intc_irq_resume(struct irq_data *data)
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020078{
79 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
Paul Burton2da01882015-05-24 16:11:29 +010080 intc_irq_set_mask(gc, gc->mask_cache);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020081}
82
Paul Burton2da01882015-05-24 16:11:29 +010083static struct irqaction intc_cascade_action = {
84 .handler = intc_cascade,
85 .name = "SoC intc cascade interrupt",
Lars-Peter Clausen98698482010-07-17 11:08:43 +000086};
87
Paul Burton943d69c2015-05-24 16:11:26 +010088static int __init ingenic_intc_of_init(struct device_node *node,
89 unsigned num_chips)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000090{
Paul Burtonfe778ec2015-05-24 16:11:25 +010091 struct ingenic_intc_data *intc;
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +020092 struct irq_chip_generic *gc;
93 struct irq_chip_type *ct;
Paul Burton638c8852015-05-24 16:11:23 +010094 struct irq_domain *domain;
Paul Burtonfe778ec2015-05-24 16:11:25 +010095 int parent_irq, err = 0;
Paul Burton943d69c2015-05-24 16:11:26 +010096 unsigned i;
Paul Burtonfe778ec2015-05-24 16:11:25 +010097
98 intc = kzalloc(sizeof(*intc), GFP_KERNEL);
99 if (!intc) {
100 err = -ENOMEM;
101 goto out_err;
102 }
Paul Burton69ce4b22015-05-24 16:11:22 +0100103
104 parent_irq = irq_of_parse_and_map(node, 0);
Paul Burtonfe778ec2015-05-24 16:11:25 +0100105 if (!parent_irq) {
106 err = -EINVAL;
107 goto out_free;
108 }
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200109
Paul Burtonfe778ec2015-05-24 16:11:25 +0100110 err = irq_set_handler_data(parent_irq, intc);
111 if (err)
112 goto out_unmap_irq;
113
Paul Burton943d69c2015-05-24 16:11:26 +0100114 intc->num_chips = num_chips;
Paul Burton3aa94592015-05-24 16:11:28 +0100115 intc->base = of_iomap(node, 0);
116 if (!intc->base) {
117 err = -ENODEV;
118 goto out_unmap_irq;
119 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000120
Paul Burton943d69c2015-05-24 16:11:26 +0100121 for (i = 0; i < num_chips; i++) {
122 /* Mask all irqs */
123 writel(0xffffffff, intc->base + (i * CHIP_SIZE) +
124 JZ_REG_INTC_SET_MASK);
Thomas Gleixner42b64f32011-03-23 21:08:53 +0000125
Paul Burton943d69c2015-05-24 16:11:26 +0100126 gc = irq_alloc_generic_chip("INTC", 1,
127 JZ4740_IRQ_BASE + (i * 32),
128 intc->base + (i * CHIP_SIZE),
129 handle_level_irq);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200130
Paul Burton943d69c2015-05-24 16:11:26 +0100131 gc->wake_enabled = IRQ_MSK(32);
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200132
Paul Burton943d69c2015-05-24 16:11:26 +0100133 ct = gc->chip_types;
134 ct->regs.enable = JZ_REG_INTC_CLEAR_MASK;
135 ct->regs.disable = JZ_REG_INTC_SET_MASK;
136 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
137 ct->chip.irq_mask = irq_gc_mask_disable_reg;
138 ct->chip.irq_mask_ack = irq_gc_mask_disable_reg;
139 ct->chip.irq_set_wake = irq_gc_set_wake;
Paul Burton2da01882015-05-24 16:11:29 +0100140 ct->chip.irq_suspend = ingenic_intc_irq_suspend;
141 ct->chip.irq_resume = ingenic_intc_irq_resume;
Lars-Peter Clausen83bc7692011-09-24 02:29:46 +0200142
Paul Burton943d69c2015-05-24 16:11:26 +0100143 irq_setup_generic_chip(gc, IRQ_MSK(32), 0, 0,
144 IRQ_NOPROBE | IRQ_LEVEL);
145 }
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000146
Paul Burton638c8852015-05-24 16:11:23 +0100147 domain = irq_domain_add_legacy(node, num_chips * 32, JZ4740_IRQ_BASE, 0,
148 &irq_domain_simple_ops, NULL);
149 if (!domain)
150 pr_warn("unable to register IRQ domain\n");
151
Paul Burton2da01882015-05-24 16:11:29 +0100152 setup_irq(parent_irq, &intc_cascade_action);
Paul Burtonadbdce72015-05-24 16:11:21 +0100153 return 0;
Paul Burtonfe778ec2015-05-24 16:11:25 +0100154
155out_unmap_irq:
156 irq_dispose_mapping(parent_irq);
157out_free:
158 kfree(intc);
159out_err:
160 return err;
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000161}
Paul Burton943d69c2015-05-24 16:11:26 +0100162
163static int __init intc_1chip_of_init(struct device_node *node,
164 struct device_node *parent)
165{
166 return ingenic_intc_of_init(node, 1);
167}
168IRQCHIP_DECLARE(jz4740_intc, "ingenic,jz4740-intc", intc_1chip_of_init);
Paul Burton24ccfa02015-05-24 16:11:30 +0100169
170static int __init intc_2chip_of_init(struct device_node *node,
171 struct device_node *parent)
172{
173 return ingenic_intc_of_init(node, 2);
174}
175IRQCHIP_DECLARE(jz4770_intc, "ingenic,jz4770-intc", intc_2chip_of_init);
176IRQCHIP_DECLARE(jz4775_intc, "ingenic,jz4775-intc", intc_2chip_of_init);
177IRQCHIP_DECLARE(jz4780_intc, "ingenic,jz4780-intc", intc_2chip_of_init);