Lines Matching refs:u32Addr
67 int32_t HBI_ReadHyperRAMReg(uint32_t u32Addr) in HBI_ReadHyperRAMReg() argument
71 …if( (u32Addr == HYPERRAM_ID_REG0) || (u32Addr == HYPERRAM_ID_REG1) || (u32Addr == HYPERRAM_CONFIG_… in HBI_ReadHyperRAMReg()
73 HBI->ADR = u32Addr; in HBI_ReadHyperRAMReg()
96 int32_t HBI_WriteHyperRAMReg(uint32_t u32Addr, uint32_t u32Value) in HBI_WriteHyperRAMReg() argument
100 …if( (u32Addr == HYPERRAM_ID_REG0) || (u32Addr == HYPERRAM_ID_REG1) || (u32Addr == HYPERRAM_CONFIG_… in HBI_WriteHyperRAMReg()
102 HBI->ADR = u32Addr; in HBI_WriteHyperRAMReg()
120 uint32_t HBI_Read2Byte(uint32_t u32Addr) in HBI_Read2Byte() argument
124 if(u32Addr & 0x1) in HBI_Read2Byte()
129 HBI->ADR = u32Addr; in HBI_Read2Byte()
140 uint32_t HBI_Read4Byte(uint32_t u32Addr) in HBI_Read4Byte() argument
144 if(u32Addr & 0x3) in HBI_Read4Byte()
149 HBI->ADR = u32Addr; in HBI_Read4Byte()
162 void HBI_Write1Byte(uint32_t u32Addr, uint8_t u8Data) in HBI_Write1Byte() argument
166 HBI->ADR = u32Addr; in HBI_Write1Byte()
179 void HBI_Write2Byte(uint32_t u32Addr, uint16_t u16Data) in HBI_Write2Byte() argument
183 if(u32Addr & 0x1) in HBI_Write2Byte()
188 HBI->ADR = u32Addr; in HBI_Write2Byte()
201 void HBI_Write3Byte(uint32_t u32Addr, uint32_t u32Data) in HBI_Write3Byte() argument
205 HBI->ADR = u32Addr; in HBI_Write3Byte()
218 void HBI_Write4Byte(uint32_t u32Addr, uint32_t u32Data) in HBI_Write4Byte() argument
221 if(u32Addr & 0x3) in HBI_Write4Byte()
226 HBI->ADR = u32Addr; in HBI_Write4Byte()