Searched refs:parallel (Results 1 - 25 of 84) sorted by relevance

1234

/linux-master/Documentation/sphinx/
H A Dparallel-wrapper.sh12 parallel="$PARALLELISM"
13 if [ -z "$parallel" ] ; then
25 parallel="$auto"
29 if [ -n "$parallel" ] ; then
30 parallel="-j$parallel"
33 exec "$sphinx" $parallel "$@"
/linux-master/drivers/media/platform/st/stm32/stm32-dcmipp/
H A DMakefile2 stm32-dcmipp-y := dcmipp-core.o dcmipp-common.o dcmipp-parallel.o dcmipp-byteproc.o dcmipp-bytecap.o
H A Ddcmipp-core.c270 * a parallel camera sensor or a CSI-2 to parallel bridge
284 /* Check for parallel bus-type first, then bt656 */
298 if (vep.bus.parallel.bus_width == 0) {
299 dev_err(dcmipp->dev, "Invalid parallel interface bus-width\n");
305 vep.bus.parallel.bus_width != 8) {
307 vep.bus.parallel.bus_width);
311 /* Parallel input device detected, connect it to parallel subdev */
313 sink->bus.flags = vep.bus.parallel.flags;
314 sink->bus.bus_width = vep.bus.parallel
[all...]
/linux-master/sound/soc/img/
H A DMakefile4 obj-$(CONFIG_SND_SOC_IMG_PARALLEL_OUT) += img-parallel-out.o
/linux-master/drivers/media/dvb-frontends/
H A Dstv0910.h19 u8 parallel; member in struct:stv0910_cfg
/linux-master/drivers/gpu/drm/imx/ipuv3/
H A DMakefile7 obj-$(CONFIG_DRM_IMX_PARALLEL_DISPLAY) += parallel-display.o
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_context.h54 return !!ce->parallel.parent;
59 return !!ce->parallel.number_children;
75 GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent));
77 return ce->parallel.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 Dintel_context.c422 INIT_LIST_HEAD(&ce->parallel.child_list);
589 parent->parallel.child_index = parent->parallel.number_children++;
590 list_add_tail(&child->parallel.child_link,
591 &parent->parallel.child_list);
592 child->parallel.parent = parent;
/linux-master/tools/perf/bench/
H A Dbreakpoint.c117 pthread_t *parallel; local
125 parallel = calloc(thread_params.nparallel, sizeof(parallel[0]));
126 if (!breakpoints || !parallel)
142 if (pthread_create(&parallel[i], NULL, breakpoint_thread, &repeat))
146 pthread_join(parallel[i], NULL);
151 free(parallel);
/linux-master/drivers/media/platform/ti/omap3isp/
H A Domap3isp.h126 struct isp_parallel_cfg parallel; member in union:isp_bus_cfg::__anon179
H A Disp.c2066 buscfg->bus.parallel.data_lane_shift = vep->bus.parallel.data_shift;
2067 buscfg->bus.parallel.clk_pol =
2068 !!(vep->bus.parallel.flags & V4L2_MBUS_PCLK_SAMPLE_FALLING);
2069 buscfg->bus.parallel.hs_pol =
2070 !!(vep->bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_LOW);
2071 buscfg->bus.parallel.vs_pol =
2072 !!(vep->bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_LOW);
2073 buscfg->bus.parallel.fld_pol =
2074 !!(vep->bus.parallel
[all...]
/linux-master/scripts/package/debian/
H A Drules9 ifneq (,$(filter-out parallel=1,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
10 NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_submit_types.h130 * @parallel_execution: Indication if the failure was during parallel
134 /** @parallel: snapshot of the useful parallel scratch */
136 /** @parallel.wq_desc: Workqueue description */
138 /** @parallel.wq_desc.head: Workqueue Head */
140 /** @parallel.wq_desc.tail: Workqueue Tail */
142 /** @parallel.wq_desc.status: Workqueue Status */
147 } parallel; member in struct:xe_guc_submit_exec_queue_snapshot
H A Dxe_sched_job.c54 static struct xe_sched_job *job_alloc(bool parallel) argument
56 return kmem_cache_zalloc(parallel ? xe_sched_job_parallel_slab :
135 q->parallel.composite_fence_ctx,
136 q->parallel.composite_fence_seqno++,
139 --q->parallel.composite_fence_seqno;
244 * parallel handshake is done.
H A Dxe_exec_queue_types.h109 * @parallel: parallel submission state
112 /** @parallel.composite_fence_ctx: context composite fence */
114 /** @parallel.composite_fence_seqno: seqno for composite fence */
116 } parallel; member in struct:xe_exec_queue
H A Dxe_guc_submit.c1746 snapshot->parallel.wq_desc.head = parallel_read(xe, map, wq_desc.head);
1747 snapshot->parallel.wq_desc.tail = parallel_read(xe, map, wq_desc.tail);
1748 snapshot->parallel.wq_desc.status = parallel_read(xe, map,
1751 if (snapshot->parallel.wq_desc.head !=
1752 snapshot->parallel.wq_desc.tail) {
1753 for (i = snapshot->parallel.wq_desc.head;
1754 i != snapshot->parallel.wq_desc.tail;
1756 snapshot->parallel.wq[i / sizeof(u32)] =
1768 snapshot->guc.wqi_head, snapshot->parallel.wq_desc.head);
1770 snapshot->guc.wqi_tail, snapshot->parallel
[all...]
/linux-master/drivers/media/platform/renesas/rcar-vin/
H A Drcar-core.c508 vin->parallel.source_pad = ret;
511 vin->parallel.sink_pad = ret < 0 ? 0 : ret;
514 vin->parallel.subdev = subdev;
521 code.pad = vin->parallel.source_pad;
562 vin->parallel.subdev = subdev;
570 vin->parallel.subdev = NULL;
599 source = &vin->parallel.subdev->entity;
602 ret = media_create_pad_link(source, vin->parallel.source_pad,
603 sink, vin->parallel.sink_pad, 0);
617 vin_dbg(vin, "unbind parallel subde
[all...]
H A Drcar-vin.h112 * @bus: media bus parallel configuration
184 * @parallel: parallel input subdevice descriptor
224 struct rvin_parallel_entity parallel; member in struct:rvin_dev
259 #define vin_to_source(vin) ((vin)->parallel.subdev)
H A Drcar-v4l2.c219 .pad = vin->parallel.source_pad,
259 .pad = vin->parallel.source_pad,
447 index = vin->parallel.source_pad;
717 timings->pad = vin->parallel.sink_pad;
769 cap->pad = vin->parallel.sink_pad;
787 edid->pad = vin->parallel.sink_pad;
805 edid->pad = vin->parallel.sink_pad;
/linux-master/include/media/
H A Dv4l2-fwnode.h29 * @bus.parallel: embedded &struct v4l2_mbus_config_parallel.
30 * Used if the bus is parallel.
46 struct v4l2_mbus_config_parallel parallel; member in struct:v4l2_fwnode_endpoint::__anon677
H A Dv4l2-mediabus.h94 * struct v4l2_mbus_config_parallel - parallel data bus configuration
126 * @V4L2_MBUS_PARALLEL: parallel interface with hsync and vsync
127 * @V4L2_MBUS_BT656: parallel interface with embedded synchronisation, can
152 * @bus.parallel: embedded &struct v4l2_mbus_config_parallel.
153 * Used if the bus is parallel or BT.656.
166 struct v4l2_mbus_config_parallel parallel; member in union:v4l2_mbus_config::__anon3804
/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc_submission.c451 GEM_BUG_ON(!ce->parallel.guc.parent_page);
453 return ce->parallel.guc.parent_page * PAGE_SIZE;
471 * parallel.guc.parent_page is the offset into ce->state while
504 CIRC_SPACE(ce->parallel.guc.wqi_tail, ce->parallel.guc.wqi_head, WQ_SIZE)
506 ce->parallel.guc.wqi_head = READ_ONCE(*ce->parallel.guc.wq_head);
513 return &__get_parent_scratch(ce)->wq[ce->parallel.guc.wqi_tail / sizeof(u32)];
816 return (WQ_SIZE - ce->parallel.guc.wqi_tail);
828 ce->parallel
[all...]
/linux-master/tools/perf/tests/
H A Dbuiltin-test.c42 /* Fork the tests in parallel and then wait for their completion. */
43 static bool parallel; variable
402 if (err || parallel)
468 /* TODO: if parallel waitpid the already forked children. */
488 if (parallel) {
564 OPT_BOOLEAN('p', "parallel", &parallel,
565 "Run the tests altogether in parallel"),
/linux-master/include/linux/
H A Dpadata.h32 * @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 in struct:padata_priv
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.
158 * @parallel_wq: The workqueue used for parallel work.
161 * @cpumask: User supplied cpumasks for parallel and serial works.
/linux-master/tools/testing/selftests/tc-testing/
H A Dtdc.py587 parallel = []
597 parallel.append(test)
599 return (serial, parallel)
608 (serial, parallel) = mp_bins(alltests)
610 batches = [parallel[n : n + 32] for n in range(0, len(parallel), 32)]
613 print("Executing {} tests in parallel and {} in serial".format(len(parallel), len(serial)))
741 help='Run tests in parallel whenever possible')

Completed in 356 milliseconds

1234