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);
1832 WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, in sPCIInitController()
2561 int IRQNum, Byte_t Frequency, int PeriodicOnly) in sInitController()
2601 sOutB(MudbacIO, (Byte_t) (io >> 6)); /* set up AIOP I/O in MUDBAC */ in sInitController()
2636 Byte_t AiopID; /* ID byte from AIOP */ in sReadAiopID()
2663 static Byte_t R[4] = { 0x00, 0x00, 0x34, 0x12 }; in sReadAiopNumChan()
2697 Byte_t *ChR; in sInitChan()
2699 static Byte_t R[4]; in sInitChan()
2751 ChP->BaudDiv[0] = (Byte_t) (ChOff + _BAUD); in sInitChan()
2752 ChP->BaudDiv[1] = (Byte_t) ((ChOff + _BAUD) >> 8); in sInitChan()
2753 ChP->BaudDiv[2] = (Byte_t) brd9600; in sInitChan()
2754 ChP->BaudDiv[3] = (Byte_t) (brd9600 >> 8); in sInitChan()
2757 ChP->TxControl[0] = (Byte_t) (ChOff + _TX_CTRL); in sInitChan()
2758 ChP->TxControl[1] = (Byte_t) ((ChOff + _TX_CTRL) >> 8); in sInitChan()
2763 ChP->RxControl[0] = (Byte_t) (ChOff + _RX_CTRL); in sInitChan()
2764 ChP->RxControl[1] = (Byte_t) ((ChOff + _RX_CTRL) >> 8); in sInitChan()
2769 ChP->TxEnables[0] = (Byte_t) (ChOff + _TX_ENBLS); in sInitChan()
2770 ChP->TxEnables[1] = (Byte_t) ((ChOff + _TX_ENBLS) >> 8); in sInitChan()
2775 ChP->TxCompare[0] = (Byte_t) (ChOff + _TXCMP1); in sInitChan()
2776 ChP->TxCompare[1] = (Byte_t) ((ChOff + _TXCMP1) >> 8); in sInitChan()
2781 ChP->TxReplace1[0] = (Byte_t) (ChOff + _TXREP1B1); in sInitChan()
2782 ChP->TxReplace1[1] = (Byte_t) ((ChOff + _TXREP1B1) >> 8); in sInitChan()
2787 ChP->TxReplace2[0] = (Byte_t) (ChOff + _TXREP2); in sInitChan()
2788 ChP->TxReplace2[1] = (Byte_t) ((ChOff + _TXREP2) >> 8); in sInitChan()
2796 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESTXFCNT); /* apply reset Tx FIFO count */ in sInitChan()
2797 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Tx FIFO count */ in sInitChan()
2803 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESRXFCNT); /* apply reset Rx FIFO count */ in sInitChan()
2804 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Rx FIFO count */ in sInitChan()
2841 Byte_t R[4]; in sStopRxProcessor()
2867 Byte_t Ch; /* channel number within AIOP */ in sFlushRxFIFO()
2881 Ch = (Byte_t) sGetChanNum(ChP); in sFlushRxFIFO()
2909 Byte_t Ch; /* channel number within AIOP */ in sFlushTxFIFO()
2923 Ch = (Byte_t) sGetChanNum(ChP); in sFlushTxFIFO()
2946 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data) in sWriteTxPrioByte()
2948 Byte_t DWBuf[4]; /* buffer for double word writes */ in sWriteTxPrioByte()
3010 Byte_t Mask; /* Interrupt Mask Register */ in sEnInterrupts()
3013 ((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sEnInterrupts()
3017 ChP->TxControl[2] |= ((Byte_t) Flags & TXINT_EN); in sEnInterrupts()
3054 Byte_t Mask; /* Interrupt Mask Register */ in sDisInterrupts()
3057 ~((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sDisInterrupts()
3059 ChP->TxControl[2] &= ~((Byte_t) Flags & TXINT_EN); in sDisInterrupts()
3068 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode) in sSetInterfaceMode()
3080 Byte_t val; in sModemReset()