Lines Matching refs:Byte_t

149 static Byte_t RData[RDATASIZE] = {
170 static Byte_t RRegData[RREGDATASIZE] = {
197 static Byte_t sBitMapClrTbl[8] = {
201 static Byte_t sBitMapSetTbl[8] = {
224 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode);
231 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data);
234 int IRQNum, Byte_t Frequency, int PeriodicOnly);
1817 WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, in sPCIInitController()
2548 int IRQNum, Byte_t Frequency, int PeriodicOnly) in sInitController()
2588 sOutB(MudbacIO, (Byte_t) (io >> 6)); /* set up AIOP I/O in MUDBAC */ in sInitController()
2623 Byte_t AiopID; /* ID byte from AIOP */ in sReadAiopID()
2650 static Byte_t R[4] = { 0x00, 0x00, 0x34, 0x12 }; in sReadAiopNumChan()
2684 Byte_t *ChR; in sInitChan()
2686 static Byte_t R[4]; in sInitChan()
2738 ChP->BaudDiv[0] = (Byte_t) (ChOff + _BAUD); in sInitChan()
2739 ChP->BaudDiv[1] = (Byte_t) ((ChOff + _BAUD) >> 8); in sInitChan()
2740 ChP->BaudDiv[2] = (Byte_t) brd9600; in sInitChan()
2741 ChP->BaudDiv[3] = (Byte_t) (brd9600 >> 8); in sInitChan()
2744 ChP->TxControl[0] = (Byte_t) (ChOff + _TX_CTRL); in sInitChan()
2745 ChP->TxControl[1] = (Byte_t) ((ChOff + _TX_CTRL) >> 8); in sInitChan()
2750 ChP->RxControl[0] = (Byte_t) (ChOff + _RX_CTRL); in sInitChan()
2751 ChP->RxControl[1] = (Byte_t) ((ChOff + _RX_CTRL) >> 8); in sInitChan()
2756 ChP->TxEnables[0] = (Byte_t) (ChOff + _TX_ENBLS); in sInitChan()
2757 ChP->TxEnables[1] = (Byte_t) ((ChOff + _TX_ENBLS) >> 8); in sInitChan()
2762 ChP->TxCompare[0] = (Byte_t) (ChOff + _TXCMP1); in sInitChan()
2763 ChP->TxCompare[1] = (Byte_t) ((ChOff + _TXCMP1) >> 8); in sInitChan()
2768 ChP->TxReplace1[0] = (Byte_t) (ChOff + _TXREP1B1); in sInitChan()
2769 ChP->TxReplace1[1] = (Byte_t) ((ChOff + _TXREP1B1) >> 8); in sInitChan()
2774 ChP->TxReplace2[0] = (Byte_t) (ChOff + _TXREP2); in sInitChan()
2775 ChP->TxReplace2[1] = (Byte_t) ((ChOff + _TXREP2) >> 8); in sInitChan()
2783 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESTXFCNT); /* apply reset Tx FIFO count */ in sInitChan()
2784 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Tx FIFO count */ in sInitChan()
2790 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESRXFCNT); /* apply reset Rx FIFO count */ in sInitChan()
2791 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Rx FIFO count */ in sInitChan()
2828 Byte_t R[4]; in sStopRxProcessor()
2854 Byte_t Ch; /* channel number within AIOP */ in sFlushRxFIFO()
2868 Ch = (Byte_t) sGetChanNum(ChP); in sFlushRxFIFO()
2896 Byte_t Ch; /* channel number within AIOP */ in sFlushTxFIFO()
2910 Ch = (Byte_t) sGetChanNum(ChP); in sFlushTxFIFO()
2933 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data) in sWriteTxPrioByte()
2935 Byte_t DWBuf[4]; /* buffer for double word writes */ in sWriteTxPrioByte()
2997 Byte_t Mask; /* Interrupt Mask Register */ in sEnInterrupts()
3000 ((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sEnInterrupts()
3004 ChP->TxControl[2] |= ((Byte_t) Flags & TXINT_EN); in sEnInterrupts()
3041 Byte_t Mask; /* Interrupt Mask Register */ in sDisInterrupts()
3044 ~((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sDisInterrupts()
3046 ChP->TxControl[2] &= ~((Byte_t) Flags & TXINT_EN); in sDisInterrupts()
3055 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode) in sSetInterfaceMode()
3067 Byte_t val; in sModemReset()