Searched refs:ui32Mask (Results 1 – 8 of 8) sorted by relevance
/lk-master/external/platform/cc13xx/cc13xxware/driverlib/ |
A D | ddi.c | 65 uint32_t ui32Mask, uint32_t ui32WrData) in DDI16BitWrite() argument 74 ASSERT(!((ui32Mask & 0xFFFF0000) ^ (ui32Mask & 0x0000FFFF))); in DDI16BitWrite() 85 if(ui32Mask & 0xFFFF0000) in DDI16BitWrite() 88 ui32Mask >>= 16; in DDI16BitWrite() 94 ui32Data = ui32WrData ? ui32Mask : 0x0; in DDI16BitWrite() 132 ui32Mask = ui32Mask >> 16; in DDI16BitfieldWrite() 170 if(ui32Mask & 0xFFFF0000) in DDI16BitRead() 173 ui32Mask = ui32Mask >> 16; in DDI16BitRead() 184 ui16Data = ui16Data & ui32Mask; in DDI16BitRead() 221 ui32Mask = ui32Mask >> 16; in DDI16BitfieldRead() [all …]
|
A D | rfc.h | 152 RFCCpe0IntEnable(uint32_t ui32Mask) in RFCCpe0IntEnable() argument 170 HWREG(RFC_DBELL_BASE + RFC_DBELL_O_RFCPEIEN) |= ui32Mask; in RFCCpe0IntEnable() 180 RFCCpe1IntEnable(uint32_t ui32Mask) in RFCCpe1IntEnable() argument 198 HWREG(RFC_DBELL_BASE + RFC_DBELL_O_RFCPEIEN) |= ui32Mask; in RFCCpe1IntEnable() 209 RFCHwIntEnable(uint32_t ui32Mask) in RFCHwIntEnable() argument 219 HWREG(RFC_DBELL_BASE + RFC_DBELL_O_RFHWIEN) |= ui32Mask; in RFCHwIntEnable() 229 RFCCpeIntDisable(uint32_t ui32Mask) in RFCCpeIntDisable() argument 252 RFCHwIntDisable(uint32_t ui32Mask) in RFCHwIntDisable() argument 257 HWREG(RFC_DBELL_BASE + RFC_DBELL_O_RFHWIEN) &= ~ui32Mask; in RFCHwIntDisable() 280 RFCCpeIntClear(uint32_t ui32Mask) in RFCCpeIntClear() argument [all …]
|
A D | ddi.h | 449 uint32_t ui32Mask, uint32_t ui32Val) in DDI16SetValBit() argument 459 ASSERT(!(ui32Mask & 0xFFFF0000)); in DDI16SetValBit() 470 AuxAdiDdiSafeWrite(ui32Base + ui32RegOffset, (ui32Mask << 16) | ui32Val, 4); in DDI16SetValBit() 493 uint32_t ui32Mask, uint32_t ui32WrData); 516 uint32_t ui32Mask, uint32_t ui32Shift, 534 uint32_t ui32Mask); 555 uint32_t ui32Mask, uint32_t ui32Shift);
|
A D | trng.h | 315 uint32_t ui32Mask; in TRNGIntStatus() local 323 ui32Mask = HWREG(TRNG_BASE + TRNG_O_IRQFLAGMASK); in TRNGIntStatus() 324 return(ui32Mask & HWREG(TRNG_BASE + TRNG_O_IRQFLAGSTAT)); in TRNGIntStatus()
|
A D | crypto.h | 600 uint32_t ui32Mask; in CRYPTOIntStatus() local 608 ui32Mask = HWREG(CRYPTO_BASE + CRYPTO_O_IRQEN); in CRYPTOIntStatus() 609 return(ui32Mask & HWREG(CRYPTO_BASE + CRYPTO_O_IRQSTAT)); in CRYPTOIntStatus()
|
A D | i2s.h | 679 uint32_t ui32Mask; in I2SIntStatus() local 692 ui32Mask = HWREG(I2S0_BASE + I2S_O_IRQFLAGS); in I2SIntStatus() 693 return(ui32Mask & HWREG(I2S0_BASE + I2S_O_IRQMASK)); in I2SIntStatus()
|
A D | adi.h | 895 ADI16SetValBit(uint32_t ui32Base, uint32_t ui32Reg, uint32_t ui32Mask, in ADI16SetValBit() argument 906 ASSERT(!(ui32Mask & 0xFFFF0000)); in ADI16SetValBit() 918 AuxAdiDdiSafeWrite(ui32Base + ui32RegOffset, (ui32Mask << 16) | ui32Val, 4); in ADI16SetValBit() 920 HWREG(ui32Base + ui32RegOffset) = (ui32Mask << 16) | ui32Val; in ADI16SetValBit()
|
A D | rom.h | 356 ((void (*)(uint32_t ui32Base, uint32_t ui32Reg, uint32_t ui32Mask, uint32_t ui32WrData)) \ 360 …((void (*)(uint32_t ui32Base, uint32_t ui32Reg, uint32_t ui32Mask, uint32_t ui32Shift, uint16_t ui… 364 ((uint16_t (*)(uint32_t ui32Base, uint32_t ui32Reg, uint32_t ui32Mask)) \ 368 ((uint16_t (*)(uint32_t ui32Base, uint32_t ui32Reg, uint32_t ui32Mask, uint32_t ui32Shift)) \
|
Completed in 20 milliseconds