[PATCH] m68k: convert VME irq code
Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
ebba61d5b0
commit
200a3d352c
@@ -109,23 +109,23 @@ typedef struct {
|
||||
|
||||
#define BVME_IRQ_TYPE_PRIO 0
|
||||
|
||||
#define BVME_IRQ_PRN 0x54
|
||||
#define BVME_IRQ_I596 0x1a
|
||||
#define BVME_IRQ_SCSI 0x1b
|
||||
#define BVME_IRQ_TIMER 0x59
|
||||
#define BVME_IRQ_RTC 0x1e
|
||||
#define BVME_IRQ_ABORT 0x1f
|
||||
#define BVME_IRQ_PRN (IRQ_USER+20)
|
||||
#define BVME_IRQ_TIMER (IRQ_USER+25)
|
||||
#define BVME_IRQ_I596 IRQ_AUTO_2
|
||||
#define BVME_IRQ_SCSI IRQ_AUTO_3
|
||||
#define BVME_IRQ_RTC IRQ_AUTO_6
|
||||
#define BVME_IRQ_ABORT IRQ_AUTO_7
|
||||
|
||||
/* SCC interrupts */
|
||||
#define BVME_IRQ_SCC_BASE 0x40
|
||||
#define BVME_IRQ_SCCB_TX 0x40
|
||||
#define BVME_IRQ_SCCB_STAT 0x42
|
||||
#define BVME_IRQ_SCCB_RX 0x44
|
||||
#define BVME_IRQ_SCCB_SPCOND 0x46
|
||||
#define BVME_IRQ_SCCA_TX 0x48
|
||||
#define BVME_IRQ_SCCA_STAT 0x4a
|
||||
#define BVME_IRQ_SCCA_RX 0x4c
|
||||
#define BVME_IRQ_SCCA_SPCOND 0x4e
|
||||
#define BVME_IRQ_SCC_BASE IRQ_USER
|
||||
#define BVME_IRQ_SCCB_TX IRQ_USER
|
||||
#define BVME_IRQ_SCCB_STAT (IRQ_USER+2)
|
||||
#define BVME_IRQ_SCCB_RX (IRQ_USER+4)
|
||||
#define BVME_IRQ_SCCB_SPCOND (IRQ_USER+6)
|
||||
#define BVME_IRQ_SCCA_TX (IRQ_USER+8)
|
||||
#define BVME_IRQ_SCCA_STAT (IRQ_USER+10)
|
||||
#define BVME_IRQ_SCCA_RX (IRQ_USER+12)
|
||||
#define BVME_IRQ_SCCA_SPCOND (IRQ_USER+14)
|
||||
|
||||
/* Address control registers */
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef _MVME147HW_H_
|
||||
#define _MVME147HW_H_
|
||||
|
||||
#include <asm/irq.h>
|
||||
|
||||
typedef struct {
|
||||
unsigned char
|
||||
ctrl,
|
||||
@@ -72,39 +74,39 @@ struct pcc_regs {
|
||||
#define PCC_LEVEL_SCSI_PORT 0x04
|
||||
#define PCC_LEVEL_SCSI_DMA 0x04
|
||||
|
||||
#define PCC_IRQ_AC_FAIL 0x40
|
||||
#define PCC_IRQ_BERR 0x41
|
||||
#define PCC_IRQ_ABORT 0x42
|
||||
/* #define PCC_IRQ_SERIAL 0x43 */
|
||||
#define PCC_IRQ_PRINTER 0x47
|
||||
#define PCC_IRQ_TIMER1 0x48
|
||||
#define PCC_IRQ_TIMER2 0x49
|
||||
#define PCC_IRQ_SOFTWARE1 0x4a
|
||||
#define PCC_IRQ_SOFTWARE2 0x4b
|
||||
#define PCC_IRQ_AC_FAIL (IRQ_USER+0)
|
||||
#define PCC_IRQ_BERR (IRQ_USER+1)
|
||||
#define PCC_IRQ_ABORT (IRQ_USER+2)
|
||||
/* #define PCC_IRQ_SERIAL (IRQ_USER+3) */
|
||||
#define PCC_IRQ_PRINTER (IRQ_USER+7)
|
||||
#define PCC_IRQ_TIMER1 (IRQ_USER+8)
|
||||
#define PCC_IRQ_TIMER2 (IRQ_USER+9)
|
||||
#define PCC_IRQ_SOFTWARE1 (IRQ_USER+10)
|
||||
#define PCC_IRQ_SOFTWARE2 (IRQ_USER+11)
|
||||
|
||||
|
||||
#define M147_SCC_A_ADDR 0xfffe3002
|
||||
#define M147_SCC_B_ADDR 0xfffe3000
|
||||
#define M147_SCC_PCLK 5000000
|
||||
|
||||
#define MVME147_IRQ_SCSI_PORT 0x45
|
||||
#define MVME147_IRQ_SCSI_DMA 0x46
|
||||
#define MVME147_IRQ_SCSI_PORT (IRQ_USER+0x45)
|
||||
#define MVME147_IRQ_SCSI_DMA (IRQ_USER+0x46)
|
||||
|
||||
/* SCC interrupts, for MVME147 */
|
||||
|
||||
#define MVME147_IRQ_TYPE_PRIO 0
|
||||
#define MVME147_IRQ_SCC_BASE 0x60
|
||||
#define MVME147_IRQ_SCCB_TX 0x60
|
||||
#define MVME147_IRQ_SCCB_STAT 0x62
|
||||
#define MVME147_IRQ_SCCB_RX 0x64
|
||||
#define MVME147_IRQ_SCCB_SPCOND 0x66
|
||||
#define MVME147_IRQ_SCCA_TX 0x68
|
||||
#define MVME147_IRQ_SCCA_STAT 0x6a
|
||||
#define MVME147_IRQ_SCCA_RX 0x6c
|
||||
#define MVME147_IRQ_SCCA_SPCOND 0x6e
|
||||
#define MVME147_IRQ_SCC_BASE (IRQ_USER+32)
|
||||
#define MVME147_IRQ_SCCB_TX (IRQ_USER+32)
|
||||
#define MVME147_IRQ_SCCB_STAT (IRQ_USER+34)
|
||||
#define MVME147_IRQ_SCCB_RX (IRQ_USER+36)
|
||||
#define MVME147_IRQ_SCCB_SPCOND (IRQ_USER+38)
|
||||
#define MVME147_IRQ_SCCA_TX (IRQ_USER+40)
|
||||
#define MVME147_IRQ_SCCA_STAT (IRQ_USER+42)
|
||||
#define MVME147_IRQ_SCCA_RX (IRQ_USER+44)
|
||||
#define MVME147_IRQ_SCCA_SPCOND (IRQ_USER+46)
|
||||
|
||||
#define MVME147_LANCE_BASE 0xfffe1800
|
||||
#define MVME147_LANCE_IRQ 0x44
|
||||
#define MVME147_LANCE_IRQ (IRQ_USER+4)
|
||||
|
||||
#define ETHERNET_ADDRESS 0xfffe0778
|
||||
|
||||
|
||||
@@ -66,28 +66,28 @@ typedef struct {
|
||||
|
||||
#define MVME162_IRQ_TYPE_PRIO 0
|
||||
|
||||
#define MVME167_IRQ_PRN 0x54
|
||||
#define MVME16x_IRQ_I596 0x57
|
||||
#define MVME16x_IRQ_SCSI 0x55
|
||||
#define MVME16x_IRQ_FLY 0x7f
|
||||
#define MVME167_IRQ_SER_ERR 0x5c
|
||||
#define MVME167_IRQ_SER_MODEM 0x5d
|
||||
#define MVME167_IRQ_SER_TX 0x5e
|
||||
#define MVME167_IRQ_SER_RX 0x5f
|
||||
#define MVME16x_IRQ_TIMER 0x59
|
||||
#define MVME167_IRQ_ABORT 0x6e
|
||||
#define MVME162_IRQ_ABORT 0x5e
|
||||
#define MVME167_IRQ_PRN (IRQ_USER+20)
|
||||
#define MVME16x_IRQ_I596 (IRQ_USER+23)
|
||||
#define MVME16x_IRQ_SCSI (IRQ_USER+21)
|
||||
#define MVME16x_IRQ_FLY (IRQ_USER+63)
|
||||
#define MVME167_IRQ_SER_ERR (IRQ_USER+28)
|
||||
#define MVME167_IRQ_SER_MODEM (IRQ_USER+29)
|
||||
#define MVME167_IRQ_SER_TX (IRQ_USER+30)
|
||||
#define MVME167_IRQ_SER_RX (IRQ_USER+31)
|
||||
#define MVME16x_IRQ_TIMER (IRQ_USER+25)
|
||||
#define MVME167_IRQ_ABORT (IRQ_USER+46)
|
||||
#define MVME162_IRQ_ABORT (IRQ_USER+30)
|
||||
|
||||
/* SCC interrupts, for MVME162 */
|
||||
#define MVME162_IRQ_SCC_BASE 0x40
|
||||
#define MVME162_IRQ_SCCB_TX 0x40
|
||||
#define MVME162_IRQ_SCCB_STAT 0x42
|
||||
#define MVME162_IRQ_SCCB_RX 0x44
|
||||
#define MVME162_IRQ_SCCB_SPCOND 0x46
|
||||
#define MVME162_IRQ_SCCA_TX 0x48
|
||||
#define MVME162_IRQ_SCCA_STAT 0x4a
|
||||
#define MVME162_IRQ_SCCA_RX 0x4c
|
||||
#define MVME162_IRQ_SCCA_SPCOND 0x4e
|
||||
#define MVME162_IRQ_SCC_BASE (IRQ_USER+0)
|
||||
#define MVME162_IRQ_SCCB_TX (IRQ_USER+0)
|
||||
#define MVME162_IRQ_SCCB_STAT (IRQ_USER+2)
|
||||
#define MVME162_IRQ_SCCB_RX (IRQ_USER+4)
|
||||
#define MVME162_IRQ_SCCB_SPCOND (IRQ_USER+6)
|
||||
#define MVME162_IRQ_SCCA_TX (IRQ_USER+8)
|
||||
#define MVME162_IRQ_SCCA_STAT (IRQ_USER+10)
|
||||
#define MVME162_IRQ_SCCA_RX (IRQ_USER+12)
|
||||
#define MVME162_IRQ_SCCA_SPCOND (IRQ_USER+14)
|
||||
|
||||
/* MVME162 version register */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user