Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/evbmips/ingenic disable interrupts while processing...
details: https://anonhg.NetBSD.org/src/rev/48f6124aa9ca
branches: trunk
changeset: 336548:48f6124aa9ca
user: macallan <macallan%NetBSD.org@localhost>
date: Thu Mar 05 17:42:29 2015 +0000
description:
disable interrupts while processing them, reenable when we're done
diffstat:
sys/arch/evbmips/ingenic/intr.c | 20 +++++++++++++++-----
1 files changed, 15 insertions(+), 5 deletions(-)
diffs (83 lines):
diff -r 53fd91177512 -r 48f6124aa9ca sys/arch/evbmips/ingenic/intr.c
--- a/sys/arch/evbmips/ingenic/intr.c Thu Mar 05 17:35:56 2015 +0000
+++ b/sys/arch/evbmips/ingenic/intr.c Thu Mar 05 17:42:29 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.4 2014/12/26 18:06:52 macallan Exp $ */
+/* $NetBSD: intr.c,v 1.5 2015/03/05 17:42:29 macallan Exp $ */
/*-
* Copyright (c) 2014 Michael Lorenz
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.4 2014/12/26 18:06:52 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.5 2015/03/05 17:42:29 macallan Exp $");
#define __INTR_PRIVATE
@@ -184,6 +184,7 @@
ingenic_puts("INT2\n");
}
if (ipending & MIPS_INT_MASK_0) {
+ uint32_t mask;
/* peripheral interrupt */
/*
@@ -196,8 +197,11 @@
* and IPIs. If that doesn't work we'll have to send an IPI to
* core1 for each timer tick.
*/
- if (readreg(JZ_ICPR0) & 0x0c000000) {
+ mask = readreg(JZ_ICPR0);
+ if (mask & 0x0c000000) {
+ writereg(JZ_ICMSR0, mask);
ingenic_clockintr(id);
+ writereg(JZ_ICMCR0, mask);
}
ingenic_irq(ipl);
KASSERT(id == 0);
@@ -207,13 +211,14 @@
void
ingenic_irq(int ipl)
{
- uint32_t irql, irqh, mask;
+ uint32_t irql, irqh, mask, ll, hh;
int bit, idx, bail;
#ifdef INGENIC_INTR_DEBUG
char buffer[16];
#endif
irql = readreg(JZ_ICPR0);
+ irqh = readreg(JZ_ICPR1);
#ifdef INGENIC_INTR_DEBUG
if (irql != 0) {
snprintf(buffer, 16, " il%08x", irql);
@@ -221,6 +226,10 @@
}
#endif
bail = 32;
+ ll = irql;
+ hh = irqh;
+ writereg(JZ_ICMSR0, ll);
+ writereg(JZ_ICMSR1, hh);
bit = ffs32(irql);
while (bit != 0) {
idx = bit - 1;
@@ -242,7 +251,6 @@
KASSERT(bail > 0);
}
- irqh = readreg(JZ_ICPR1);
#ifdef INGENIC_INTR_DEBUG
if (irqh != 0) {
snprintf(buffer, 16, " ih%08x", irqh);
@@ -268,6 +276,8 @@
irqh &= ~mask;
bit = ffs32(irqh);
}
+ writereg(JZ_ICMCR0, ll);
+ writereg(JZ_ICMCR1, hh);
}
void *
Home |
Main Index |
Thread Index |
Old Index