]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
DEC: Document the R4k MB ASIC mini interrupt controller
authorMaciej W. Rozycki <macro@linux-mips.org>
Sun, 6 Apr 2014 21:42:48 +0000 (22:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 4 Jun 2014 20:50:41 +0000 (22:50 +0200)
There's an alternative 5-line mini interrupt controller in the R4k MB ASIC
used on the KN04 and KN05 CPU daughtercards.  The controller is cascaded
from the CPU interrupt input that would be used for the Halt button on the
corresponding R3k systems.  This change documents the findings so far.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/6706/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/dec/kn05.h

index 56d22dc8803ad004a573a617295b15f08de3382b..8e14f677e5efb169ac2b8364260c4d72ee2b3ece 100644 (file)
 #define KN4K_RES_14    (14*IOASIC_SLOT_SIZE)   /* unused? */
 #define KN4K_RES_15    (15*IOASIC_SLOT_SIZE)   /* unused? */
 
+/*
+ * MB ASIC interrupt bits.
+ */
+#define KN4K_MB_INR_MB         4       /* ??? */
+#define KN4K_MB_INR_MT         3       /* memory, I/O bus read/write errors */
+#define KN4K_MB_INR_RES_2      2       /* unused */
+#define KN4K_MB_INR_RTC                1       /* RTC */
+#define KN4K_MB_INR_TC         0       /* I/O ASIC cascade */
+
 /*
  * Bits for the MB interrupt register.
  * The register appears read-only.
  */
-#define KN4K_MB_INT_TC         (1<<0)          /* TURBOchannel? */
-#define KN4K_MB_INT_RTC                (1<<1)          /* RTC? */
-#define KN4K_MB_INT_MT         (1<<3)          /* I/O ASIC cascade */
+#define KN4K_MB_INT_IRQ                (0x1f<<0)       /* CPU Int[4:0] status. */
+#define KN4K_MB_INT_IRQ_N(n)   (1<<(n))        /* Individual status bits. */
 
 /*
  * Bits for the MB control & status register.
@@ -70,6 +78,7 @@
 #define KN4K_MB_CSR_NC         (1<<14)         /* ??? */
 #define KN4K_MB_CSR_EE         (1<<15)         /* (bus) Exception Enable? */
 #define KN4K_MB_CSR_MSK                (0x1f<<16)      /* CPU Int[4:0] mask */
+#define KN4K_MB_CSR_MSK_N(n)   (1<<((n)+16))   /* Individual mask bits. */
 #define KN4K_MB_CSR_FW         (1<<21)         /* ??? */
 #define KN4K_MB_CSR_W          (1<<31)         /* ??? */