summaryrefslogtreecommitdiff
path: root/arch/m68knommu/platform/coldfire/intc-2.c
blob: 2863285927de4da08a1bb100c911105fb5354b5b (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
/*
 * intc-1.c
 *
 * (C) Copyright 2009, Greg Ungerer <gerg@snapgear.com>
 *
 * 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/types.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/io.h>
#include <asm/coldfire.h>
#include <asm/mcfsim.h>
#include <asm/traps.h>

/*
 *	Each vector needs a unique priority and level asscoiated with it.
 *	We don't really care so much what they are, we don't rely on the
 *	tranditional priority interrupt scheme of the m68k/ColdFire.
 */
static u8 intc_intpri = 0x36;

static void intc_irq_mask(unsigned int irq)
{
	if ((irq >= MCFINT_VECBASE) && (irq <= MCFINT_VECBASE + 128)) {
		unsigned long imraddr;
		u32 val, imrbit;

		irq -= MCFINT_VECBASE;
		imraddr = MCF_IPSBAR;
		imraddr += (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
		imraddr += (irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL;
		imrbit = 0x1 << (irq & 0x1f);

		val = __raw_readl(imraddr);
		__raw_writel(val | imrbit, imraddr);

		/* only on eport */
		if (irq >= MCFGPIO_IRQ_VECBASE ||
				irq < (MCFGPIO_IRQ_VECBASE + MCFGPIO_IRQ_MAX)) {

			u8 epier = __raw_readb(MCFEPORT_EPIER);
			epier &= ~(1 << (irq - MCFGPIO_IRQ_VECBASE));
			__raw_writeb(epier, MCFEPORT_EPIER);
		}
	}
}

static void intc_irq_unmask(unsigned int irq)
{
	if ((irq >= MCFINT_VECBASE) && (irq <= MCFINT_VECBASE + 128)) {
		unsigned long intaddr, imraddr, icraddr;
		u32 val, imrbit;

		irq -= MCFINT_VECBASE;
		intaddr = MCF_IPSBAR;
		intaddr += (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
		imraddr = intaddr + ((irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL);
		icraddr = intaddr + MCFINTC_ICR0 + (irq & 0x3f);
		imrbit = 0x1 << (irq & 0x1f);

		/* Don't set the "maskall" bit! */
		if ((irq & 0x20) == 0)
			imrbit |= 0x1;

		if (__raw_readb(icraddr) == 0)
			__raw_writeb(intc_intpri--, icraddr);

		val = __raw_readl(imraddr);
		__raw_writel(val & ~imrbit, imraddr);

		/* only on eport */
		if (irq >= MCFGPIO_IRQ_VECBASE ||
				irq < (MCFGPIO_IRQ_VECBASE + MCFGPIO_IRQ_MAX)) {

			u8 epier = __raw_readb(MCFEPORT_EPIER);
			epier |= 1 << (irq - MCFGPIO_IRQ_VECBASE);
			__raw_writeb(epier, MCFEPORT_EPIER);
		}
	}
}

static void intc_irq_ack(unsigned int irq)
{
	/* only on eport */
	if (irq >= MCFGPIO_IRQ_VECBASE ||
			irq < (MCFGPIO_IRQ_VECBASE + MCFGPIO_IRQ_MAX)) {
		u8 epfr = __raw_readb(MCFEPORT_EPFR);
		epfr |= 1 << (irq - MCFGPIO_IRQ_VECBASE);
		__raw_writeb(epfr, MCFEPORT_EPFR);
	}
}

static int intc_irq_set_type(unsigned int irq, unsigned int flow_type)
{
	unsigned shift;
	u16 eppar;

	/* only on eport */
	if (irq < MCFGPIO_IRQ_VECBASE ||
			irq >= (MCFGPIO_IRQ_VECBASE + MCFGPIO_IRQ_MAX))
		return -EINVAL;

	/* we only support TRIGGER_LOW or either (or both) RISING and FALLING */
	if ((flow_type & IRQF_TRIGGER_HIGH) ||
			((flow_type & IRQF_TRIGGER_LOW) &&
			 (flow_type & (IRQF_TRIGGER_RISING |
				       IRQF_TRIGGER_FALLING))))
		return -EINVAL;

	shift = (irq - MCFGPIO_IRQ_VECBASE) * 2;

	/* default to TRIGGER_LOW */
	eppar = 0;
	if (flow_type & IRQF_TRIGGER_RISING)
		eppar |= (0x01 << shift);
	if (flow_type & IRQF_TRIGGER_FALLING)
		eppar |= (0x02 << shift);

	if (eppar)
		set_irq_handler(irq, handle_edge_irq);
	else
		set_irq_handler(irq, handle_level_irq);

	eppar |= (__raw_readw(MCFEPORT_EPPAR) & ~(0x3 << shift));
	__raw_writew(eppar, MCFEPORT_EPPAR);

	return 0;
}

static struct irq_chip intc_irq_chip = {
	.name		= "CF-INTC",
	.mask		= intc_irq_mask,
	.unmask		= intc_irq_unmask,
	.ack		= intc_irq_ack,
	.set_type	= intc_irq_set_type,
};

void __init init_IRQ(void)
{
	int irq;

	init_vectors();

	/* Mask all interrupt sources */
	__raw_writel(0x1, MCF_IPSBAR + MCFICM_INTC0 + MCFINTC_IMRL);
	__raw_writel(0x1, MCF_IPSBAR + MCFICM_INTC1 + MCFINTC_IMRL);

	for (irq = 0; (irq < NR_IRQS); irq++)
		set_irq_chip_and_handler(irq, &intc_irq_chip, handle_level_irq);
}