Searched refs:PKTALIGN (Results 1 – 17 of 17) sorted by relevance
| /u-boot/net/ |
| A D | arp.c | 28 static uchar arp_tx_packet_buf[PKTSIZE_ALIGN + PKTALIGN]; 37 arp_tx_packet = &arp_tx_packet_buf[0] + (PKTALIGN - 1); in arp_init() 38 arp_tx_packet -= (ulong)arp_tx_packet % PKTALIGN; in arp_init()
|
| A D | ndisc.c | 27 static uchar net_nd_packet_buf[PKTSIZE_ALIGN + PKTALIGN]; 315 net_nd_tx_packet = &net_nd_packet_buf[0] + (PKTALIGN - 1); in ndisc_init() 316 net_nd_tx_packet -= (ulong)net_nd_tx_packet % PKTALIGN; in ndisc_init()
|
| A D | net.c | 190 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN]; 406 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1); in net_init() 407 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN; in net_init() 1004 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN); in __net_defragment()
|
| /u-boot/drivers/net/ |
| A D | macb.c | 278 PKTALIGN)); in macb_invalidate_ring_desc() 282 PKTALIGN)); in macb_invalidate_ring_desc() 289 ALIGN(MACB_RX_DMA_DESC_SIZE, PKTALIGN)); in macb_flush_ring_desc() 292 ALIGN(MACB_TX_DMA_DESC_SIZE, PKTALIGN)); in macb_flush_ring_desc() 299 PKTALIGN)); in macb_flush_rx_buffer() 306 PKTALIGN)); in macb_invalidate_rx_buffer() 797 ALIGN(MACB_TX_DUMMY_DMA_DESC_SIZE, PKTALIGN)); in gmac_init_multi_queues()
|
| A D | mvgbe.h | 91 (((sizeof(struct mvgbe_rxdesc) / PKTALIGN) + 1) * PKTALIGN)
|
| A D | mvgbe.c | 664 dmvgbe->p_rxdesc = memalign(PKTALIGN, in mvgbe_alloc_buffers() 669 dmvgbe->p_rxbuf = memalign(PKTALIGN, in mvgbe_alloc_buffers() 678 dmvgbe->p_txdesc = memalign(PKTALIGN, sizeof(struct mvgbe_txdesc) + 1); in mvgbe_alloc_buffers()
|
| A D | npcm750_eth.c | 25 ((CFG_TX_DESCR_NUM + 1) * PKTSIZE_ALIGN + PKTALIGN) 27 ((CFG_RX_DESCR_NUM + 1) * PKTSIZE_ALIGN + PKTALIGN)
|
| A D | sni_ave.c | 162 u8 tx_adj_packetbuf[PKTSIZE_ALIGN + PKTALIGN]; 482 PKTALIGN); in ave_start()
|
| A D | fec_mxc.c | 74 #if ((PKTALIGN < ARCH_DMA_MINALIGN) || \ 75 (PKTALIGN % ARCH_DMA_MINALIGN != 0))
|
| A D | mt7628-eth.c | 592 priv->rx_buf[i] = memalign(PKTALIGN, MTK_QDMA_PAGE_SIZE); in mt7628_eth_probe()
|
| A D | mvneta.c | 1494 (ulong)packet + ALIGN(length, PKTALIGN)); in mvneta_send()
|
| A D | mvpp2.c | 5174 (unsigned long)packet + ALIGN(length, PKTALIGN)); in mvpp2_send()
|
| /u-boot/lib/efi_loader/ |
| A D | efi_net.c | 877 transmit_buffer = calloc(1, PKTSIZE_ALIGN + PKTALIGN); in efi_net_register() 880 transmit_buffer = (void *)ALIGN((uintptr_t)transmit_buffer, PKTALIGN); in efi_net_register()
|
| /u-boot/drivers/net/ti/ |
| A D | davinci_emac.c | 654 (unsigned long)packet + ALIGN(length, PKTALIGN)); in davinci_emac_send() 700 invalidate_dcache_range(tmp, tmp + ALIGN(len, PKTALIGN)); in davinci_emac_recv()
|
| A D | cpsw.c | 788 (unsigned long)packet + ALIGN(length, PKTALIGN)); in _cpsw_send()
|
| /u-boot/include/ |
| A D | net.h | 39 #define PKTALIGN ARCH_DMA_MINALIGN macro
|
| /u-boot/drivers/net/phy/ |
| A D | ncsi.c | 529 pkt = calloc(1, PKTSIZE_ALIGN + PKTALIGN); in ncsi_send_command()
|
Completed in 71 milliseconds