Home
last modified time | relevance | path

Searched refs:parallel (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/linux-6.3-rc2/Documentation/sphinx/
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-6.3-rc2/drivers/parport/
A DKconfig13 the architecture might have PC parallel port hardware.
19 If you want to use devices connected to your machine's parallel port
28 to the parallel port see <http://www.torque.net/linux-pp.html> on
47 You should say Y here if you have a PC-style parallel port. All
49 parallel ports. PA-RISC owners should only say Y here if they
50 have a SuperIO parallel port.
58 tristate "Multi-IO cards (parallel and serial)"
61 This adds support for multi-IO PCI cards that have parallel and
69 Many parallel port chipsets provide hardware that can speed up
98 Say Y here if you need support for the parallel port on
[all …]
/linux-6.3-rc2/Documentation/translations/zh_CN/core-api/
A Dpadata.rst88 void (*parallel)(struct padata_priv *padata);
93 padata来说是私有的,但是这个结构在初始化时应该被清零,并且应该提供parallel()和
107 每个提交给padata_do_parallel()的作业将依次传递给一个CPU上的上述parallel()函数
108 的一个调用,所以真正的并行是通过提交多个作业来实现的。parallel()在运行时禁用软
109 件中断,因此不能睡眠。parallel()函数把获得的padata_priv结构体指针作为其唯一的参
112 请注意,parallel()没有返回值;padata子系统假定parallel()将从此时开始负责这项工
113 作。作业不需要在这次调用中完成,但是,如果parallel()留下了未完成的工作,它应该准
119 当一个作业完成时,parallel()(或任何实际完成该工作的函数)应该通过调用通知padata此
/linux-6.3-rc2/drivers/ata/pata_parport/
A DKconfig10 This option enables support for the ATEN EH-100 parallel port IDE
12 parallel port kits made in Hong Kong.
19 parallel port Series 5 IDE protocol. (Most BACKPACK drives made
31 parallel port Series 6 IDE protocol. (Most BACKPACK drives made
43 This option enables support for the Commuter parallel port IDE
50 This option enables support for the EP-2000 parallel port IDE
57 This option enables support for the TD-2000 parallel port IDE
65 This option enables support for the TD-3000 parallel port IDE
75 EPAT is a parallel port IDE adapter manufactured by Shuttle
91 This option enables support for the (obsolete) EPIA parallel port
[all …]
/linux-6.3-rc2/Documentation/admin-guide/blockdev/
A Dparide.rst2 Linux and parallel port IDE devices
13 CD-ROM, LS-120 and tape drives use the parallel port to connect to their
15 to pass commands and data through the parallel port interface, most
17 a parallel-port adapter chip added in. Some of the original parallel port
24 the device being addressed via the parallel cable is a standard SCSI
32 that interconnected a standard PC parallel port cable and a standard
36 The document describes the support in Linux for parallel port IDE
37 devices. It does not cover parallel port SCSI devices, "ditto" tape
39 parallel port IDE subsystem, including:
58 the parallel ports.
[all …]
/linux-6.3-rc2/Documentation/devicetree/bindings/sound/
A Dimg,parallel-out.txt5 - compatible : Compatible list, must contain "img,parallel-out".
22 - resets: Contains a phandle to the parallel out reset signal
28 - interrupts : Contains the parallel out interrupt, if present
32 parallel_out: parallel-out@18100c00 {
33 compatible = "img,parallel-out";
/linux-6.3-rc2/Documentation/input/devices/
A Djoystick-parport.rst20 happen include burning your parallel port, and/or the sticks and joystick
100 each pad needs its own data pin. The parallel port pins are::
241 parallel port like this::
264 the parallel port::
336 9 | o o o | o o o | o o o | 1 parallel
367 parallel port pins, and the following schematic::
407 The Select pin goes to pin 14 on the parallel port::
438 parallel port::
524 more parallel ports.
545 Old parallel ports may not have this feature.
[all …]
/linux-6.3-rc2/drivers/gpu/drm/i915/gt/
A Dintel_context.h53 return !!ce->parallel.parent; in intel_context_is_child()
58 return !!ce->parallel.number_children; in intel_context_is_parent()
74 GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent)); in intel_context_to_parent()
76 return ce->parallel.parent; in intel_context_to_parent()
91 list_for_each_entry(ce, &(parent)->parallel.child_list,\
92 parallel.child_link)
94 list_for_each_entry_safe(ce, cn, &(parent)->parallel.child_list,\
95 parallel.child_link)
251 ce->parallel.child_index + 1); in intel_context_timeline_lock()
/linux-6.3-rc2/drivers/auxdisplay/
A DKconfig80 The first standard parallel port address is 0x378.
81 The second standard parallel port address is 0x278.
101 to the parallel port.
221 int "Default parallel port number (0=LPT1)"
242 1 = 2x16 parallel LCD, old keypad
244 3 = 2x16 parallel LCD (Hantronix), no keypad
283 2 : 2x16 & 2x40 parallel LCD (old wiring)
285 4 : 2x16 parallel LCD (Hantronix wiring)
286 5 : 2x16 parallel LCD (Nexcom wiring)
362 This driver now supports any serial or parallel LCD wired to a parallel
[all …]
/linux-6.3-rc2/Documentation/core-api/
A Dpadata.rst4 The padata parallel execution mechanism
10 parallel on multiple CPUs while optionally retaining their ordering.
52 parallel cpumask describes which processors will be used to execute jobs
53 submitted to this instance in parallel and a serial cpumask defines which
68 and the 'usable' cpumasks. (Each pair consists of a parallel and a serial
88 void (*parallel)(struct padata_priv *padata);
95 parallel() and serial() functions should be provided. Those functions will
115 exactly one call to the above-mentioned parallel() function, on one CPU, so
117 software interrupts disabled and thus cannot sleep. The parallel()
123 parallel() will take responsibility for the job from this point. The job
[all …]
/linux-6.3-rc2/tools/perf/bench/
A Dbreakpoint.c111 pthread_t *parallel; in bench_breakpoint_thread() local
119 parallel = calloc(thread_params.nparallel, sizeof(parallel[0])); in bench_breakpoint_thread()
120 if (!breakpoints || !parallel) in bench_breakpoint_thread()
130 if (pthread_create(&parallel[i], NULL, breakpoint_thread, &repeat)) in bench_breakpoint_thread()
134 pthread_join(parallel[i], NULL); in bench_breakpoint_thread()
139 free(parallel); in bench_breakpoint_thread()
/linux-6.3-rc2/Documentation/i2c/busses/
A Di2c-parport.rst7 This is a unified driver for several i2c-over-parallel-port adapters,
26 * (type=7) One For All JP1 parallel port adapter
38 connected to the parallel port's interrupt pin.
44 If you want to build you own i2c-over-parallel-port adapter, here is
88 - Pins 18-25 of the parallel port connected to GND.
91 current you can draw from the parallel port is limited. Also note that
146 package. The i2c-pport driver makes use of modern parallel port features so
151 lm_sensors package. The i2c-pcf-epp driver doesn't use the parallel port as
179 One For All JP1 parallel port adapter
188 Details of the simple parallel port hardware can be found at:
/linux-6.3-rc2/Documentation/networking/
A Dplip.rst16 This document describes the parallel port packet pusher for Net/LGX.
18 parallel ports to appear as a IP network interface.
24 over a parallel port. In the case of a PC, the obvious choice is the
65 that uses the parallel port subsystem of the kernel in order to properly
66 share parallel ports between PLIP and other services.
78 the PLIP driver would constantly poll the parallel port for data waiting,
92 When in IRQ-less mode, the PLIP driver polls the parallel port HZ times
122 bi-directional parallel ports, rather than output-only ``printer``
163 bi-directional parallel ports, rather than output-only ``printer``
166 ``printer`` (as opposed to ``parallel``) ports or when the machine
[all …]
/linux-6.3-rc2/arch/arm/boot/dts/
A Dgemini-wbd111.dts46 /* Conflict with TVC and extended parallel flash */
52 /* Conflict with TVC and extended parallel flash */
58 /* Conflict with TVC and extended parallel flash */
64 /* Conflict with TVC and extended parallel flash */
A Dgemini-wbd222.dts45 /* Conflict with TVC and extended parallel flash */
51 /* Conflict with TVC and extended parallel flash */
57 /* Conflict with TVC and extended parallel flash */
63 /* Conflict with TVC and extended parallel flash */
/linux-6.3-rc2/Documentation/gpu/rfc/
A Di915_scheduler.rst21 * Merge new parallel submission uAPI
89 New parallel submission uAPI
92 whether a submission is a single context submit or parallel submit isn't known
94 contexts in parallel with the GuC the context must be explicitly registered with
97 bonding uAPI does. Hence the need for a new parallel submission interface. Also
102 The new parallel submission uAPI consists of 3 parts:
105 * A 'set_parallel' extension to configure contexts for parallel
125 A 'set_parallel' extension to configure contexts for parallel submission
127 The 'set_parallel' extension configures a slot for parallel submission of N BBs.
130 similar existing examples. Once a slot is configured for parallel submission the
/linux-6.3-rc2/Documentation/devicetree/bindings/media/
A Dstih407-c8sectpfe.txt28 - pinctrl-names : a pinctrl state named tsin%d-serial or tsin%d-parallel (where %d is tsin-num)
43 - serial-not-parallel : Bool property to configure input bus width (serial on ts_data<7>).
65 "tsin0-parallel",
75 serial-not-parallel;
83 serial-not-parallel;
A Dmicrochip,csi2dc.yaml16 IDI interface or from a parallel bus interface.
19 clock domain towards a parallel interface that can be read by a sensor
23 a parallel interface.
30 32-bit IDI interface or a parallel interface.
32 CSI2DC supports one 'port' node as source port with parallel interface.
142 # Example for connecting to a parallel sensor controller block (video pipe)
/linux-6.3-rc2/Documentation/devicetree/bindings/media/i2c/
A Dtoshiba,tc358746.yaml13 The Toshiba TC358746 converts a parallel video stream into a MIPI CSI-2
14 stream. The direction can be either parallel-in -> csi-out or csi-in ->
15 parallel-out The chip is programmable trough I2C and SPI but the SPI
16 interface is only supported in parallel-in -> csi-out mode.
19 parallel-in -> csi-out path.
/linux-6.3-rc2/drivers/media/platform/renesas/rcar-vin/
A Drcar-core.c510 vin->parallel.source_pad = ret; in rvin_parallel_subdevice_attach()
516 vin->parallel.subdev = subdev; in rvin_parallel_subdevice_attach()
523 code.pad = vin->parallel.source_pad; in rvin_parallel_subdevice_attach()
564 vin->parallel.subdev = subdev; in rvin_parallel_subdevice_attach()
572 vin->parallel.subdev = NULL; in rvin_parallel_subdevice_detach()
601 source = &vin->parallel.subdev->entity; in rvin_parallel_notify_complete()
605 sink, vin->parallel.sink_pad, 0); in rvin_parallel_notify_complete()
643 vin->parallel.sink_pad); in rvin_parallel_notify_bound()
683 vin->parallel.bus = vep.bus.parallel; in rvin_parallel_parse_of()
698 vin->parallel.asd = asd; in rvin_parallel_parse_of()
[all …]
/linux-6.3-rc2/arch/x86/crypto/
A DKconfig95 Processes 16 blocks in parallel.
113 Processes eight blocks in parallel.
127 Processes one or three blocks in parallel.
143 Processes eight blocks in parallel.
159 Processes four blocks in parallel.
176 Processes eight blocks in parallel.
189 Processes 16 blocks in parallel.
287 Processes eight blocks in parallel.
305 Processes 16 blocks in parallel.
324 Processes 32 blocks in parallel.
[all …]
/linux-6.3-rc2/fs/squashfs/
A DKconfig70 bool "Select the parallel decompression mode during mount"
78 Compile all parallel decompression modes and specify the
83 prompt "Select decompression parallel mode at compile time"
102 bool "Use multiple decompressors for parallel I/O"
106 poor performance on parallel I/O workloads when using multiple CPU
109 If you have a parallel I/O workload and your system has enough memory,
112 This decompressor implementation uses up to two parallel
117 bool "Use percpu multiple decompressors for parallel I/O"
121 poor performance on parallel I/O workloads when using multiple CPU
135 Use threads= to set the decompression parallel mode and the number of threads.
/linux-6.3-rc2/Documentation/admin-guide/
A Dparport.rst4 The ``parport`` code provides parallel-port support under Linux. This
13 parallel port and a sound card or network card.
37 PCI parallel I/O card support comes from ``parport_pc``. Base I/O
52 whenever a parallel port device driver (such as ``lp``) is loaded.
56 parallel port.
64 enhanced and now lives with the IEEE 1284 support. When a parallel
94 directory entry for each parallel port for which parport is
96 describing that parallel port.
222 the first parallel port, and /dev/lp1 to be the **third** parallel port,
/linux-6.3-rc2/Documentation/devicetree/bindings/i2c/
A Di2c-pca-platform.txt4 parallel-bus microcontrollers/microprocessors and the serial I2C-bus
5 and allows the parallel bus system to communicate bi-directionally
/linux-6.3-rc2/drivers/net/plip/
A DKconfig7 tristate "PLIP (parallel port) support"
18 The PLIP driver has two modes, mode 0 and mode 1. The parallel
22 bidirectional parallel ports only, which can transmit 8 bits at a

Completed in 38 milliseconds

12345678910>>...15