/linux-6.12.1/drivers/net/ethernet/freescale/fs_enet/ |
D | fs_enet-main.c | 98 cbd_t __iomem *bdp; in fs_enet_napi() local 102 bdp = fep->dirty_tx; in fs_enet_napi() 107 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0 && tx_left) { in fs_enet_napi() 108 dirtyidx = bdp - fep->tx_bd_base; in fs_enet_napi() 150 dma_unmap_page(fep->dev, CBDR_BUFADDR(bdp), in fs_enet_napi() 151 CBDR_DATLEN(bdp), DMA_TO_DEVICE); in fs_enet_napi() 153 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp), in fs_enet_napi() 154 CBDR_DATLEN(bdp), DMA_TO_DEVICE); in fs_enet_napi() 165 bdp++; in fs_enet_napi() 167 bdp = fep->tx_bd_base; in fs_enet_napi() [all …]
|
/linux-6.12.1/drivers/tty/serial/ |
D | cpm_uart.c | 69 cbd_t __iomem *bdp = pinfo->tx_bd_base; in cpm_uart_tx_empty() local 73 if (in_be16(&bdp->cbd_sc) & BD_SC_READY) in cpm_uart_tx_empty() 76 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) { in cpm_uart_tx_empty() 80 bdp++; in cpm_uart_tx_empty() 236 cbd_t __iomem *bdp; in cpm_uart_int_rx() local 245 bdp = pinfo->rx_cur; in cpm_uart_int_rx() 254 status = in_be16(&bdp->cbd_sc); in cpm_uart_int_rx() 260 i = in_be16(&bdp->cbd_datlen); in cpm_uart_int_rx() 271 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo); in cpm_uart_int_rx() 296 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR | in cpm_uart_int_rx() [all …]
|
D | ucc_uart.c | 261 struct qe_bd __iomem *bdp = qe_port->tx_bd_base; in qe_uart_tx_empty() local 264 if (ioread16be(&bdp->status) & BD_SC_READY) in qe_uart_tx_empty() 268 if (ioread16be(&bdp->status) & BD_SC_WRAP) in qe_uart_tx_empty() 275 bdp++; in qe_uart_tx_empty() 333 struct qe_bd __iomem *bdp; in qe_uart_tx_pump() local 342 bdp = qe_port->tx_cur; in qe_uart_tx_pump() 344 p = qe2cpu_addr(ioread32be(&bdp->buf), qe_port); in qe_uart_tx_pump() 347 iowrite16be(1, &bdp->length); in qe_uart_tx_pump() 348 qe_setbits_be16(&bdp->status, BD_SC_READY); in qe_uart_tx_pump() 350 if (ioread16be(&bdp->status) & BD_SC_WRAP) in qe_uart_tx_pump() [all …]
|
/linux-6.12.1/drivers/net/ethernet/freescale/ |
D | fec_main.c | 313 static struct bufdesc *fec_enet_get_nextdesc(struct bufdesc *bdp, in fec_enet_get_nextdesc() argument 316 return (bdp >= bd->last) ? bd->base in fec_enet_get_nextdesc() 317 : (struct bufdesc *)(((void *)bdp) + bd->dsize); in fec_enet_get_nextdesc() 320 static struct bufdesc *fec_enet_get_prevdesc(struct bufdesc *bdp, in fec_enet_get_prevdesc() argument 323 return (bdp <= bd->base) ? bd->last in fec_enet_get_prevdesc() 324 : (struct bufdesc *)(((void *)bdp) - bd->dsize); in fec_enet_get_prevdesc() 327 static int fec_enet_get_bd_index(struct bufdesc *bdp, in fec_enet_get_bd_index() argument 330 return ((const char *)bdp - (const char *)bd->base) >> bd->dsize_log2; in fec_enet_get_bd_index() 355 struct bufdesc *bdp; in fec_dump() local 363 bdp = txq->bd.base; in fec_dump() [all …]
|
D | gianfar.c | 109 static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp, in gfar_init_rxbdp() argument 114 bdp->bufPtr = cpu_to_be32(buf); in gfar_init_rxbdp() 117 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1) in gfar_init_rxbdp() 122 bdp->lstatus = cpu_to_be32(lstatus); in gfar_init_rxbdp() 1248 struct rxbd8 *bdp; in gfar_alloc_rx_buffs() local 1253 bdp = &rx_queue->rx_bd_base[i]; in gfar_alloc_rx_buffs() 1266 gfar_init_rxbdp(rx_queue, bdp, in gfar_alloc_rx_buffs() 1270 bdp++; in gfar_alloc_rx_buffs() 1275 bdp = rx_queue->rx_bd_base; in gfar_alloc_rx_buffs() 1736 static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride, in skip_txbd() argument [all …]
|
D | gianfar.h | 1311 static inline void gfar_clear_txbd_status(struct txbd8 *bdp) in gfar_clear_txbd_status() argument 1313 u32 lstatus = be32_to_cpu(bdp->lstatus); in gfar_clear_txbd_status() 1316 bdp->lstatus = cpu_to_be32(lstatus); in gfar_clear_txbd_status() 1329 struct rxbd8 *bdp; in gfar_rxbd_dma_lastfree() local 1334 bdp = &rxq->rx_bd_base[i]; in gfar_rxbd_dma_lastfree() 1336 bdp_dma += (uintptr_t)bdp - (uintptr_t)rxq->rx_bd_base; in gfar_rxbd_dma_lastfree()
|
/linux-6.12.1/drivers/net/ethernet/aeroflex/ |
D | greth.c | 397 struct greth_bd *bdp; in greth_start_xmit() local 425 bdp = greth->tx_bd_base + greth->tx_next; in greth_start_xmit() 426 dma_addr = greth_read_bd(&bdp->addr); in greth_start_xmit() 444 greth_write_bd(&bdp->stat, status); in greth_start_xmit() 466 struct greth_bd *bdp; in greth_start_xmit_gbit() local 506 bdp = greth->tx_bd_base + greth->tx_next; in greth_start_xmit_gbit() 507 greth_write_bd(&bdp->stat, status); in greth_start_xmit_gbit() 513 greth_write_bd(&bdp->addr, dma_addr); in greth_start_xmit_gbit() 521 bdp = greth->tx_bd_base + curr_tx; in greth_start_xmit_gbit() 538 greth_write_bd(&bdp->stat, status); in greth_start_xmit_gbit() [all …]
|
/linux-6.12.1/lib/ |
D | decompress_bunzip2.c | 630 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument 643 bd = *bdp = malloc(i); in start_bunzip()
|
/linux-6.12.1/drivers/clk/mediatek/ |
D | Makefile | 34 obj-$(CONFIG_COMMON_CLK_MT2701_BDPSYS) += clk-mt2701-bdp.o 42 obj-$(CONFIG_COMMON_CLK_MT2712_BDPSYS) += clk-mt2712-bdp.o
|
/linux-6.12.1/net/ipv4/ |
D | tcp_bbr.c | 363 u32 bdp; in bbr_bdp() local 380 bdp = (((w * gain) >> BBR_SCALE) + BW_UNIT - 1) / BW_UNIT; in bbr_bdp() 382 return bdp; in bbr_bdp()
|
/linux-6.12.1/drivers/scsi/ |
D | qla1280.c | 659 struct qla_boards *bdp; in qla1280_info() local 663 bdp = &ql1280_board_tbl[ha->devnum]; in qla1280_info() 669 &bdp->name[0], ha->fwver1, ha->fwver2, ha->fwver3, in qla1280_info() 4142 struct qla_boards *bdp = &ql1280_board_tbl[devnum]; in qla1280_probe_one() local 4155 bdp->name, pdev->bus->number, PCI_SLOT(pdev->devfn)); in qla1280_probe_one() 4215 ha->ports = bdp->numPorts; in qla1280_probe_one() 4221 host->max_channel = bdp->numPorts - 1; in qla1280_probe_one()
|