/linux-6.1.9/drivers/media/platform/mediatek/mdp3/ |
D | mtk-mdp3-cmdq.c | 18 struct mdp_comp_ctx comps[MDP_PATH_MAX_COMPS]; member 51 switch (path->comps[0].comp->id) { in mdp_path_subfrm_require() 71 ctx = &path->comps[index]; in mdp_path_subfrm_require() 104 ctx = &path->comps[index]; in mdp_path_subfrm_run() 117 ctx = &path->comps[index]; in mdp_path_subfrm_run() 137 ret = mdp_comp_ctx_config(mdp, &path->comps[index], in mdp_path_ctx_init() 169 ctx = &path->comps[index]; in mdp_path_config_subfrm() 182 ctx = &path->comps[index]; in mdp_path_config_subfrm() 191 ctx = &path->comps[index]; in mdp_path_config_subfrm() 216 ctx = &path->comps[index]; in mdp_path_config() [all …]
|
D | mtk-mdp3-comp.h | 180 int mdp_comp_clocks_on(struct device *dev, struct mdp_comp *comps, int num); 181 void mdp_comp_clocks_off(struct device *dev, struct mdp_comp *comps, int num);
|
D | mtk-mdp3-cmdq.h | 34 struct mdp_comp *comps; member
|
D | mtk-mdp3-comp.c | 734 int mdp_comp_clocks_on(struct device *dev, struct mdp_comp *comps, int num) in mdp_comp_clocks_on() argument 739 ret = mdp_comp_clock_on(dev, &comps[i]); in mdp_comp_clocks_on() 747 void mdp_comp_clocks_off(struct device *dev, struct mdp_comp *comps, int num) in mdp_comp_clocks_off() argument 752 mdp_comp_clock_off(dev, &comps[i]); in mdp_comp_clocks_off()
|
/linux-6.1.9/arch/s390/boot/ |
D | ipl_report.c | 30 static unsigned long find_bootdata_space(struct ipl_rb_components *comps, in find_bootdata_space() argument 42 for_each_rb_entry(comp, comps) in find_bootdata_space() 60 for_each_rb_entry(comp, comps) in find_bootdata_space() 76 static void copy_components_bootdata(struct ipl_rb_components *comps) in copy_components_bootdata() argument 81 for_each_rb_entry(comp, comps) in copy_components_bootdata() 102 struct ipl_rb_components *comps; in read_ipl_report() local 129 comps = NULL; in read_ipl_report() 140 comps = (struct ipl_rb_components *) rb_hdr; in read_ipl_report() 153 if (!comps || !certs) in read_ipl_report() 160 safe_addr = find_bootdata_space(comps, certs, safe_addr); in read_ipl_report() [all …]
|
/linux-6.1.9/include/trace/events/ |
D | rdma_core.h | 168 u16 comps, 172 TP_ARGS(cq, comps, usec), 176 __field(unsigned int, comps) 182 __entry->comps = comps; 187 __entry->cq_id, __entry->comps, __entry->usec
|
/linux-6.1.9/include/linux/ |
D | dim.h | 45 u16 comps; member 269 dim_update_sample_with_comps(u16 event_ctr, u64 packets, u64 bytes, u64 comps, in dim_update_sample_with_comps() argument 273 s->comp_ctr = comps; in dim_update_sample_with_comps()
|
/linux-6.1.9/sound/pci/hda/ |
D | cs35l41_hda.c | 944 struct hda_component *comps = master_data; in cs35l41_hda_bind() local 947 if (!comps || cs35l41->index < 0 || cs35l41->index >= HDA_MAX_COMPONENTS) in cs35l41_hda_bind() 950 comps = &comps[cs35l41->index]; in cs35l41_hda_bind() 951 if (comps->dev) in cs35l41_hda_bind() 958 comps->dev = dev; in cs35l41_hda_bind() 961 comps->codec->core.subsystem_id); in cs35l41_hda_bind() 962 cs35l41->codec = comps->codec; in cs35l41_hda_bind() 963 strscpy(comps->name, dev_name(dev), sizeof(comps->name)); in cs35l41_hda_bind() 978 comps->playback_hook = cs35l41_hda_playback_hook; in cs35l41_hda_bind() 991 struct hda_component *comps = master_data; in cs35l41_hda_unbind() local [all …]
|
D | patch_realtek.c | 135 struct hda_component comps[HDA_MAX_COMPONENTS]; member 6677 return component_bind_all(dev, spec->comps); in comp_bind() 6685 component_unbind_all(dev, spec->comps); in comp_unbind() 6700 if (spec->comps[i].dev) in comp_generic_playback_hook() 6701 spec->comps[i].playback_hook(spec->comps[i].dev, action); in comp_generic_playback_hook() 6747 spec->comps[i].codec = cdc; in cs35l41_generic_fixup()
|
/linux-6.1.9/drivers/infiniband/core/ |
D | cq.c | 45 u16 comps = rdma_dim_prof[dim->profile_ix].comps; in ib_cq_rdma_dim_work() local 49 trace_cq_modify(cq, comps, usec); in ib_cq_rdma_dim_work() 50 cq->device->ops.modify_cq(cq, comps, usec); in ib_cq_rdma_dim_work()
|
/linux-6.1.9/drivers/infiniband/hw/hfi1/ |
D | user_sdma.c | 185 cq->comps = vmalloc_user(PAGE_ALIGN(sizeof(*cq->comps) in hfi1_user_sdma_alloc_queues() 187 if (!cq->comps) in hfi1_user_sdma_alloc_queues() 205 vfree(cq->comps); in hfi1_user_sdma_alloc_queues() 266 vfree(fd->cq->comps); in hfi1_user_sdma_free_queues() 1443 cq->comps[idx].errcode = -ret; in set_comp_state() 1445 cq->comps[idx].status = state; in set_comp_state()
|
D | user_sdma.h | 101 struct hfi1_sdma_comp_entry *comps; member
|
D | file_ops.c | 512 memaddr = (u64)cq->comps; in hfi1_file_mmap() 513 memlen = PAGE_ALIGN(sizeof(*cq->comps) * cq->nentries); in hfi1_file_mmap()
|
/linux-6.1.9/drivers/infiniband/ulp/isert/ |
D | ib_isert.h | 200 struct isert_comp *comps; member
|
/linux-6.1.9/arch/s390/kernel/ |
D | ipl.c | 2158 struct ipl_rb_components *comps; in ipl_report_finish() local 2178 comps = ptr; in ipl_report_finish() 2179 comps->rbt = IPL_RBT_COMPONENTS; in ipl_report_finish() 2180 ptr += sizeof(*comps); in ipl_report_finish() 2185 comps->len = ptr - (void *)comps; in ipl_report_finish()
|
/linux-6.1.9/drivers/media/i2c/ccs/ |
D | ccs-core.c | 2089 struct v4l2_rect **comps, int which) in ccs_get_crop_compose() argument 2098 if (comps) in ccs_get_crop_compose() 2099 *comps = &ssd->compose; in ccs_get_crop_compose() 2107 if (comps) in ccs_get_crop_compose() 2108 *comps = v4l2_subdev_get_try_compose(subdev, sd_state, in ccs_get_crop_compose()
|
/linux-6.1.9/drivers/infiniband/hw/mlx5/ |
D | main.c | 3121 int comps; in mlx5_ib_unbind_slave_port() local 3144 comps = mpi->mdev_refcnt; in mlx5_ib_unbind_slave_port() 3145 if (comps) { in mlx5_ib_unbind_slave_port() 3150 for (i = 0; i < comps; i++) in mlx5_ib_unbind_slave_port()
|