/kernel/linux/linux-6.6/scripts/package/debian/ |
H A D | rules | 8 ifneq (,$(filter-out parallel=1,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))) 9 NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/ |
H A D | intel_context.h | 54 return !!ce->parallel.parent; in intel_context_is_child() 59 return !!ce->parallel.number_children; in intel_context_is_parent() 75 GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent)); in intel_context_to_parent() 77 return ce->parallel.parent; in intel_context_to_parent() 92 list_for_each_entry(ce, &(parent)->parallel.child_list,\ 93 parallel.child_link) 95 list_for_each_entry_safe(ce, cn, &(parent)->parallel.child_list,\ 96 parallel.child_link) 258 ce->parallel.child_index + 1);
|
H A D | intel_context.c | 408 INIT_LIST_HEAD(&ce->parallel.child_list); in intel_context_init() 575 parent->parallel.child_index = parent->parallel.number_children++; in intel_context_bind_parent_child() 576 list_add_tail(&child->parallel.child_link, in intel_context_bind_parent_child() 577 &parent->parallel.child_list); in intel_context_bind_parent_child() 578 child->parallel.parent = parent; in intel_context_bind_parent_child()
|
/kernel/linux/linux-6.6/tools/perf/bench/ |
H A D | breakpoint.c | 117 pthread_t *parallel; in bench_breakpoint_thread() local 125 parallel = calloc(thread_params.nparallel, sizeof(parallel[0])); in bench_breakpoint_thread() 126 if (!breakpoints || !parallel) in bench_breakpoint_thread() 142 if (pthread_create(¶llel[i], NULL, breakpoint_thread, &repeat)) in bench_breakpoint_thread() 146 pthread_join(parallel[i], NULL); in bench_breakpoint_thread() 151 free(parallel); in bench_breakpoint_thread()
|
/kernel/linux/linux-6.6/drivers/media/platform/renesas/rcar-vin/ |
H A D | rcar-core.c | 508 vin->parallel.source_pad = ret; in rvin_parallel_subdevice_attach() 511 vin->parallel.sink_pad = ret < 0 ? 0 : ret; in rvin_parallel_subdevice_attach() 514 vin->parallel.subdev = subdev; in rvin_parallel_subdevice_attach() 521 code.pad = vin->parallel.source_pad; in rvin_parallel_subdevice_attach() 562 vin->parallel.subdev = subdev; in rvin_parallel_subdevice_attach() 570 vin->parallel.subdev = NULL; in rvin_parallel_subdevice_detach() 599 source = &vin->parallel.subdev->entity; in rvin_parallel_notify_complete() 602 ret = media_create_pad_link(source, vin->parallel.source_pad, in rvin_parallel_notify_complete() 603 sink, vin->parallel.sink_pad, 0); in rvin_parallel_notify_complete() 617 vin_dbg(vin, "unbind parallel subde in rvin_parallel_notify_unbind() [all...] |
H A D | rcar-vin.h | 112 * @bus: media bus parallel configuration 184 * @parallel: parallel input subdevice descriptor 224 struct rvin_parallel_entity parallel; member 259 #define vin_to_source(vin) ((vin)->parallel.subdev)
|
H A D | rcar-v4l2.c | 219 .pad = vin->parallel.source_pad, in rvin_reset_format() 259 .pad = vin->parallel.source_pad, in rvin_try_format() 447 index = vin->parallel.source_pad; in rvin_remote_rectangle() 717 timings->pad = vin->parallel.sink_pad; in rvin_enum_dv_timings() 769 cap->pad = vin->parallel.sink_pad; in rvin_dv_timings_cap() 787 edid->pad = vin->parallel.sink_pad; in rvin_g_edid() 805 edid->pad = vin->parallel.sink_pad; in rvin_s_edid()
|
/kernel/linux/linux-5.10/drivers/media/platform/rcar-vin/ |
H A D | rcar-core.c | 180 * a parallel input of one of the enabled VINs if it is not in rvin_group_link_notify() 183 * No hardware configuration required for parallel inputs, in rvin_group_link_notify() 188 if (group->vin[i] && group->vin[i]->parallel && in rvin_group_link_notify() 189 group->vin[i]->parallel->subdev == sd) { in rvin_group_link_notify() 443 vin->parallel->source_pad = ret; in rvin_parallel_subdevice_attach() 446 vin->parallel->sink_pad = ret < 0 ? 0 : ret; in rvin_parallel_subdevice_attach() 449 vin->parallel->subdev = subdev; in rvin_parallel_subdevice_attach() 456 code.pad = vin->parallel->source_pad; in rvin_parallel_subdevice_attach() 515 vin->parallel->subdev = subdev; in rvin_parallel_subdevice_attach() 523 vin->parallel in rvin_parallel_subdevice_detach() [all...] |
H A D | rcar-vin.h | 96 * @bus: media bus parallel configuration 174 * @parallel: parallel input subdevice descriptor 213 struct rvin_parallel_entity *parallel; member 247 #define vin_to_source(vin) ((vin)->parallel->subdev)
|
H A D | rcar-v4l2.c | 215 .pad = vin->parallel->source_pad, in rvin_reset_format() 256 .pad = vin->parallel->source_pad, in rvin_try_format() 642 timings->pad = vin->parallel->sink_pad; in rvin_enum_dv_timings() 694 cap->pad = vin->parallel->sink_pad; in rvin_dv_timings_cap() 712 edid->pad = vin->parallel->sink_pad; in rvin_g_edid() 730 edid->pad = vin->parallel->sink_pad; in rvin_s_edid()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_guc_submission.c | 443 GEM_BUG_ON(!ce->parallel.guc.parent_page); in __get_parent_scratch_offset() 445 return ce->parallel.guc.parent_page * PAGE_SIZE; in __get_parent_scratch_offset() 463 * parallel.guc.parent_page is the offset into ce->state while in __get_parent_scratch() 496 CIRC_SPACE(ce->parallel.guc.wqi_tail, ce->parallel.guc.wqi_head, WQ_SIZE) in get_wq_pointer() 498 ce->parallel.guc.wqi_head = READ_ONCE(*ce->parallel.guc.wq_head); in get_wq_pointer() 505 return &__get_parent_scratch(ce)->wq[ce->parallel.guc.wqi_tail / sizeof(u32)]; in get_wq_pointer() 802 return (WQ_SIZE - ce->parallel.guc.wqi_tail); in wq_space_until_wrap() 814 ce->parallel in write_wqi() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/imx/ |
H A D | Makefile | 7 obj-$(CONFIG_DRM_IMX_PARALLEL_DISPLAY) += parallel-display.o
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
H A D | stv0910.h | 28 u8 parallel; member
|
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/ |
H A D | stv0910.h | 19 u8 parallel; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/imx/ipuv3/ |
H A D | Makefile | 7 obj-$(CONFIG_DRM_IMX_PARALLEL_DISPLAY) += parallel-display.o
|
/kernel/linux/linux-5.10/drivers/media/platform/omap3isp/ |
H A D | omap3isp.h | 124 struct isp_parallel_cfg parallel; member
|
H A D | isp.c | 2057 buscfg->bus.parallel.data_lane_shift = vep->bus.parallel.data_shift; in isp_parse_of_parallel_endpoint() 2058 buscfg->bus.parallel.clk_pol = in isp_parse_of_parallel_endpoint() 2059 !!(vep->bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_FALLING); in isp_parse_of_parallel_endpoint() 2060 buscfg->bus.parallel.hs_pol = in isp_parse_of_parallel_endpoint() 2061 !!(vep->bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_LOW); in isp_parse_of_parallel_endpoint() 2062 buscfg->bus.parallel.vs_pol = in isp_parse_of_parallel_endpoint() 2063 !!(vep->bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_LOW); in isp_parse_of_parallel_endpoint() 2064 buscfg->bus.parallel.fld_pol = in isp_parse_of_parallel_endpoint() 2065 !!(vep->bus.parallel in isp_parse_of_parallel_endpoint() [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/ti/omap3isp/ |
H A D | omap3isp.h | 126 struct isp_parallel_cfg parallel; member
|
H A D | isp.c | 2066 buscfg->bus.parallel.data_lane_shift = vep->bus.parallel.data_shift; in isp_parse_of_parallel_endpoint() 2067 buscfg->bus.parallel.clk_pol = in isp_parse_of_parallel_endpoint() 2068 !!(vep->bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_FALLING); in isp_parse_of_parallel_endpoint() 2069 buscfg->bus.parallel.hs_pol = in isp_parse_of_parallel_endpoint() 2070 !!(vep->bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_LOW); in isp_parse_of_parallel_endpoint() 2071 buscfg->bus.parallel.vs_pol = in isp_parse_of_parallel_endpoint() 2072 !!(vep->bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_LOW); in isp_parse_of_parallel_endpoint() 2073 buscfg->bus.parallel.fld_pol = in isp_parse_of_parallel_endpoint() 2074 !!(vep->bus.parallel in isp_parse_of_parallel_endpoint() [all...] |
/kernel/linux/linux-5.10/drivers/media/i2c/ |
H A D | smiapp-pll.h | 38 } parallel; member
|
/kernel/linux/linux-6.6/drivers/media/i2c/ |
H A D | st-mipid02.c | 515 bridge->r.pix_width_ctrl = ep->bus.parallel.bus_width; in mipid02_configure_from_tx() 516 bridge->r.pix_width_ctrl_emb = ep->bus.parallel.bus_width; in mipid02_configure_from_tx() 517 if (ep->bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) in mipid02_configure_from_tx() 519 if (ep->bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) in mipid02_configure_from_tx() 521 if (ep->bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_RISING) in mipid02_configure_from_tx()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | padata.h | 32 * @info: Used to pass information from the parallel to the serial function. 33 * @parallel: Parallel execution function. 42 void (*parallel)(struct padata_priv *padata); member 71 * struct padata_cpumask - The cpumasks for the parallel/serial workers 73 * @pcpu: cpumask for the parallel workers. 92 * @cpumask: The cpumasks in use for parallel and serial workers. 156 * @parallel_wq: The workqueue used for parallel work. 159 * @cpumask: User supplied cpumasks for parallel and serial works.
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | padata.h | 32 * @info: Used to pass information from the parallel to the serial function. 33 * @parallel: Parallel execution function. 42 void (*parallel)(struct padata_priv *padata); member 71 * struct padata_cpumask - The cpumasks for the parallel/serial workers 73 * @pcpu: cpumask for the parallel workers. 92 * @cpumask: The cpumasks in use for parallel and serial workers. 156 * @parallel_wq: The workqueue used for parallel work. 159 * @cpumask: User supplied cpumasks for parallel and serial works.
|
/kernel/linux/linux-6.6/include/media/ |
H A D | v4l2-fwnode.h | 29 * @bus.parallel: embedded &struct v4l2_mbus_config_parallel. 30 * Used if the bus is parallel. 46 struct v4l2_mbus_config_parallel parallel; member
|
/kernel/linux/linux-6.6/drivers/media/platform/intel/ |
H A D | pxa_camera.c | 1590 if (cfg.bus.parallel.flags != mbus_config) { in pxa_camera_set_bus_param() 1593 unsigned int flags = cfg.bus.parallel.flags; in pxa_camera_set_bus_param() 1609 pxa_camera_setup_cicr(pcdev, cfg.bus.parallel.flags, pixfmt); in pxa_camera_set_bus_param() 2222 switch (ep.bus.parallel.bus_width) { in pxa_camera_pdata_from_dt() 2242 if (ep.bus.parallel.flags & V4L2_MBUS_MASTER) in pxa_camera_pdata_from_dt() 2244 if (ep.bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) in pxa_camera_pdata_from_dt() 2246 if (ep.bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) in pxa_camera_pdata_from_dt() 2248 if (ep.bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_RISING) in pxa_camera_pdata_from_dt() 2250 if (ep.bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_FALLING) in pxa_camera_pdata_from_dt()
|