Lines Matching refs:Byte_t

162 static Byte_t RData[RDATASIZE] = {
183 static Byte_t RRegData[RREGDATASIZE] = {
210 static Byte_t sBitMapClrTbl[8] = {
214 static Byte_t sBitMapSetTbl[8] = {
237 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode);
244 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data);
247 int IRQNum, Byte_t Frequency, int PeriodicOnly);
1864 WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, in sPCIInitController()
2595 int IRQNum, Byte_t Frequency, int PeriodicOnly) in sInitController()
2635 sOutB(MudbacIO, (Byte_t) (io >> 6)); /* set up AIOP I/O in MUDBAC */ in sInitController()
2670 Byte_t AiopID; /* ID byte from AIOP */ in sReadAiopID()
2697 static Byte_t R[4] = { 0x00, 0x00, 0x34, 0x12 }; in sReadAiopNumChan()
2731 Byte_t *ChR; in sInitChan()
2733 static Byte_t R[4]; in sInitChan()
2785 ChP->BaudDiv[0] = (Byte_t) (ChOff + _BAUD); in sInitChan()
2786 ChP->BaudDiv[1] = (Byte_t) ((ChOff + _BAUD) >> 8); in sInitChan()
2787 ChP->BaudDiv[2] = (Byte_t) brd9600; in sInitChan()
2788 ChP->BaudDiv[3] = (Byte_t) (brd9600 >> 8); in sInitChan()
2791 ChP->TxControl[0] = (Byte_t) (ChOff + _TX_CTRL); in sInitChan()
2792 ChP->TxControl[1] = (Byte_t) ((ChOff + _TX_CTRL) >> 8); in sInitChan()
2797 ChP->RxControl[0] = (Byte_t) (ChOff + _RX_CTRL); in sInitChan()
2798 ChP->RxControl[1] = (Byte_t) ((ChOff + _RX_CTRL) >> 8); in sInitChan()
2803 ChP->TxEnables[0] = (Byte_t) (ChOff + _TX_ENBLS); in sInitChan()
2804 ChP->TxEnables[1] = (Byte_t) ((ChOff + _TX_ENBLS) >> 8); in sInitChan()
2809 ChP->TxCompare[0] = (Byte_t) (ChOff + _TXCMP1); in sInitChan()
2810 ChP->TxCompare[1] = (Byte_t) ((ChOff + _TXCMP1) >> 8); in sInitChan()
2815 ChP->TxReplace1[0] = (Byte_t) (ChOff + _TXREP1B1); in sInitChan()
2816 ChP->TxReplace1[1] = (Byte_t) ((ChOff + _TXREP1B1) >> 8); in sInitChan()
2821 ChP->TxReplace2[0] = (Byte_t) (ChOff + _TXREP2); in sInitChan()
2822 ChP->TxReplace2[1] = (Byte_t) ((ChOff + _TXREP2) >> 8); in sInitChan()
2830 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESTXFCNT); /* apply reset Tx FIFO count */ in sInitChan()
2831 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Tx FIFO count */ in sInitChan()
2837 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESRXFCNT); /* apply reset Rx FIFO count */ in sInitChan()
2838 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Rx FIFO count */ in sInitChan()
2875 Byte_t R[4]; in sStopRxProcessor()
2901 Byte_t Ch; /* channel number within AIOP */ in sFlushRxFIFO()
2915 Ch = (Byte_t) sGetChanNum(ChP); in sFlushRxFIFO()
2943 Byte_t Ch; /* channel number within AIOP */ in sFlushTxFIFO()
2957 Ch = (Byte_t) sGetChanNum(ChP); in sFlushTxFIFO()
2980 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data) in sWriteTxPrioByte()
2982 Byte_t DWBuf[4]; /* buffer for double word writes */ in sWriteTxPrioByte()
3044 Byte_t Mask; /* Interrupt Mask Register */ in sEnInterrupts()
3047 ((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sEnInterrupts()
3051 ChP->TxControl[2] |= ((Byte_t) Flags & TXINT_EN); in sEnInterrupts()
3088 Byte_t Mask; /* Interrupt Mask Register */ in sDisInterrupts()
3091 ~((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sDisInterrupts()
3093 ChP->TxControl[2] &= ~((Byte_t) Flags & TXINT_EN); in sDisInterrupts()
3102 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode) in sSetInterfaceMode()
3114 Byte_t val; in sModemReset()