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);
1851 WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, in sPCIInitController()
2582 int IRQNum, Byte_t Frequency, int PeriodicOnly) in sInitController()
2622 sOutB(MudbacIO, (Byte_t) (io >> 6)); /* set up AIOP I/O in MUDBAC */ in sInitController()
2657 Byte_t AiopID; /* ID byte from AIOP */ in sReadAiopID()
2684 static Byte_t R[4] = { 0x00, 0x00, 0x34, 0x12 }; in sReadAiopNumChan()
2718 Byte_t *ChR; in sInitChan()
2720 static Byte_t R[4]; in sInitChan()
2772 ChP->BaudDiv[0] = (Byte_t) (ChOff + _BAUD); in sInitChan()
2773 ChP->BaudDiv[1] = (Byte_t) ((ChOff + _BAUD) >> 8); in sInitChan()
2774 ChP->BaudDiv[2] = (Byte_t) brd9600; in sInitChan()
2775 ChP->BaudDiv[3] = (Byte_t) (brd9600 >> 8); in sInitChan()
2778 ChP->TxControl[0] = (Byte_t) (ChOff + _TX_CTRL); in sInitChan()
2779 ChP->TxControl[1] = (Byte_t) ((ChOff + _TX_CTRL) >> 8); in sInitChan()
2784 ChP->RxControl[0] = (Byte_t) (ChOff + _RX_CTRL); in sInitChan()
2785 ChP->RxControl[1] = (Byte_t) ((ChOff + _RX_CTRL) >> 8); in sInitChan()
2790 ChP->TxEnables[0] = (Byte_t) (ChOff + _TX_ENBLS); in sInitChan()
2791 ChP->TxEnables[1] = (Byte_t) ((ChOff + _TX_ENBLS) >> 8); in sInitChan()
2796 ChP->TxCompare[0] = (Byte_t) (ChOff + _TXCMP1); in sInitChan()
2797 ChP->TxCompare[1] = (Byte_t) ((ChOff + _TXCMP1) >> 8); in sInitChan()
2802 ChP->TxReplace1[0] = (Byte_t) (ChOff + _TXREP1B1); in sInitChan()
2803 ChP->TxReplace1[1] = (Byte_t) ((ChOff + _TXREP1B1) >> 8); in sInitChan()
2808 ChP->TxReplace2[0] = (Byte_t) (ChOff + _TXREP2); in sInitChan()
2809 ChP->TxReplace2[1] = (Byte_t) ((ChOff + _TXREP2) >> 8); in sInitChan()
2817 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESTXFCNT); /* apply reset Tx FIFO count */ in sInitChan()
2818 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Tx FIFO count */ in sInitChan()
2824 sOutB(ChP->Cmd, (Byte_t) ChanNum | RESRXFCNT); /* apply reset Rx FIFO count */ in sInitChan()
2825 sOutB(ChP->Cmd, (Byte_t) ChanNum); /* remove reset Rx FIFO count */ in sInitChan()
2862 Byte_t R[4]; in sStopRxProcessor()
2888 Byte_t Ch; /* channel number within AIOP */ in sFlushRxFIFO()
2902 Ch = (Byte_t) sGetChanNum(ChP); in sFlushRxFIFO()
2930 Byte_t Ch; /* channel number within AIOP */ in sFlushTxFIFO()
2944 Ch = (Byte_t) sGetChanNum(ChP); in sFlushTxFIFO()
2967 static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data) in sWriteTxPrioByte()
2969 Byte_t DWBuf[4]; /* buffer for double word writes */ in sWriteTxPrioByte()
3031 Byte_t Mask; /* Interrupt Mask Register */ in sEnInterrupts()
3034 ((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sEnInterrupts()
3038 ChP->TxControl[2] |= ((Byte_t) Flags & TXINT_EN); in sEnInterrupts()
3075 Byte_t Mask; /* Interrupt Mask Register */ in sDisInterrupts()
3078 ~((Byte_t) Flags & (RXINT_EN | SRCINT_EN | MCINT_EN)); in sDisInterrupts()
3080 ChP->TxControl[2] &= ~((Byte_t) Flags & TXINT_EN); in sDisInterrupts()
3089 static void sSetInterfaceMode(CHANNEL_T * ChP, Byte_t mode) in sSetInterfaceMode()
3101 Byte_t val; in sModemReset()