/Linux-v4.19/drivers/tty/serial/cpm_uart/ |
D | cpm_uart_core.c | 71 cbd_t __iomem *bdp = pinfo->tx_bd_base; in cpm_uart_tx_empty() local 75 if (in_be16(&bdp->cbd_sc) & BD_SC_READY) in cpm_uart_tx_empty() 78 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) { in cpm_uart_tx_empty() 82 bdp++; in cpm_uart_tx_empty() 238 cbd_t __iomem *bdp; in cpm_uart_int_rx() local 247 bdp = pinfo->rx_cur; in cpm_uart_int_rx() 256 status = in_be16(&bdp->cbd_sc); in cpm_uart_int_rx() 262 i = in_be16(&bdp->cbd_datlen); in cpm_uart_int_rx() 273 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo); in cpm_uart_int_rx() 298 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR | in cpm_uart_int_rx() [all …]
|
/Linux-v4.19/drivers/net/ethernet/freescale/fs_enet/ |
D | fs_enet-main.c | 91 cbd_t __iomem *bdp; in fs_enet_napi() local 100 bdp = fep->dirty_tx; in fs_enet_napi() 106 while (((sc = CBDR_SC(bdp)) & BD_ENET_TX_READY) == 0 && tx_left) { in fs_enet_napi() 107 dirtyidx = bdp - fep->tx_bd_base; in fs_enet_napi() 152 dma_unmap_page(fep->dev, CBDR_BUFADDR(bdp), in fs_enet_napi() 153 CBDR_DATLEN(bdp), DMA_TO_DEVICE); in fs_enet_napi() 155 dma_unmap_single(fep->dev, CBDR_BUFADDR(bdp), in fs_enet_napi() 156 CBDR_DATLEN(bdp), DMA_TO_DEVICE); in fs_enet_napi() 170 bdp++; in fs_enet_napi() 172 bdp = fep->tx_bd_base; in fs_enet_napi() [all …]
|
/Linux-v4.19/drivers/net/ethernet/freescale/ |
D | fec_main.c | 244 static struct bufdesc *fec_enet_get_nextdesc(struct bufdesc *bdp, in fec_enet_get_nextdesc() argument 247 return (bdp >= bd->last) ? bd->base in fec_enet_get_nextdesc() 248 : (struct bufdesc *)(((void *)bdp) + bd->dsize); in fec_enet_get_nextdesc() 251 static struct bufdesc *fec_enet_get_prevdesc(struct bufdesc *bdp, in fec_enet_get_prevdesc() argument 254 return (bdp <= bd->base) ? bd->last in fec_enet_get_prevdesc() 255 : (struct bufdesc *)(((void *)bdp) - bd->dsize); in fec_enet_get_prevdesc() 258 static int fec_enet_get_bd_index(struct bufdesc *bdp, in fec_enet_get_bd_index() argument 261 return ((const char *)bdp - (const char *)bd->base) >> bd->dsize_log2; in fec_enet_get_bd_index() 296 struct bufdesc *bdp; in fec_dump() local 304 bdp = txq->bd.base; in fec_dump() [all …]
|
D | gianfar.h | 273 #define skip_bd(bdp, stride, base, ring_size) ({ \ argument 274 typeof(bdp) new_bd = (bdp) + (stride); \ 277 #define next_bd(bdp, base, ring_size) skip_bd(bdp, 1, base, ring_size) argument 1303 static inline void gfar_clear_txbd_status(struct txbd8 *bdp) in gfar_clear_txbd_status() argument 1305 u32 lstatus = be32_to_cpu(bdp->lstatus); in gfar_clear_txbd_status() 1308 bdp->lstatus = cpu_to_be32(lstatus); in gfar_clear_txbd_status() 1321 struct rxbd8 *bdp; in gfar_rxbd_dma_lastfree() local 1326 bdp = &rxq->rx_bd_base[i]; in gfar_rxbd_dma_lastfree() 1328 bdp_dma += (uintptr_t)bdp - (uintptr_t)rxq->rx_bd_base; in gfar_rxbd_dma_lastfree()
|
D | gianfar.c | 155 static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp, in gfar_init_rxbdp() argument 160 bdp->bufPtr = cpu_to_be32(buf); in gfar_init_rxbdp() 163 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1) in gfar_init_rxbdp() 168 bdp->lstatus = cpu_to_be32(lstatus); in gfar_init_rxbdp() 2302 static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride, in skip_txbd() argument 2305 struct txbd8 *new_bd = bdp + stride; in skip_txbd() 2310 static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base, in next_txbd() argument 2313 return skip_txbd(bdp, 1, base, ring_size); in next_txbd() 2669 struct txbd8 *bdp, *next = NULL; in gfar_clean_tx_ring() local 2684 bdp = tx_queue->dirty_tx; in gfar_clean_tx_ring() [all …]
|
/Linux-v4.19/drivers/tty/serial/ |
D | ucc_uart.c | 257 struct qe_bd *bdp = qe_port->tx_bd_base; in qe_uart_tx_empty() local 260 if (in_be16(&bdp->status) & BD_SC_READY) in qe_uart_tx_empty() 264 if (in_be16(&bdp->status) & BD_SC_WRAP) in qe_uart_tx_empty() 271 bdp++; in qe_uart_tx_empty() 329 struct qe_bd *bdp; in qe_uart_tx_pump() local 335 bdp = qe_port->rx_cur; in qe_uart_tx_pump() 340 bdp = qe_port->tx_cur; in qe_uart_tx_pump() 342 p = qe2cpu_addr(bdp->buf, qe_port); in qe_uart_tx_pump() 345 out_be16(&bdp->length, 1); in qe_uart_tx_pump() 346 setbits16(&bdp->status, BD_SC_READY); in qe_uart_tx_pump() [all …]
|
/Linux-v4.19/drivers/net/ethernet/aeroflex/ |
D | greth.c | 400 struct greth_bd *bdp; in greth_start_xmit() local 428 bdp = greth->tx_bd_base + greth->tx_next; in greth_start_xmit() 429 dma_addr = greth_read_bd(&bdp->addr); in greth_start_xmit() 447 greth_write_bd(&bdp->stat, status); in greth_start_xmit() 469 struct greth_bd *bdp; in greth_start_xmit_gbit() local 509 bdp = greth->tx_bd_base + greth->tx_next; in greth_start_xmit_gbit() 510 greth_write_bd(&bdp->stat, status); in greth_start_xmit_gbit() 516 greth_write_bd(&bdp->addr, dma_addr); in greth_start_xmit_gbit() 524 bdp = greth->tx_bd_base + curr_tx; in greth_start_xmit_gbit() 541 greth_write_bd(&bdp->stat, status); in greth_start_xmit_gbit() [all …]
|
/Linux-v4.19/drivers/video/backlight/ |
D | cr_bllcd.c | 177 struct backlight_device *bdp; in cr_backlight_probe() local 198 bdp = devm_backlight_device_register(&pdev->dev, "cr-backlight", in cr_backlight_probe() 201 if (IS_ERR(bdp)) { in cr_backlight_probe() 203 return PTR_ERR(bdp); in cr_backlight_probe() 223 crp->cr_backlight_device = bdp; in cr_backlight_probe()
|
/Linux-v4.19/drivers/clk/mediatek/ |
D | Makefile | 10 obj-$(CONFIG_COMMON_CLK_MT2701_BDPSYS) += clk-mt2701-bdp.o 18 obj-$(CONFIG_COMMON_CLK_MT2712_BDPSYS) += clk-mt2712-bdp.o
|
/Linux-v4.19/arch/x86/platform/uv/ |
D | tlb_uv.c | 1962 struct uvhub_desc *bdp; in get_cpu_topology() local 1983 bdp = &uvhub_descs[uvhub]; in get_cpu_topology() 1985 bdp->num_cpus++; in get_cpu_topology() 1986 bdp->uvhub = uvhub; in get_cpu_topology() 1987 bdp->pnode = pnode; in get_cpu_topology() 1992 bdp->socket_mask |= (1 << socket); in get_cpu_topology() 1993 sdp = &bdp->socket[socket]; in get_cpu_topology() 2036 static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp, in scan_sock() argument 2052 bcp->cpus_in_uvhub = bdp->num_cpus; in scan_sock() 2055 bcp->uvhub = bdp->uvhub; in scan_sock() [all …]
|
/Linux-v4.19/lib/ |
D | decompress_bunzip2.c | 629 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument 642 bd = *bdp = malloc(i); in start_bunzip()
|
/Linux-v4.19/drivers/staging/mt7621-mmc/ |
D | mt6575_sd.h | 374 u32 bdp:1; member
|
D | sd.c | 1021 gpd->bdp = 1; in msdc_dma_setup() 2126 gpd->bdp = 1; /* hwo, cs, bd pointer */ in msdc_init_gpd_bd()
|
/Linux-v4.19/drivers/scsi/ |
D | qla1280.c | 695 struct qla_boards *bdp; in qla1280_info() local 699 bdp = &ql1280_board_tbl[ha->devnum]; in qla1280_info() 705 &bdp->name[0], ha->fwver1, ha->fwver2, ha->fwver3, in qla1280_info() 4224 struct qla_boards *bdp = &ql1280_board_tbl[devnum]; in qla1280_probe_one() local 4237 bdp->name, pdev->bus->number, PCI_SLOT(pdev->devfn)); in qla1280_probe_one() 4297 ha->ports = bdp->numPorts; in qla1280_probe_one() 4303 host->max_channel = bdp->numPorts - 1; in qla1280_probe_one()
|