aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/files/arch/mips/ralink/common/intc.c
blob: 65e42b423bed3e438d6807ee9c508f76f2543763 (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
/*
 * Ralink SoC Interrupt controller routines
 *
 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/bitops.h>

#include <asm/irq_cpu.h>
#include <asm/mipsregs.h>

#include <asm/mach-ralink/common.h>

/* INTC register offsets */
#define INTC_REG_STATUS0	0x00
#define INTC_REG_STATUS1	0x04
#define INTC_REG_TYPE		0x20
#define INTC_REG_RAW_STATUS	0x30
#define INTC_REG_ENABLE		0x34
#define INTC_REG_DISABLE	0x38

#define INTC_INT_GLOBAL		BIT(31)
#define INTC_IRQ_COUNT		32

static unsigned int ramips_intc_irq_base;
static void __iomem *ramips_intc_base;

static inline void ramips_intc_wr(u32 val, unsigned reg)
{
	__raw_writel(val, ramips_intc_base + reg);
}

static inline u32 ramips_intc_rr(unsigned reg)
{
	return __raw_readl(ramips_intc_base + reg);
}

static void ramips_intc_irq_unmask(struct irq_data *d)
{
	unsigned int irq = d->irq - ramips_intc_irq_base;

	ramips_intc_wr((1 << irq), INTC_REG_ENABLE);
}

static void ramips_intc_irq_mask(struct irq_data *d)
{
	unsigned int irq = d->irq - ramips_intc_irq_base;

	ramips_intc_wr((1 << irq), INTC_REG_DISABLE);
}

static struct irq_chip ramips_intc_irq_chip = {
	.name		= "INTC",
	.irq_unmask	= ramips_intc_irq_unmask,
	.irq_mask	= ramips_intc_irq_mask,
	.irq_mask_ack	= ramips_intc_irq_mask,
};

static struct irqaction ramips_intc_irqaction = {
	.handler	= no_action,
	.name		= "cascade [INTC]",
};

void __init ramips_intc_irq_init(unsigned intc_base, unsigned irq,
				 unsigned irq_base)
{
	int i;

	ramips_intc_base = ioremap_nocache(intc_base, PAGE_SIZE);
	ramips_intc_irq_base = irq_base;

	/* disable all interrupts */
	ramips_intc_wr(~0, INTC_REG_DISABLE);

	/* route all INTC interrupts to MIPS HW0 interrupt */
	ramips_intc_wr(0, INTC_REG_TYPE);

	for (i = ramips_intc_irq_base;
	     i < ramips_intc_irq_base + INTC_IRQ_COUNT; i++)
		irq_set_chip_and_handler(i, &ramips_intc_irq_chip,
					 handle_level_irq);

	setup_irq(irq, &ramips_intc_irqaction);
	ramips_intc_wr(INTC_INT_GLOBAL, INTC_REG_ENABLE);
}

u32 ramips_intc_get_status(void)
{
	return ramips_intc_rr(INTC_REG_STATUS0);
}