| /linux/drivers/mtd/devices/ |
| H A D | pmc551.c | 352 u32 size, dcmd, cfg, dtmp; in fixup_pmc551() local 397 pci_read_config_dword(dev, PMC551_PCI_MEM_MAP0, &dcmd); in fixup_pmc551() 398 dtmp = (dcmd | PMC551_PCI_MEM_MAP_ENABLE | PMC551_PCI_MEM_MAP_REG_EN); in fixup_pmc551() 512 pci_read_config_dword(dev, PMC551_DRAM_CFG, &dcmd); in fixup_pmc551() 513 dcmd |= 0x02000000; in fixup_pmc551() 514 pci_write_config_dword(dev, PMC551_DRAM_CFG, dcmd); in fixup_pmc551() 558 ((dcmd & (0x1 << 3)) == 0) ? "non-" : "", in fixup_pmc551() 564 pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dcmd); in fixup_pmc551() 568 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO", in fixup_pmc551() 569 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On", in fixup_pmc551() [all …]
|
| /linux/drivers/scsi/megaraid/ |
| H A D | megaraid_sas_base.c | 287 struct megasas_dcmd_frame *dcmd, in megasas_set_dma_settings() argument 291 dcmd->sgl.sge64[0].phys_addr = cpu_to_le64(dma_addr); in megasas_set_dma_settings() 292 dcmd->sgl.sge64[0].length = cpu_to_le32(dma_len); in megasas_set_dma_settings() 293 dcmd->flags = cpu_to_le16(dcmd->flags | MFI_FRAME_SGL64); in megasas_set_dma_settings() 296 dcmd->sgl.sge32[0].phys_addr = in megasas_set_dma_settings() 298 dcmd->sgl.sge32[0].length = cpu_to_le32(dma_len); in megasas_set_dma_settings() 299 dcmd->flags = cpu_to_le16(dcmd->flags); in megasas_set_dma_settings() 1171 cmd->frame->dcmd.opcode, __func__); in megasas_issue_blocked_cmd() 1235 opcode = cmd_to_abort->frame->dcmd.opcode; in megasas_issue_blocked_abort_cmd() 2369 struct megasas_dcmd_frame *dcmd; in megasas_get_ld_vf_affiliation_111() local [all …]
|
| H A D | megaraid_sas_fusion.c | 1307 struct megasas_dcmd_frame *dcmd; in megasas_sync_pd_seq_num() local 1324 dcmd = &cmd->frame->dcmd; in megasas_sync_pd_seq_num() 1327 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE); in megasas_sync_pd_seq_num() 1330 dcmd->mbox.b[0] = MEGASAS_DCMD_MBOX_PEND_FLAG; in megasas_sync_pd_seq_num() 1331 dcmd->flags = MFI_FRAME_DIR_WRITE; in megasas_sync_pd_seq_num() 1334 dcmd->flags = MFI_FRAME_DIR_READ; in megasas_sync_pd_seq_num() 1337 dcmd->cmd = MFI_CMD_DCMD; in megasas_sync_pd_seq_num() 1338 dcmd->cmd_status = 0xFF; in megasas_sync_pd_seq_num() 1339 dcmd->sge_count = 1; in megasas_sync_pd_seq_num() 1340 dcmd->timeout = 0; in megasas_sync_pd_seq_num() [all …]
|
| H A D | megaraid_sas.h | 2014 struct megasas_dcmd_frame dcmd; member 2736 struct megasas_dcmd_frame *dcmd,
|
| /linux/drivers/dma/ |
| H A D | pxa_dma.c | 80 u32 dcmd; /* DCMD value for the current transfer */ member 205 static inline int dbg_burst_from_dcmd(u32 dcmd) in dbg_burst_from_dcmd() argument 207 int burst = (dcmd >> 16) & 0x3; in dbg_burst_from_dcmd() 218 #define PXA_DCMD_STR(flag) (dcmd & PXA_DCMD_##flag ? #flag" " : "") 224 u32 dcmd; in descriptors_show() local 234 dcmd = desc->dcmd; in descriptors_show() 235 burst = dbg_burst_from_dcmd(dcmd); in descriptors_show() 236 width = (1 << ((dcmd >> 14) & 0x3)) >> 1; in descriptors_show() 244 dcmd, in descriptors_show() 249 dcmd & PXA_DCMD_LENGTH); in descriptors_show() [all …]
|
| H A D | mmp_pdma.c | 82 u32 dcmd; /* DCMD value for the current transfer */ member 117 u32 dcmd; member 620 chan->dcmd = DCMD_INCTRGADDR | DCMD_INCSRCADDR; in mmp_pdma_prep_memcpy() 621 chan->dcmd |= DCMD_BURST32; in mmp_pdma_prep_memcpy() 636 new->desc.dcmd = chan->dcmd | (DCMD_LENGTH & copy); in mmp_pdma_prep_memcpy() 670 new->desc.dcmd |= DCMD_ENDIRQEN; in mmp_pdma_prep_memcpy() 718 new->desc.dcmd = chan->dcmd | (DCMD_LENGTH & len); in mmp_pdma_prep_slave_sg() 751 new->desc.dcmd |= DCMD_ENDIRQEN; in mmp_pdma_prep_slave_sg() 814 new->desc.dcmd = (chan->dcmd | DCMD_ENDIRQEN | in mmp_pdma_prep_dma_cyclic() 867 chan->dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC; in mmp_pdma_config_write() [all …]
|
| /linux/drivers/rpmsg/ |
| H A D | qcom_glink_native.c | 869 struct glink_defer_cmd *dcmd; in qcom_glink_rx_defer() local 878 dcmd = kzalloc_flex(*dcmd, data, extra, GFP_ATOMIC); in qcom_glink_rx_defer() 879 if (!dcmd) in qcom_glink_rx_defer() 882 INIT_LIST_HEAD(&dcmd->node); in qcom_glink_rx_defer() 885 container_of(&dcmd->msg, struct glink_msg, hdr), 0, in qcom_glink_rx_defer() 886 sizeof(dcmd->msg) + extra); in qcom_glink_rx_defer() 889 list_add_tail(&dcmd->node, &glink->rx_queue); in qcom_glink_rx_defer() 893 qcom_glink_rx_advance(glink, sizeof(dcmd->msg) + extra); in qcom_glink_rx_defer() 1772 struct glink_defer_cmd *dcmd; in qcom_glink_work() local 1785 dcmd = list_first_entry(&glink->rx_queue, in qcom_glink_work() [all …]
|
| /linux/Documentation/driver-api/media/drivers/ |
| H A D | pxa_camera.rst | 118 - finisher: has ddadr=DADDR_STOP, dcmd=ENDIRQEN 119 - linker: has ddadr= desc-sg[0] of next video buffer, dcmd=0
|
| /linux/Documentation/driver-api/dmaengine/ |
| H A D | pxa_dma.rst | 66 - finisher: has ddadr=DADDR_STOP, dcmd=ENDIRQEN 68 - linker: has ddadr= desc-sg[0] of next transfer, dcmd=0
|
| /linux/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3399-base.dtsi | 434 disable-cqe-dcmd;
|