Lines Matching refs:rowAddr
38 static cy_en_flashdrv_status_t Cy_Flash_GetRowDetails(uint32_t rowAddr, uint8_t *rowID, cy_en_flash…
984 cy_en_flashdrv_status_t Cy_Flash_StartWrite(uint32_t rowAddr, const uint32_t* data) in Cy_Flash_StartWrite() argument
998 .destAddr = (const uint32_t *)rowAddr, in Cy_Flash_StartWrite()
1007 if(Cy_Flash_WorkBoundsCheck(rowAddr) == CY_FLASH_IN_BOUNDS) in Cy_Flash_StartWrite()
1011 else if(Cy_Flash_MainBoundsCheck(rowAddr) == CY_FLASH_IN_BOUNDS) in Cy_Flash_StartWrite()
1022 for(uint32_t i_addr = rowAddr; i_addr < rowAddr + CY_FLASH_SIZEOF_ROW; i_addr+=prog_length) in Cy_Flash_StartWrite()
1111 cy_en_flashdrv_status_t Cy_Flash_ProgramRow(uint32_t rowAddr, const uint32_t* data) in Cy_Flash_ProgramRow() argument
1123 .destAddr = (const uint32_t *)rowAddr, in Cy_Flash_ProgramRow()
1132 if(Cy_Flash_WorkBoundsCheck(rowAddr) == CY_FLASH_IN_BOUNDS) in Cy_Flash_ProgramRow()
1136 else if(Cy_Flash_MainBoundsCheck(rowAddr) == CY_FLASH_IN_BOUNDS) in Cy_Flash_ProgramRow()
1146 for(uint32_t i_addr = rowAddr; i_addr < rowAddr + CY_FLASH_SIZEOF_ROW; i_addr+=prog_length) in Cy_Flash_ProgramRow()
1249 cy_en_flashdrv_status_t Cy_Flash_RowChecksum(uint32_t rowAddr, uint32_t* checksumPtr) in Cy_Flash_RowChecksum() argument
1257 if ((Cy_Flash_BoundsCheck(rowAddr)== CY_FLASH_OUT_OF_BOUNDS) || (checksumPtr == NULL)) in Cy_Flash_RowChecksum()
1261 if (CY_FLASH_DRV_SUCCESS == Cy_Flash_GetRowDetails(rowAddr,&rowID, &bank, ®ion)) in Cy_Flash_RowChecksum()
1282 static cy_en_flashdrv_status_t Cy_Flash_GetRowDetails(uint32_t rowAddr, uint8_t *rowID, cy_en_flash… in Cy_Flash_GetRowDetails() argument
1285 if (Cy_Flash_WorkBoundsCheck(rowAddr) == CY_FLASH_OUT_OF_BOUNDS) in Cy_Flash_GetRowDetails()
1293 if ((rowAddr >= CY_WFLASH_LG_SBM_TOP) && (rowAddr < CY_WFLASH_SM_SBM_END)) in Cy_Flash_GetRowDetails()
1296 ((rowAddr - CY_WFLASH_LG_SBM_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()
1300 else if ((rowAddr >= CY_FLASH_LG_SBM_TOP) && (rowAddr < CY_FLASH_SM_SBM_END)) in Cy_Flash_GetRowDetails()
1303 ((rowAddr - CY_WFLASH_LG_SBM_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()
1314 if ((rowAddr >= CY_WFLASH_LG_DBM0_TOP) && (rowAddr < CY_WFLASH_SM_DBM0_END)) in Cy_Flash_GetRowDetails()
1317 ((rowAddr - CY_WFLASH_LG_DBM0_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()
1321 else if ((rowAddr >= CY_WFLASH_LG_DBM1_TOP) && (rowAddr < CY_WFLASH_SM_DBM1_END)) in Cy_Flash_GetRowDetails()
1324 ((rowAddr - CY_WFLASH_LG_SBM_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()
1328 else if ((rowAddr >= CY_FLASH_LG_DBM0_TOP) && (rowAddr < CY_FLASH_SM_DBM0_END)) in Cy_Flash_GetRowDetails()
1331 ((rowAddr - CY_FLASH_LG_DBM0_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()
1335 else if ((rowAddr >= CY_FLASH_LG_DBM1_TOP) && (rowAddr < CY_FLASH_SM_DBM1_END)) in Cy_Flash_GetRowDetails()
1338 ((rowAddr - CY_FLASH_LG_DBM1_TOP) / CY_FLASH_SIZEOF_ROW)); in Cy_Flash_GetRowDetails()