blob: d82c0c430e03b27370fc12718c0077bd71f3c96a [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
6 * under the terms of the GNU General Public License as published by the
7 * 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>
21#include <linux/timex.h>
22#include <linux/slab.h>
23#include <linux/delay.h>
24
25#include <linux/debugfs.h>
26#include <linux/seq_file.h>
27
28#include <asm/io.h>
29#include <asm/mipsregs.h>
30#include <asm/irq_cpu.h>
31
32#include <asm/mach-jz4740/base.h>
33
34static void __iomem *jz_intc_base;
35static uint32_t jz_intc_wakeup;
36static uint32_t jz_intc_saved;
37
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
43
44#define IRQ_BIT(x) BIT((x) - JZ4740_IRQ_BASE)
45
Thomas Gleixner42b64f32011-03-23 21:08:53 +000046static inline unsigned long intc_irq_bit(struct irq_data *data)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000047{
Thomas Gleixner42b64f32011-03-23 21:08:53 +000048 return (unsigned long)irq_data_get_irq_chip_data(data);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000049}
50
Thomas Gleixner42b64f32011-03-23 21:08:53 +000051static void intc_irq_unmask(struct irq_data *data)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000052{
Thomas Gleixner42b64f32011-03-23 21:08:53 +000053 writel(intc_irq_bit(data), jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000054}
55
Thomas Gleixner42b64f32011-03-23 21:08:53 +000056static void intc_irq_mask(struct irq_data *data)
57{
58 writel(intc_irq_bit(data), jz_intc_base + JZ_REG_INTC_SET_MASK);
59}
60
61static int intc_irq_set_wake(struct irq_data *data, unsigned int on)
Lars-Peter Clausen98698482010-07-17 11:08:43 +000062{
63 if (on)
Thomas Gleixner42b64f32011-03-23 21:08:53 +000064 jz_intc_wakeup |= intc_irq_bit(data);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000065 else
Thomas Gleixner42b64f32011-03-23 21:08:53 +000066 jz_intc_wakeup &= ~intc_irq_bit(data);
Lars-Peter Clausen98698482010-07-17 11:08:43 +000067
68 return 0;
69}
70
71static struct irq_chip intc_irq_type = {
72 .name = "INTC",
Thomas Gleixner42b64f32011-03-23 21:08:53 +000073 .irq_mask = intc_irq_mask,
74 .irq_mask_ack = intc_irq_mask,
75 .irq_unmask = intc_irq_unmask,
76 .irq_set_wake = intc_irq_set_wake,
Lars-Peter Clausen98698482010-07-17 11:08:43 +000077};
78
79static irqreturn_t jz4740_cascade(int irq, void *data)
80{
81 uint32_t irq_reg;
82
83 irq_reg = readl(jz_intc_base + JZ_REG_INTC_PENDING);
84
85 if (irq_reg)
86 generic_handle_irq(__fls(irq_reg) + JZ4740_IRQ_BASE);
87
88 return IRQ_HANDLED;
89}
90
91static struct irqaction jz4740_cascade_action = {
92 .handler = jz4740_cascade,
93 .name = "JZ4740 cascade interrupt",
94};
95
96void __init arch_init_irq(void)
97{
98 int i;
99 mips_cpu_irq_init();
100
101 jz_intc_base = ioremap(JZ4740_INTC_BASE_ADDR, 0x14);
102
Thomas Gleixner42b64f32011-03-23 21:08:53 +0000103 /* Mask all irqs */
104 writel(0xffffffff, jz_intc_base + JZ_REG_INTC_SET_MASK);
105
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000106 for (i = JZ4740_IRQ_BASE; i < JZ4740_IRQ_BASE + 32; i++) {
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200107 irq_set_chip_data(i, (void *)IRQ_BIT(i));
108 irq_set_chip_and_handler(i, &intc_irq_type, handle_level_irq);
Lars-Peter Clausen98698482010-07-17 11:08:43 +0000109 }
110
111 setup_irq(2, &jz4740_cascade_action);
112}
113
114asmlinkage void plat_irq_dispatch(void)
115{
116 unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM;
117 if (pending & STATUSF_IP2)
118 do_IRQ(2);
119 else if (pending & STATUSF_IP3)
120 do_IRQ(3);
121 else
122 spurious_interrupt();
123}
124
125void jz4740_intc_suspend(void)
126{
127 jz_intc_saved = readl(jz_intc_base + JZ_REG_INTC_MASK);
128 writel(~jz_intc_wakeup, jz_intc_base + JZ_REG_INTC_SET_MASK);
129 writel(jz_intc_wakeup, jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
130}
131
132void jz4740_intc_resume(void)
133{
134 writel(~jz_intc_saved, jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
135 writel(jz_intc_saved, jz_intc_base + JZ_REG_INTC_SET_MASK);
136}
137
138#ifdef CONFIG_DEBUG_FS
139
140static inline void intc_seq_reg(struct seq_file *s, const char *name,
141 unsigned int reg)
142{
143 seq_printf(s, "%s:\t\t%08x\n", name, readl(jz_intc_base + reg));
144}
145
146static int intc_regs_show(struct seq_file *s, void *unused)
147{
148 intc_seq_reg(s, "Status", JZ_REG_INTC_STATUS);
149 intc_seq_reg(s, "Mask", JZ_REG_INTC_MASK);
150 intc_seq_reg(s, "Pending", JZ_REG_INTC_PENDING);
151
152 return 0;
153}
154
155static int intc_regs_open(struct inode *inode, struct file *file)
156{
157 return single_open(file, intc_regs_show, NULL);
158}
159
160static const struct file_operations intc_regs_operations = {
161 .open = intc_regs_open,
162 .read = seq_read,
163 .llseek = seq_lseek,
164 .release = single_release,
165};
166
167static int __init intc_debugfs_init(void)
168{
169 (void) debugfs_create_file("jz_regs_intc", S_IFREG | S_IRUGO,
170 NULL, NULL, &intc_regs_operations);
171 return 0;
172}
173subsys_initcall(intc_debugfs_init);
174
175#endif