CTLP              440 drivers/tty/rocket_int.h #define sControllerEOI(CTLP) sOutB((CTLP)->MReg2IO,(CTLP)->MReg2 | INT_STROB)
CTLP              450 drivers/tty/rocket_int.h #define sPCIControllerEOI(CTLP) \
CTLP              452 drivers/tty/rocket_int.h     if ((CTLP)->isUPCI) { \
CTLP              453 drivers/tty/rocket_int.h 	Word_t w = sInW((CTLP)->PCIIO); \
CTLP              454 drivers/tty/rocket_int.h 	sOutW((CTLP)->PCIIO, (w ^ PCI_INT_CTRL_AIOP)); \
CTLP              455 drivers/tty/rocket_int.h 	sOutW((CTLP)->PCIIO, w); \
CTLP              458 drivers/tty/rocket_int.h 	sOutW((CTLP)->PCIIO, PCI_STROB); \
CTLP              469 drivers/tty/rocket_int.h #define sDisAiop(CTLP,AIOPNUM) \
CTLP              471 drivers/tty/rocket_int.h    (CTLP)->MReg3 &= sBitMapClrTbl[AIOPNUM]; \
CTLP              472 drivers/tty/rocket_int.h    sOutB((CTLP)->MReg3IO,(CTLP)->MReg3); \
CTLP              584 drivers/tty/rocket_int.h #define sEnAiop(CTLP,AIOPNUM) \
CTLP              586 drivers/tty/rocket_int.h    (CTLP)->MReg3 |= sBitMapSetTbl[AIOPNUM]; \
CTLP              587 drivers/tty/rocket_int.h    sOutB((CTLP)->MReg3IO,(CTLP)->MReg3); \
CTLP              728 drivers/tty/rocket_int.h #define sGetAiopIntStatus(CTLP,AIOPNUM) sInB((CTLP)->AiopIntChanIO[AIOPNUM])
CTLP              738 drivers/tty/rocket_int.h #define sGetAiopNumChan(CTLP,AIOPNUM) (CTLP)->AiopNumChan[AIOPNUM]
CTLP              833 drivers/tty/rocket_int.h #define sGetControllerIntStatus(CTLP) (sInB((CTLP)->MReg1IO) & 0x0f)
CTLP              846 drivers/tty/rocket_int.h #define sPCIGetControllerIntStatus(CTLP) \
CTLP              847 drivers/tty/rocket_int.h 	((CTLP)->isUPCI ? \
CTLP              848 drivers/tty/rocket_int.h 	  (sInW((CTLP)->PCIIO2) & UPCI_AIOP_INTR_BITS) : \
CTLP              849 drivers/tty/rocket_int.h 	  ((sInW((CTLP)->PCIIO) >> 8) & AIOP_INTR_BITS))
CTLP              907 drivers/tty/rocket_int.h #define sResetAiopByNum(CTLP,AIOPNUM) \
CTLP              909 drivers/tty/rocket_int.h    sOutB((CTLP)->AiopIO[(AIOPNUM)]+_CMD_REG,RESET_ALL); \
CTLP              910 drivers/tty/rocket_int.h    sOutB((CTLP)->AiopIO[(AIOPNUM)]+_CMD_REG,0x0); \