~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/m68k/coldfire/intc-2.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/m68k/coldfire/intc-2.c (Architecture sparc64) and /arch/m68k/coldfire/intc-2.c (Architecture m68k)


  1 /*                                                  1 /*
  2  * intc-2.c                                         2  * intc-2.c
  3  *                                                  3  *
  4  * General interrupt controller code for the m      4  * General interrupt controller code for the many ColdFire cores that use
  5  * interrupt controllers with 63 interrupt sou      5  * interrupt controllers with 63 interrupt sources, organized as 56 fully-
  6  * programmable + 7 fixed-level interrupt sour      6  * programmable + 7 fixed-level interrupt sources. This includes the 523x
  7  * family, the 5270, 5271, 5274, 5275, and the      7  * family, the 5270, 5271, 5274, 5275, and the 528x family which have two such
  8  * controllers, and the 547x and 548x families      8  * controllers, and the 547x and 548x families which have only one of them.
  9  *                                                  9  *
 10  * The external 7 fixed interrupts are part of     10  * The external 7 fixed interrupts are part of the Edge Port unit of these
 11  * ColdFire parts. They can be configured as l     11  * ColdFire parts. They can be configured as level or edge triggered.
 12  *                                                 12  *
 13  * (C) Copyright 2009-2011, Greg Ungerer <gerg     13  * (C) Copyright 2009-2011, Greg Ungerer <gerg@snapgear.com>
 14  *                                                 14  *
 15  * This file is subject to the terms and condi     15  * This file is subject to the terms and conditions of the GNU General Public
 16  * License.  See the file COPYING in the main      16  * License.  See the file COPYING in the main directory of this archive
 17  * for more details.                               17  * for more details.
 18  */                                                18  */
 19                                                    19 
 20 #include <linux/types.h>                           20 #include <linux/types.h>
 21 #include <linux/init.h>                            21 #include <linux/init.h>
 22 #include <linux/kernel.h>                          22 #include <linux/kernel.h>
 23 #include <linux/interrupt.h>                       23 #include <linux/interrupt.h>
 24 #include <linux/irq.h>                             24 #include <linux/irq.h>
 25 #include <linux/io.h>                              25 #include <linux/io.h>
 26 #include <asm/coldfire.h>                          26 #include <asm/coldfire.h>
 27 #include <asm/mcfsim.h>                            27 #include <asm/mcfsim.h>
 28 #include <asm/traps.h>                             28 #include <asm/traps.h>
 29                                                    29 
 30 /*                                                 30 /*
 31  * Bit definitions for the ICR family of regis     31  * Bit definitions for the ICR family of registers.
 32  */                                                32  */
 33 #define MCFSIM_ICR_LEVEL(l)     ((l)<<3)           33 #define MCFSIM_ICR_LEVEL(l)     ((l)<<3)        /* Level l intr */
 34 #define MCFSIM_ICR_PRI(p)       (p)                34 #define MCFSIM_ICR_PRI(p)       (p)             /* Priority p intr */
 35                                                    35 
 36 /*                                                 36 /*
 37  *      The EDGE Port interrupts are the fixed     37  *      The EDGE Port interrupts are the fixed 7 external interrupts.
 38  *      They need some special treatment, for      38  *      They need some special treatment, for example they need to be acked.
 39  */                                                39  */
 40 #define EINT0   64      /* Is not actually use     40 #define EINT0   64      /* Is not actually used, but spot reserved for it */
 41 #define EINT1   65      /* EDGE Port interrupt     41 #define EINT1   65      /* EDGE Port interrupt 1 */
 42 #define EINT7   71      /* EDGE Port interrupt     42 #define EINT7   71      /* EDGE Port interrupt 7 */
 43                                                    43 
 44 #ifdef MCFICM_INTC1                                44 #ifdef MCFICM_INTC1
 45 #define NR_VECS 128                                45 #define NR_VECS 128
 46 #else                                              46 #else
 47 #define NR_VECS 64                                 47 #define NR_VECS 64
 48 #endif                                             48 #endif
 49                                                    49 
 50 static void intc_irq_mask(struct irq_data *d)      50 static void intc_irq_mask(struct irq_data *d)
 51 {                                                  51 {
 52         unsigned int irq = d->irq - MCFINT_VEC     52         unsigned int irq = d->irq - MCFINT_VECBASE;
 53         unsigned long imraddr;                     53         unsigned long imraddr;
 54         u32 val, imrbit;                           54         u32 val, imrbit;
 55                                                    55 
 56 #ifdef MCFICM_INTC1                                56 #ifdef MCFICM_INTC1
 57         imraddr = (irq & 0x40) ? MCFICM_INTC1      57         imraddr = (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
 58 #else                                              58 #else
 59         imraddr = MCFICM_INTC0;                    59         imraddr = MCFICM_INTC0;
 60 #endif                                             60 #endif
 61         imraddr += (irq & 0x20) ? MCFINTC_IMRH     61         imraddr += (irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL;
 62         imrbit = 0x1 << (irq & 0x1f);              62         imrbit = 0x1 << (irq & 0x1f);
 63                                                    63 
 64         val = __raw_readl(imraddr);                64         val = __raw_readl(imraddr);
 65         __raw_writel(val | imrbit, imraddr);       65         __raw_writel(val | imrbit, imraddr);
 66 }                                                  66 }
 67                                                    67 
 68 static void intc_irq_unmask(struct irq_data *d     68 static void intc_irq_unmask(struct irq_data *d)
 69 {                                                  69 {
 70         unsigned int irq = d->irq - MCFINT_VEC     70         unsigned int irq = d->irq - MCFINT_VECBASE;
 71         unsigned long imraddr;                     71         unsigned long imraddr;
 72         u32 val, imrbit;                           72         u32 val, imrbit;
 73                                                    73 
 74 #ifdef MCFICM_INTC1                                74 #ifdef MCFICM_INTC1
 75         imraddr = (irq & 0x40) ? MCFICM_INTC1      75         imraddr = (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
 76 #else                                              76 #else
 77         imraddr = MCFICM_INTC0;                    77         imraddr = MCFICM_INTC0;
 78 #endif                                             78 #endif
 79         imraddr += ((irq & 0x20) ? MCFINTC_IMR     79         imraddr += ((irq & 0x20) ? MCFINTC_IMRH : MCFINTC_IMRL);
 80         imrbit = 0x1 << (irq & 0x1f);              80         imrbit = 0x1 << (irq & 0x1f);
 81                                                    81 
 82         /* Don't set the "maskall" bit! */         82         /* Don't set the "maskall" bit! */
 83         if ((irq & 0x20) == 0)                     83         if ((irq & 0x20) == 0)
 84                 imrbit |= 0x1;                     84                 imrbit |= 0x1;
 85                                                    85 
 86         val = __raw_readl(imraddr);                86         val = __raw_readl(imraddr);
 87         __raw_writel(val & ~imrbit, imraddr);      87         __raw_writel(val & ~imrbit, imraddr);
 88 }                                                  88 }
 89                                                    89 
 90 /*                                                 90 /*
 91  *      Only the external (or EDGE Port) inter     91  *      Only the external (or EDGE Port) interrupts need to be acknowledged
 92  *      here, as part of the IRQ handler. They     92  *      here, as part of the IRQ handler. They only really need to be ack'ed
 93  *      if they are in edge triggered mode, bu     93  *      if they are in edge triggered mode, but there is no harm in doing it
 94  *      for all types.                             94  *      for all types.
 95  */                                                95  */
 96 static void intc_irq_ack(struct irq_data *d)       96 static void intc_irq_ack(struct irq_data *d)
 97 {                                                  97 {
 98         unsigned int irq = d->irq;                 98         unsigned int irq = d->irq;
 99                                                    99 
100         __raw_writeb(0x1 << (irq - EINT0), MCF    100         __raw_writeb(0x1 << (irq - EINT0), MCFEPORT_EPFR);
101 }                                                 101 }
102                                                   102 
103 /*                                                103 /*
104  *      Each vector needs a unique priority an    104  *      Each vector needs a unique priority and level associated with it.
105  *      We don't really care so much what they    105  *      We don't really care so much what they are, we don't rely on the
106  *      traditional priority interrupt scheme     106  *      traditional priority interrupt scheme of the m68k/ColdFire. This
107  *      only needs to be set once for an inter    107  *      only needs to be set once for an interrupt, and we will never change
108  *      these values once we have set them.       108  *      these values once we have set them.
109  */                                               109  */
110 static u8 intc_intpri = MCFSIM_ICR_LEVEL(6) |     110 static u8 intc_intpri = MCFSIM_ICR_LEVEL(6) | MCFSIM_ICR_PRI(6);
111                                                   111 
112 static unsigned int intc_irq_startup(struct ir    112 static unsigned int intc_irq_startup(struct irq_data *d)
113 {                                                 113 {
114         unsigned int irq = d->irq - MCFINT_VEC    114         unsigned int irq = d->irq - MCFINT_VECBASE;
115         unsigned long icraddr;                    115         unsigned long icraddr;
116                                                   116 
117 #ifdef MCFICM_INTC1                               117 #ifdef MCFICM_INTC1
118         icraddr = (irq & 0x40) ? MCFICM_INTC1     118         icraddr = (irq & 0x40) ? MCFICM_INTC1 : MCFICM_INTC0;
119 #else                                             119 #else
120         icraddr = MCFICM_INTC0;                   120         icraddr = MCFICM_INTC0;
121 #endif                                            121 #endif
122         icraddr += MCFINTC_ICR0 + (irq & 0x3f)    122         icraddr += MCFINTC_ICR0 + (irq & 0x3f);
123         if (__raw_readb(icraddr) == 0)            123         if (__raw_readb(icraddr) == 0)
124                 __raw_writeb(intc_intpri--, ic    124                 __raw_writeb(intc_intpri--, icraddr);
125                                                   125 
126         irq = d->irq;                             126         irq = d->irq;
127         if ((irq >= EINT1) && (irq <= EINT7))     127         if ((irq >= EINT1) && (irq <= EINT7)) {
128                 u8 v;                             128                 u8 v;
129                                                   129 
130                 irq -= EINT0;                     130                 irq -= EINT0;
131                                                   131 
132                 /* Set EPORT line as input */     132                 /* Set EPORT line as input */
133                 v = __raw_readb(MCFEPORT_EPDDR    133                 v = __raw_readb(MCFEPORT_EPDDR);
134                 __raw_writeb(v & ~(0x1 << irq)    134                 __raw_writeb(v & ~(0x1 << irq), MCFEPORT_EPDDR);
135                                                   135 
136                 /* Set EPORT line as interrupt    136                 /* Set EPORT line as interrupt source */
137                 v = __raw_readb(MCFEPORT_EPIER    137                 v = __raw_readb(MCFEPORT_EPIER);
138                 __raw_writeb(v | (0x1 << irq),    138                 __raw_writeb(v | (0x1 << irq), MCFEPORT_EPIER);
139         }                                         139         }
140                                                   140 
141         intc_irq_unmask(d);                       141         intc_irq_unmask(d);
142         return 0;                                 142         return 0;
143 }                                                 143 }
144                                                   144 
145 static int intc_irq_set_type(struct irq_data *    145 static int intc_irq_set_type(struct irq_data *d, unsigned int type)
146 {                                                 146 {
147         unsigned int irq = d->irq;                147         unsigned int irq = d->irq;
148         u16 pa, tb;                               148         u16 pa, tb;
149                                                   149 
150         switch (type) {                           150         switch (type) {
151         case IRQ_TYPE_EDGE_RISING:                151         case IRQ_TYPE_EDGE_RISING:
152                 tb = 0x1;                         152                 tb = 0x1;
153                 break;                            153                 break;
154         case IRQ_TYPE_EDGE_FALLING:               154         case IRQ_TYPE_EDGE_FALLING:
155                 tb = 0x2;                         155                 tb = 0x2;
156                 break;                            156                 break;
157         case IRQ_TYPE_EDGE_BOTH:                  157         case IRQ_TYPE_EDGE_BOTH:
158                 tb = 0x3;                         158                 tb = 0x3;
159                 break;                            159                 break;
160         default:                                  160         default:
161                 /* Level triggered */             161                 /* Level triggered */
162                 tb = 0;                           162                 tb = 0;
163                 break;                            163                 break;
164         }                                         164         }
165                                                   165 
166         if (tb)                                   166         if (tb)
167                 irq_set_handler(irq, handle_ed    167                 irq_set_handler(irq, handle_edge_irq);
168                                                   168 
169         irq -= EINT0;                             169         irq -= EINT0;
170         pa = __raw_readw(MCFEPORT_EPPAR);         170         pa = __raw_readw(MCFEPORT_EPPAR);
171         pa = (pa & ~(0x3 << (irq * 2))) | (tb     171         pa = (pa & ~(0x3 << (irq * 2))) | (tb << (irq * 2));
172         __raw_writew(pa, MCFEPORT_EPPAR);         172         __raw_writew(pa, MCFEPORT_EPPAR);
173                                                   173         
174         return 0;                                 174         return 0;
175 }                                                 175 }
176                                                   176 
177 static struct irq_chip intc_irq_chip = {          177 static struct irq_chip intc_irq_chip = {
178         .name           = "CF-INTC",              178         .name           = "CF-INTC",
179         .irq_startup    = intc_irq_startup,       179         .irq_startup    = intc_irq_startup,
180         .irq_mask       = intc_irq_mask,          180         .irq_mask       = intc_irq_mask,
181         .irq_unmask     = intc_irq_unmask,        181         .irq_unmask     = intc_irq_unmask,
182 };                                                182 };
183                                                   183 
184 static struct irq_chip intc_irq_chip_edge_port    184 static struct irq_chip intc_irq_chip_edge_port = {
185         .name           = "CF-INTC-EP",           185         .name           = "CF-INTC-EP",
186         .irq_startup    = intc_irq_startup,       186         .irq_startup    = intc_irq_startup,
187         .irq_mask       = intc_irq_mask,          187         .irq_mask       = intc_irq_mask,
188         .irq_unmask     = intc_irq_unmask,        188         .irq_unmask     = intc_irq_unmask,
189         .irq_ack        = intc_irq_ack,           189         .irq_ack        = intc_irq_ack,
190         .irq_set_type   = intc_irq_set_type,      190         .irq_set_type   = intc_irq_set_type,
191 };                                                191 };
192                                                   192 
193 void __init init_IRQ(void)                        193 void __init init_IRQ(void)
194 {                                                 194 {
195         int irq;                                  195         int irq;
196                                                   196 
197         /* Mask all interrupt sources */          197         /* Mask all interrupt sources */
198         __raw_writel(0x1, MCFICM_INTC0 + MCFIN    198         __raw_writel(0x1, MCFICM_INTC0 + MCFINTC_IMRL);
199 #ifdef MCFICM_INTC1                               199 #ifdef MCFICM_INTC1
200         __raw_writel(0x1, MCFICM_INTC1 + MCFIN    200         __raw_writel(0x1, MCFICM_INTC1 + MCFINTC_IMRL);
201 #endif                                            201 #endif
202                                                   202 
203         for (irq = MCFINT_VECBASE; (irq < MCFI    203         for (irq = MCFINT_VECBASE; (irq < MCFINT_VECBASE + NR_VECS); irq++) {
204                 if ((irq >= EINT1) && (irq <=E    204                 if ((irq >= EINT1) && (irq <=EINT7))
205                         irq_set_chip(irq, &int    205                         irq_set_chip(irq, &intc_irq_chip_edge_port);
206                 else                              206                 else
207                         irq_set_chip(irq, &int    207                         irq_set_chip(irq, &intc_irq_chip);
208                 irq_set_irq_type(irq, IRQ_TYPE    208                 irq_set_irq_type(irq, IRQ_TYPE_LEVEL_HIGH);
209                 irq_set_handler(irq, handle_le    209                 irq_set_handler(irq, handle_level_irq);
210         }                                         210         }
211 }                                                 211 }
212                                                   212 
213                                                   213 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php