/linux-4.1.27/drivers/net/ethernet/broadcom/ |
D | sb1250-mac.c | 789 struct sbdmadscr *dsc; in sbdma_add_rcvbuffer() local 796 dsc = d->sbdma_addptr; in sbdma_add_rcvbuffer() 853 dsc->dscr_a = virt_to_phys(sb_new->data) | in sbdma_add_rcvbuffer() 856 dsc->dscr_a = virt_to_phys(sb_new->data) | in sbdma_add_rcvbuffer() 862 dsc->dscr_b = 0; in sbdma_add_rcvbuffer() 868 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb_new; in sbdma_add_rcvbuffer() 903 struct sbdmadscr *dsc; in sbdma_add_txbuffer() local 911 dsc = d->sbdma_addptr; in sbdma_add_txbuffer() 942 dsc->dscr_a = phys | in sbdma_add_txbuffer() 951 dsc->dscr_b = V_DMA_DSCRB_OPTIONS(K_DMA_ETHTX_APPENDCRC_APPENDPAD) | in sbdma_add_txbuffer() [all …]
|
/linux-4.1.27/drivers/atm/ |
D | zatm.h | 98 u32 *dsc; /* pointer to skb's descriptor */ member 101 #define ZATM_PRV_DSC(skb) (((struct zatm_skb_prv *) (skb)->cb)->dsc)
|
D | zatm.c | 634 u32 *dsc; in do_tx() local 650 dsc = zatm_vcc->ring+zatm_vcc->ring_curr; in do_tx() 653 dsc[1] = 0; in do_tx() 654 dsc[2] = skb->len; in do_tx() 655 dsc[3] = virt_to_bus(skb->data); in do_tx() 657 dsc[0] = uPD98401_TXPD_V | uPD98401_TXPD_DP | uPD98401_TXPD_SM in do_tx() 661 EVENT("dsc (0x%lx)\n",(unsigned long) dsc,0); in do_tx() 665 dsc = NULL; in do_tx() 670 dsc = kmalloc(uPD98401_TXPD_SIZE * 2 + in do_tx() 672 if (!dsc) { in do_tx() [all …]
|
D | eni.c | 1981 void __iomem *dsc; in eni_change_qos() local 1984 dsc = tx->send+ENI_PRV_POS(skb)*4; in eni_change_qos() 1985 writel((readl(dsc) & ~(MID_SEG_RATE | MID_SEG_PR)) | in eni_change_qos() 1987 (tx->resolution << MID_SEG_RATE_SHIFT), dsc); in eni_change_qos()
|
/linux-4.1.27/arch/mips/mm/ |
D | cerr-sb1.c | 479 struct dc_state *dsc = dc_states; in dc_state_str() local 480 while (dsc->val != 0xff) { in dc_state_str() 481 if (dsc->val == state) in dc_state_str() 483 dsc++; in dc_state_str() 485 return dsc->name; in dc_state_str()
|
/linux-4.1.27/sound/pci/ctxfi/ |
D | ctdaio.c | 456 struct daio_desc dsc = {0}; in dao_rsc_reinit() local 458 dsc.type = dao->daio.type; in dao_rsc_reinit() 459 dsc.msr = desc->msr; in dao_rsc_reinit() 460 dsc.passthru = desc->passthru; in dao_rsc_reinit() 462 return dao_rsc_init(dao, &dsc, mgr); in dao_rsc_reinit()
|
/linux-4.1.27/drivers/usb/atm/ |
D | ueagle-atm.c | 2009 struct cmv_dsc_e1 *dsc = &sc->cmv_dsc.e1; in uea_dispatch_cmv_e1() local 2022 if (cmv->bFunction != dsc->function) { in uea_dispatch_cmv_e1() 2025 cmv->wIndex = cpu_to_le16(dsc->idx); in uea_dispatch_cmv_e1() 2026 put_unaligned_le32(dsc->address, in uea_dispatch_cmv_e1() 2028 cmv->wOffsetAddress = cpu_to_le16(dsc->offset); in uea_dispatch_cmv_e1() 2041 if (le16_to_cpu(cmv->wIndex) != dsc->idx || in uea_dispatch_cmv_e1() 2042 get_unaligned_le32(&cmv->dwSymbolicAddress) != dsc->address || in uea_dispatch_cmv_e1() 2043 le16_to_cpu(cmv->wOffsetAddress) != dsc->offset) in uea_dispatch_cmv_e1() 2071 struct cmv_dsc_e4 *dsc = &sc->cmv_dsc.e4; in uea_dispatch_cmv_e4() local 2080 if (be16_to_cpu(cmv->wFunction) != dsc->function) in uea_dispatch_cmv_e4() [all …]
|
/linux-4.1.27/drivers/media/platform/s5p-mfc/ |
D | s5p_mfc_opr_v5.c | 43 ctx->dsc.size = buf_size->dsc; in s5p_mfc_alloc_dec_temp_buffers_v5() 44 ret = s5p_mfc_alloc_priv_buf(dev->mem_dev_l, &ctx->dsc); in s5p_mfc_alloc_dec_temp_buffers_v5() 50 BUG_ON(ctx->dsc.dma & ((1 << MFC_BANK1_ALIGN_ORDER) - 1)); in s5p_mfc_alloc_dec_temp_buffers_v5() 51 memset(ctx->dsc.virt, 0, ctx->dsc.size); in s5p_mfc_alloc_dec_temp_buffers_v5() 60 s5p_mfc_release_priv_buf(ctx->dev->mem_dev_l, &ctx->dsc); in s5p_mfc_release_dec_desc_buffer_v5() 353 mfc_write(dev, OFFSETA(ctx->dsc.dma), S5P_FIMV_SI_CH0_DESC_ADR); in s5p_mfc_set_dec_desc_buffer() 354 mfc_write(dev, buf_size->dsc, S5P_FIMV_SI_CH0_DESC_SIZE); in s5p_mfc_set_dec_desc_buffer()
|
D | s5p_mfc_common.h | 207 unsigned int dsc; member 634 struct s5p_mfc_priv_buf dsc; member
|
D | s5p_mfc.c | 1357 .dsc = DESC_BUF_SIZE,
|
/linux-4.1.27/drivers/ide/ |
D | ide-atapi.c | 398 u8 stat, ireason, dsc = 0; in ide_pc_intr() local 466 dsc = 1; in ide_pc_intr() 475 uptodate = drive->pc_callback(drive, dsc); in ide_pc_intr()
|
D | ide-floppy.c | 62 static int ide_floppy_callback(ide_drive_t *drive, int dsc) in ide_floppy_callback() argument
|
D | ide-tape.c | 326 static int ide_tape_callback(ide_drive_t *drive, int dsc) in ide_tape_callback() argument 335 dsc, err); in ide_tape_callback() 337 if (dsc) in ide_tape_callback()
|
/linux-4.1.27/arch/alpha/include/asm/ |
D | core_tsunami.h | 67 tsunami_64 dsc; member
|
D | core_titan.h | 74 titan_64 dsc; member
|
/linux-4.1.27/arch/s390/kernel/ |
D | compat_wrapper.c | 174 COMPAT_SYSCALL_WRAP5(add_key, const char __user *, tp, const char __user *, dsc, const void __user … 175 COMPAT_SYSCALL_WRAP4(request_key, const char __user *, tp, const char __user *, dsc, const char __u…
|
/linux-4.1.27/Documentation/ide/ |
D | ChangeLog.ide-floppy.1996-2002 | 40 * monitor the dsc bit in the status register.
|
/linux-4.1.27/arch/alpha/kernel/ |
D | core_tsunami.c | 403 printk("%s: CSR_DSC 0x%lx\n", __func__, TSUNAMI_dchip->dsc.csr); in tsunami_init_arch()
|
D | core_titan.c | 380 printk("%s: CSR_DSC 0x%lx\n", __func__, TITAN_dchip->dsc.csr); in titan_init_arch()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pciercx-defs.h | 3109 uint32_t dsc:1; member 3115 uint32_t dsc:1;
|
/linux-4.1.27/arch/mips/pci/ |
D | pcie-octeon.c | 1316 pciercx_cfg515.s.dsc = 1; in __cvmx_pcie_rc_initialize_gen2()
|