/third_party/uboot/u-boot-2020.01/drivers/net/ |
D | ftmac110.c | 60 struct ftmac110_desc *txd; member 214 chip->txd[i].ctrl &= cpu_to_le64(FTMAC110_TXD_CLRMASK); in ftmac110_reset() 283 struct ftmac110_desc *txd; in ftmac110_send() local 296 txd = &chip->txd[chip->txd_idx]; in ftmac110_send() 297 ctrl = le64_to_cpu(txd->ctrl); in ftmac110_send() 305 memcpy(txd->vbuf, (void *)pkt, len); in ftmac110_send() 306 dma_map_single(txd->vbuf, len, DMA_TO_DEVICE); in ftmac110_send() 315 txd->ctrl = cpu_to_le64(ctrl); in ftmac110_send() 430 chip->txd = dma_alloc_coherent( in ftmac110_initialize() 432 if (!chip->txd) in ftmac110_initialize() [all …]
|
D | pic32_eth.c | 391 struct eth_dma_desc *txd; in pic32_eth_send() local 394 txd = &priv->txd_ring[0]; in pic32_eth_send() 397 txd->hdr = EDH_SOP | EDH_EOP | EDH_EOWN | EDH_BCOUNT(length); in pic32_eth_send() 400 txd->data_buff = virt_to_phys(packet); in pic32_eth_send() 403 __func__, __LINE__, txd->hdr, txd->data_buff, txd->stat2, in pic32_eth_send() 404 txd->next_ed); in pic32_eth_send() 410 flush_dcache_range((ulong)txd, (ulong)txd + sizeof(*txd)); in pic32_eth_send() 413 writel(virt_to_phys(txd), &ectl_p->txst.raw); in pic32_eth_send() 437 invalidate_dcache_range((ulong)txd, (ulong)txd + sizeof(*txd)); in pic32_eth_send() 438 if (!(txd->hdr & EDH_EOWN)) in pic32_eth_send()
|
D | ns8382x.c | 243 static BufferDesc txd __attribute__ ((aligned(8))); variable 619 txd.link = (u32) 0; in ns8382x_init_txd() 620 txd.bufptr = cpu_to_le32((u32) & txb[0]); in ns8382x_init_txd() 621 txd.cmdsts = (u32) 0; in ns8382x_init_txd() 622 txd.extsts = (u32) 0; in ns8382x_init_txd() 625 OUTL(dev, phys_to_bus((u32)&txd), TxRingPtr); in ns8382x_init_txd() 628 INL(dev, TxRingPtr), &txd); in ns8382x_init_txd() 747 txd.link = cpu_to_le32(0x0); in ns8382x_send() 748 txd.bufptr = cpu_to_le32(phys_to_bus((u32)packet)); in ns8382x_send() 749 txd.extsts = cpu_to_le32(0x0); in ns8382x_send() [all …]
|
D | natsemi.c | 218 static BufferDesc txd __attribute__ ((aligned(4))); variable 657 txd.link = (u32) 0; in natsemi_init_txd() 658 txd.cmdsts = (u32) 0; in natsemi_init_txd() 659 txd.bufptr = (u32) & txb[0]; in natsemi_init_txd() 662 OUTL(dev, (u32) & txd, TxRingPtr); in natsemi_init_txd() 771 txd.link = cpu_to_le32(0); in natsemi_send() 772 txd.bufptr = cpu_to_le32(phys_to_bus((u32) packet)); in natsemi_send() 773 txd.cmdsts = cpu_to_le32(DescOwn | length); in natsemi_send() 776 OUTL(dev, phys_to_bus((u32) & txd), TxRingPtr); in natsemi_send() 786 (*res = le32_to_cpu(txd.cmdsts)) & DescOwn; in natsemi_send()
|
/third_party/uboot/u-boot-2020.01/drivers/spi/ |
D | soft_spi_legacy.c | 110 const u8 *txd = dout; in spi_xfer() local 117 slave->bus, slave->cs, *(uint *)txd, *(uint *)rxd, bitlen); in spi_xfer() 127 if (txd) in spi_xfer() 128 tmpdout = *txd++; in spi_xfer()
|
D | soft_spi.c | 115 const u8 *txd = dout; in soft_spi_xfer() local 121 dev->parent->name, dev->name, *(uint *)txd, *(uint *)rxd, in soft_spi_xfer() 132 if (txd) in soft_spi_xfer() 133 tmpdout = *txd++; in soft_spi_xfer()
|
D | mscc_bb_spi.c | 122 const u8 *txd = dout; in mscc_bb_spi_xfer() local 139 if (txd && txd[i] & mask) in mscc_bb_spi_xfer()
|
/third_party/uboot/u-boot-2020.01/drivers/serial/ |
D | serial_mxc.c | 119 u32 txd; member 212 writel(c, &mxc_base->txd); in mxc_serial_putc() 303 writel(ch, &uart->txd); in mxc_serial_putc() 388 writel(ch, &base->txd); in _debug_uart_putc()
|
/third_party/ffmpeg/tests/fate/ |
D | video.mak | 312 FATE_TXD += fate-txd-16bpp 313 fate-txd-16bpp: CMD = framecrc -i $(TARGET_SAMPLES)/txd/misc.txd -an 315 FATE_TXD += fate-txd-odd 316 fate-txd-odd: CMD = framecrc -i $(TARGET_SAMPLES)/txd/odd.txd -an 318 FATE_TXD += fate-txd-pal8 319 fate-txd-pal8: CMD = framecrc -i $(TARGET_SAMPLES)/txd/outro.txd -pix_fmt rgb24 -an 322 fate-txd: $(FATE_TXD)
|
/third_party/uboot/u-boot-2020.01/include/ |
D | i2s.h | 74 unsigned int txd; /* Transmit data register */ member
|
/third_party/uboot/u-boot-2020.01/drivers/sound/ |
D | samsung-i2s.c | 274 writel(*ptr++, &i2s_reg->txd); in i2s_transfer_tx_data() 282 writel(*ptr++, &i2s_reg->txd); in i2s_transfer_tx_data()
|
/third_party/uboot/u-boot-2020.01/arch/arm/dts/ |
D | armada-388-clearfog.dts | 336 MPP25: ua1:txd x mikro tx
|
D | rk3128.dtsi | 781 spi0_txd_mux0:spi0-txd-mux0 {
|
/third_party/ffmpeg/ |
D | MAINTAINERS | 249 txd.c Ivo van Poorten 495 txd.c Ivo van Poorten
|
D | BUILD.gn | 848 "//third_party/ffmpeg/libavcodec/txd.c", 1369 "//third_party/ffmpeg/libavformat/txd.c",
|
/third_party/ffmpeg/libavformat/ |
D | Makefile | 530 OBJS-$(CONFIG_TXD_DEMUXER) += txd.o
|
/third_party/ffmpeg/libavcodec/ |
D | Makefile | 656 OBJS-$(CONFIG_TXD_DECODER) += txd.o
|
/third_party/python/Lib/test/ |
D | mime.types | 410 application/vnd.genomatix.tuxedo txd
|