Lines Matching refs:SIB
38 #define SIB ((volatile SIB_Interface *) (SIB_BASE)) macro
57 #define GET_ASD ((SIB->MCCR >> 0) & 0x3f) /* Audio Sample Rate Div. */
58 #define GET_TSD ((SIB->MCCR >> 8) & 0x3f) /* Telcom Sample Rate Div. */
59 #define GET_MCE ((SIB->MCCR >> 16) & 0x01) /* SIB Enable */
60 #define GET_ECS ((SIB->MCCR >> 17) & 0x01) /* External Clock Select */
61 #define GET_ADM ((SIB->MCCR >> 18) & 0x01) /* A/D Data Sampling Mode */
62 #define GET_TTM ((SIB->MCCR >> 19) & 0x01) /* Telco Trans. FIFO I mask */
63 #define GET_TRM ((SIB->MCCR >> 20) & 0x01) /* Telco Recv. FIFO I mask */
64 #define GET_ATM ((SIB->MCCR >> 21) & 0x01) /* Audio Trans. FIFO I mask */
65 #define GET_ARM ((SIB->MCCR >> 22) & 0x01) /* Audio Recv. FIFO I mask */
66 #define GET_LBM ((SIB->MCCR >> 23) & 0x01) /* Loop Back Mode */
67 #define GET_ECP ((SIB->MCCR >> 24) & 0x03) /* Extern. Clck Prescale sel */
68 #define GET_PMC ((SIB->MCCR >> 26) & 0x01) /* PIN Multiplexer Control */
69 #define GET_ERI ((SIB->MCCR >> 27) & 0x01) /* External Read Interrupt */
70 #define GET_EWI ((SIB->MCCR >> 28) & 0x01) /* External Write Interrupt */
74 #define AUDIO_RECV ((SIB->MCDR0 >> 4) & 0xfff)
75 #define AUDIO_WRITE(v) ((SIB->MCDR0 = (v & 0xfff) << 4))
79 #define TELECOM_RECV ((SIB->MCDR1 >> 2) & 032fff)
80 #define TELECOM_WRITE(v) ((SIB->MCDR1 = (v & 0x3fff) << 2))
93 #define GET_ATS ((SIB->MCSR >> 0) & 0x01) /* Audio Transmit FIFO Service Req*/
94 #define GET_ARS ((SIB->MCSR >> 1) & 0x01) /* Audio Recv FIFO Service Request*/
95 #define GET_TTS ((SIB->MCSR >> 2) & 0x01) /* TELECOM Transmit FIFO Flag */
96 #define GET_TRS ((SIB->MCSR >> 3) & 0x01) /* TELECOM Recv FIFO Service Req. */
97 #define GET_ATU ((SIB->MCSR >> 4) & 0x01) /* Audio Transmit FIFO Underrun */
98 #define GET_ARO ((SIB->MCSR >> 5) & 0x01) /* Audio Receive FIFO Underrun */
99 #define GET_TTU ((SIB->MCSR >> 6) & 0x01) /* TELECOM Transmit FIFO Underrun */
100 #define GET_TRO ((SIB->MCSR >> 7) & 0x01) /* TELECOM Receive FIFO Underrun */
101 #define GET_ANF ((SIB->MCSR >> 8) & 0x01) /* Audio Transmit FIFO not full */
102 #define GET_ANE ((SIB->MCSR >> 9) & 0x01) /* Audio Receive FIFO not empty */
103 #define GET_TNF ((SIB->MCSR >> 10) & 0x01) /* Telecom Transmit FIFO not full */
104 #define GET_TNE ((SIB->MCSR >> 11) & 0x01) /* Telecom Receive FIFO not empty */
105 #define GET_CWC ((SIB->MCSR >> 12) & 0x01) /* Codec Write Complete */
106 #define GET_CRC ((SIB->MCSR >> 13) & 0x01) /* Codec Read Complete */
107 #define GET_ACE ((SIB->MCSR >> 14) & 0x01) /* Audio Codec Enabled */
108 #define GET_TCE ((SIB->MCSR >> 15) & 0x01) /* Telecom Codec Enabled */
114 #define WRITE_MCDR2(reg, data) (SIB->MCDR2 =((reg<<17)|MCDR2_rW|(data&0xffff)))
117 #define INITIATE_MCDR2_READ(reg) (SIB->MCDR2 = (reg << 17))
119 #define MCDR2_READ (SIB->MCDR2 & 0xffff)