blob: ec869c8e88907adeb7ee7a9c5aeb5bde925e41b4 [file] [log] [blame]
Greg Ungerer2fba4f02009-04-27 15:38:03 +10001/*
Philippe De Muyter03cbc3852010-08-19 19:04:58 +02002 * intc-2.c
3 *
Philippe De Muyter88513382010-09-01 15:23:28 +02004 * General interrupt controller code for the many ColdFire cores that use
5 * interrupt controllers with 63 interrupt sources, organized as 56 fully-
6 * programmable + 7 fixed-level interrupt sources. This includes the 523x
7 * family, the 5270, 5271, 5274, 5275, and the 528x family which have two such
8 * controllers, and the 547x and 548x families which have only one of them.
Greg Ungerer2fba4f02009-04-27 15:38:03 +10009 *
10 * (C) Copyright 2009, Greg Ungerer <gerg@snapgear.com>
11 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file COPYING in the main directory of this archive
14 * for more details.
15 */
16
17#include <linux/types.h>
18#include <linux/init.h>
19#include <linux/kernel.h>
20#include <linux/interrupt.h>
21#include <linux/irq.h>
22#include <linux/io.h>
23#include <asm/coldfire.h>
24#include <asm/mcfsim.h>
25#include <asm/traps.h>
26
27/*
Philippe De Muyter88513382010-09-01 15:23:28 +020028 * Bit definitions for the ICR family of registers.
Greg Ungerer2fba4f02009-04-27 15:38:03 +100029 */
Philippe De Muyter88513382010-09-01 15:23:28 +020030#define MCFSIM_ICR_LEVEL(l) ((l)<<3) /* Level l intr */
31#define MCFSIM_ICR_PRI(p) (p) /* Priority p intr */
32
33/*
34 * Each vector needs a unique priority and level associated with it.
35 * We don't really care so much what they are, we don't rely on the
36 * traditional priority interrupt scheme of the m68k/ColdFire.
37 */
38static u8 intc_intpri = MCFSIM_ICR_LEVEL(6) | MCFSIM_ICR_PRI(6);
39
40#ifdef MCFICM_INTC1
41#define NR_VECS 128
42#else
43#define NR_VECS 64
44#endif
Greg Ungerer2fba4f02009-04-27 15:38:03 +100045
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +000046static void intc_irq_mask(struct irq_data *d)
Greg Ungerer2fba4f02009-04-27 15:38:03 +100047{
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +000048 unsigned int irq = d->irq;
49
Philippe De Muyter88513382010-09-01 15:23:28 +020050 if ((irq >= MCFINT_VECBASE) && (irq <= MCFINT_VECBASE + NR_VECS)) {
Greg Ungerer2fba4f02009-04-27 15:38:03 +100051 unsigned long imraddr;
52 u32 val, imrbit;
53
54 irq -= MCFINT_VECBASE;
Philippe De Muyter88513382010-09-01 15:23:28 +020055#ifdef MCFICM_INTC1
Greg Ungerer254eef72011-03-05 22:17:17 +100056 imraddr = (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
Philippe De Muyter88513382010-09-01 15:23:28 +020057#else
Greg Ungerer254eef72011-03-05 22:17:17 +100058 imraddr = MCFICM_INTC0;
Philippe De Muyter88513382010-09-01 15:23:28 +020059#endif
Greg Ungerer2fba4f02009-04-27 15:38:03 +100060 imraddr += (irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL;
61 imrbit = 0x1 << (irq & 0x1f);
62
63 val = __raw_readl(imraddr);
64 __raw_writel(val | imrbit, imraddr);
65 }
66}
67
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +000068static void intc_irq_unmask(struct irq_data *d)
Greg Ungerer2fba4f02009-04-27 15:38:03 +100069{
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +000070 unsigned int irq = d->irq;
71
Philippe De Muyter88513382010-09-01 15:23:28 +020072 if ((irq >= MCFINT_VECBASE) && (irq <= MCFINT_VECBASE + NR_VECS)) {
Greg Ungerer2fba4f02009-04-27 15:38:03 +100073 unsigned long intaddr, imraddr, icraddr;
74 u32 val, imrbit;
75
76 irq -= MCFINT_VECBASE;
Philippe De Muyter88513382010-09-01 15:23:28 +020077#ifdef MCFICM_INTC1
Greg Ungerer254eef72011-03-05 22:17:17 +100078 intaddr = (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
Philippe De Muyter88513382010-09-01 15:23:28 +020079#else
Greg Ungerer254eef72011-03-05 22:17:17 +100080 intaddr = MCFICM_INTC0;
Philippe De Muyter88513382010-09-01 15:23:28 +020081#endif
Greg Ungerer2fba4f02009-04-27 15:38:03 +100082 imraddr = intaddr + ((irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL);
83 icraddr = intaddr + MCFINTC_ICR0 + (irq & 0x3f);
84 imrbit = 0x1 << (irq & 0x1f);
85
86 /* Don't set the "maskall" bit! */
87 if ((irq & 0x20) == 0)
88 imrbit |= 0x1;
89
90 if (__raw_readb(icraddr) == 0)
91 __raw_writeb(intc_intpri--, icraddr);
92
93 val = __raw_readl(imraddr);
94 __raw_writel(val & ~imrbit, imraddr);
95 }
96}
97
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +000098static int intc_irq_set_type(struct irq_data *d, unsigned int type)
Greg Ungerer04570b42010-09-09 17:12:53 +100099{
100 return 0;
101}
102
Greg Ungerer2fba4f02009-04-27 15:38:03 +1000103static struct irq_chip intc_irq_chip = {
104 .name = "CF-INTC",
Thomas Gleixner0bc0f3a2011-02-06 23:39:14 +0000105 .irq_mask = intc_irq_mask,
106 .irq_unmask = intc_irq_unmask,
107 .irq_set_type = intc_irq_set_type,
Greg Ungerer2fba4f02009-04-27 15:38:03 +1000108};
109
110void __init init_IRQ(void)
111{
112 int irq;
113
114 init_vectors();
115
116 /* Mask all interrupt sources */
Greg Ungerer254eef72011-03-05 22:17:17 +1000117 __raw_writel(0x1, MCFICM_INTC0 + MCFINTC_IMRL);
Philippe De Muyter88513382010-09-01 15:23:28 +0200118#ifdef MCFICM_INTC1
Greg Ungerer254eef72011-03-05 22:17:17 +1000119 __raw_writel(0x1, MCFICM_INTC1 + MCFINTC_IMRL);
Philippe De Muyter88513382010-09-01 15:23:28 +0200120#endif
Greg Ungerer2fba4f02009-04-27 15:38:03 +1000121
122 for (irq = 0; (irq < NR_IRQS); irq++) {
Greg Ungerer04570b42010-09-09 17:12:53 +1000123 set_irq_chip(irq, &intc_irq_chip);
124 set_irq_type(irq, IRQ_TYPE_LEVEL_HIGH);
125 set_irq_handler(irq, handle_level_irq);
Greg Ungerer2fba4f02009-04-27 15:38:03 +1000126 }
127}
128