Lines Matching refs:lastRead
541 typhoon_num_free(int lastWrite, int lastRead, int ringSize) in typhoon_num_free() argument
547 lastRead /= sizeof(struct cmd_desc); in typhoon_num_free()
548 return (ringSize + lastRead - lastWrite - 1) % ringSize; in typhoon_num_free()
573 return typhoon_num_free(ring->lastWrite, ring->lastRead, TXLO_ENTRIES); in typhoon_num_free_tx()
1261 tp->txLoRing.lastRead = 0; in typhoon_init_rings()
1262 tp->txHiRing.lastRead = 0; in typhoon_init_rings()
1506 u32 lastRead = txRing->lastRead; in typhoon_clean_tx() local
1512 while(lastRead != le32_to_cpu(*index)) { in typhoon_clean_tx()
1513 tx = (struct tx_desc *) (txRing->ringBase + lastRead); in typhoon_clean_tx()
1532 typhoon_inc_tx_index(&lastRead, 1); in typhoon_clean_tx()
1535 return lastRead; in typhoon_clean_tx()
1542 u32 lastRead; in typhoon_tx_complete() local
1546 lastRead = typhoon_clean_tx(tp, txRing, index); in typhoon_tx_complete()
1548 lastRead, TXLO_ENTRIES) > (numDesc + 2)) in typhoon_tx_complete()
1551 txRing->lastRead = lastRead; in typhoon_tx_complete()
1730 if(le32_to_cpu(indexes->txLoCleared) != tp->txLoRing.lastRead) in typhoon_poll()