Lines Matching refs:pCardInfo
60 ag_card_info_t *pCardInfo = TIROOT_TO_CARDINFO( ptiRoot ); in ostiAllocMemory() local
68 if( pCardInfo->topOfFreeDynamicMem == 0 ) { in ostiAllocMemory()
74 pMem = pCardInfo->freeDynamicMem[pCardInfo->topOfFreeDynamicMem - 1]; in ostiAllocMemory()
98 pCardInfo->topOfFreeDynamicMem--; in ostiAllocMemory()
197 ag_card_info_t *pCardInfo; in ostiChipReadBit32() local
199 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipReadBit32()
200 data = *(U32 *)(pCardInfo->pciMemVirtAddr + chipOffset); in ostiChipReadBit32()
216 ag_card_info_t *pCardInfo; in ostiChipWriteBit32() local
217 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipWriteBit32()
218 *(U32 *)(pCardInfo->pciMemVirtAddr + chipOffset) = chipValue; in ostiChipWriteBit32()
237 ag_card_info_t *pCardInfo; in ostiChipReadBit32Ext() local
239 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipReadBit32Ext()
240 data = *(U32 *)((pCardInfo->pciMemVirtAddrSpc[busBaseNumber]) + chipOffset ); in ostiChipReadBit32Ext()
260 ag_card_info_t *pCardInfo; in ostiChipWriteBit32Ext() local
261 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipWriteBit32Ext()
262 *(U32 *)((pCardInfo->pciMemVirtAddrSpc[busBaseNumber]) + chipOffset ) = aData; in ostiChipWriteBit32Ext()
277 ag_card_info_t *pCardInfo; in ostiChipReadBit8() local
278 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipReadBit8()
279 return *(U08 *)( pCardInfo->pciMemVirtAddr + chipOffset ); in ostiChipReadBit8()
294 ag_card_info_t *pCardInfo; in ostiChipWriteBit8() local
295 pCardInfo = TIROOT_TO_CARDINFO(ptiRoot); in ostiChipWriteBit8()
296 *(U08 *)( pCardInfo->pciMemVirtAddr + chipOffset ) = chipValue; in ostiChipWriteBit8()
324 ag_card_info_t *pCardInfo = TIROOT_TO_CARDINFO( ptiRoot ); in ostiFreeMemory() local
342 if (pCardInfo->topOfFreeDynamicMem == AGTIAPI_DYNAMIC_MAX) { in ostiFreeMemory()
348 pCardInfo->freeDynamicMem[pCardInfo->topOfFreeDynamicMem++] = pMem; in ostiFreeMemory()