Lines Matching refs:virt_to_phys
338 RxDescList[i].descr.next = virt_to_phys(&RxDescList[i + 1]); in etrax_ethernet_init()
339 RxDescList[i].descr.buf = L1_CACHE_ALIGN(virt_to_phys(RxDescList[i].skb->data)); in etrax_ethernet_init()
346 RxDescList[NBR_OF_RX_DESC - 1].descr.next = virt_to_phys(&RxDescList[0]); in etrax_ethernet_init()
353 TxDescList[i].descr.next = virt_to_phys(&TxDescList[i + 1].descr); in etrax_ethernet_init()
361 TxDescList[NBR_OF_TX_DESC - 1].descr.next = virt_to_phys(&TxDescList[0].descr); in etrax_ethernet_init()
590 *R_DMA_CH1_FIRST = virt_to_phys(myNextRxDesc); in e100_open()
596 *R_DMA_CH0_DESCR = virt_to_phys(myLastTxDesc); in e100_open()
1080 *R_DMA_CH0_DESCR = virt_to_phys(myLastTxDesc); in e100_tx_timeout()
1151 while ((*R_DMA_CH1_FIRST != virt_to_phys(myNextRxDesc)) && in e100rxtx_interrupt()
1171 while (virt_to_phys(myFirstTxDesc) != *R_DMA_CH0_FIRST && in e100rxtx_interrupt()
1302 myNextRxDesc->descr.buf = L1_CACHE_ALIGN(virt_to_phys(myNextRxDesc->skb->data)); in e100_rx()
1656 myNextTxDesc->descr.buf = virt_to_phys(buf); in e100_hardware_send_packet()