/openbmc/linux/drivers/ata/pata_parport/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 3 comment "Parallel IDE protocol modules" 7 tristate "ATEN EH-100 protocol" 10 This option enables support for the ATEN EH-100 parallel port IDE 11 protocol. This protocol is used in some inexpensive low performance 12 parallel port kits made in Hong Kong. 19 parallel port Series 5 IDE protocol. (Most BACKPACK drives made 23 In other words, if your BACKPACK drive doesn't say "Series 6" on the 31 parallel port Series 6 IDE protocol. (Most BACKPACK drives made 36 In other words, if your BACKPACK drive says "Series 6" on the [all …]
|
/openbmc/linux/drivers/parport/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 4 # see Documentation/kbuild/kconfig-language.rst. 13 the architecture might have PC parallel port hardware. 16 tristate "Parallel port support" 19 If you want to use devices connected to your machine's parallel port 21 drive, PLIP link (Parallel Line Internet Protocol is mainly used to 22 create a mini network by connecting the parallel ports of two local 24 <file:Documentation/admin-guide/parport.rst> and 25 <file:drivers/parport/BUGS-parport>. 28 to the parallel port see <http://www.torque.net/linux-pp.html> on [all …]
|
H A D | share.c | 2 * Parallel-port resource manager code. 13 * Any part of this program may be used in documents licensed under 48 /* list of all allocated ports, sorted by ->number */ 110 return dev->type == &parport_device_type; in is_parport() 118 return -ENODEV; in parport_probe() 120 drv = to_parport_driver(dev->driver); in parport_probe() 121 if (!drv->probe) { in parport_probe() 125 if (strcmp(par_dev->name, drv->name)) in parport_probe() 126 return -ENODEV; in parport_probe() 130 return drv->probe(to_pardevice(dev)); in parport_probe() [all …]
|
/openbmc/linux/drivers/auxdisplay/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 4 # see Documentation/kbuild/kconfig-language.rst. 15 If you say N, all options in this submenu will be skipped and disabled. 22 This is the base system for character-based LCD displays. 31 This is the core support for single-line character displays, to be 64 Depends on Parallel Port support. If you say Y at 66 and built-in as well (Y). 74 hex "Parallel port where the LCD is connected" 78 The address of the parallel port where the LCD is connected. 80 The first standard parallel port address is 0x378. [all …]
|
/openbmc/linux/Documentation/admin-guide/blockdev/ |
H A D | paride.rst | 2 Linux and parallel port IDE devices 5 PARIDE v1.03 (c) 1997-8 Grant Guenther <grant@torque.net> 11 Owing to the simplicity and near universality of the parallel port interface 12 to personal computers, many external devices such as portable hard-disk, 13 CD-ROM, LS-120 and tape drives use the parallel port to connect to their 14 host computer. While some devices (notably scanners) use ad-hoc methods 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 19 (The Iomega PPA-3 adapter used in the ZIP drives is an example of this 21 The adapter chip reproduces a small ISA or IDE bus in the external device [all …]
|
/openbmc/linux/Documentation/core-api/ |
H A D | padata.rst | 1 .. SPDX-License-Identifier: GPL-2.0 4 The padata parallel execution mechanism 9 Padata is a mechanism by which the kernel can farm jobs out to be done in 10 parallel on multiple CPUs while optionally retaining their ordering. 23 ------------ 25 The first step in using padata to run serialized jobs is to set up a 43 ------------------ 45 The CPUs used to run jobs can be changed in two ways, programmatically with 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 [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | plip.rst | 1 .. SPDX-License-Identifier: GPL-2.0 4 PLIP: The Parallel Line Internet Protocol Device 14 ----------------- 16 This document describes the parallel port packet pusher for Net/LGX. 17 This device interface allows a point-to-point connection between two 18 parallel ports to appear as a IP network interface. 23 PLIP is Parallel Line IP, that is, the transportation of IP packages 24 over a parallel port. In the case of a PC, the obvious choice is the 25 printer port. PLIP is a non-standard, but [can use] uses the standard 26 LapLink null-printer cable [can also work in turbo mode, with a PLIP [all …]
|
/openbmc/linux/Documentation/sphinx/ |
H A D | parallel-wrapper.sh | 2 # SPDX-License-Identifier: GPL-2.0+ 5 # environment (as exported by scripts/jobserver-exec), or fall back to 6 # the "auto" parallelism when "-jN" is not specified at the top-level 12 parallel="$PARALLELISM" 13 if [ -z "$parallel" ] ; then 14 # If no parallelism is specified at the top-level make, then 15 # fall back to the expected "-jauto" mode that the "htmldocs" 17 auto=$(perl -e 'open IN,"'"$sphinx"' --version 2>&1 |"; 18 while (<IN>) { 23 close IN') [all …]
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | parport.rst | 4 The ``parport`` code provides parallel-port support under Linux. This 10 to use IRQs, since in general these can't be autoprobed successfully. 13 parallel port and a sound card or network card. 16 port-sharing) and architecture-dependent (which deals with actually 28 architecture-dependent code with (for example):: 32 to tell the ``parport`` code that you want three PC-style ports, one at 34 auto-detected IRQ. Currently, PC-style (``parport_pc``), Sun ``bpp``, 37 PCI parallel I/O card support comes from ``parport_pc``. Base I/O 43 -------- 46 configuration file in /etc/modprobe.d/ directory:: [all …]
|
/openbmc/linux/Documentation/gpu/rfc/ |
H A D | i915_scheduler.rst | 15 no need to nit pick everything in the code, it just should be 20 * Rework / get CI heathly for GuC submission in place as needed 21 * Merge new parallel submission uAPI 23 severe design issues in general, which is why we want to retire it no 28 a slot in a single execbuf IOCTL and the batches run on the GPU in 35 handled in DRM scheduler) 36 * Resets / cancels hook in DRM scheduler 41 * Execlists backend will minimum required to hook in the DRM scheduler 50 * Port i915 priority inheritance / boosting feature in DRM scheduler 53 * Will be an optional feature in the DRM scheduler [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/sound/ |
H A D | img,parallel-out.txt | 1 Imagination Technologies Parallel Output Controller 5 - compatible : Compatible list, must contain "img,parallel-out". 7 - #sound-dai-cells : Must be equal to 0 9 - reg : Offset and length of the register set for the device. 11 - dmas: Contains an entry for each entry in dma-names. 13 - dma-names: Must include the following entry: 16 - clocks : Contains an entry for each entry in clock-names. 18 - clock-names : Includes the following entries: 22 - resets: Contains a phandle to the parallel out reset signal 24 - reset-names: Contains the reset signal name "rst" [all …]
|
/openbmc/linux/fs/squashfs/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 3 tristate "SquashFS 4.0 - Squashed file system support" 7 Read-Only File System). Squashfs is a highly compressed read-only 9 compress both files, inodes and directories. Inodes in the system 16 Squashfs is intended for general read-only filesystem use, for 17 archival use (i.e. in cases where a .tar.gz file may be used), and in 22 inserted in and removed from the running kernel whenever you want), 70 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" [all …]
|
/openbmc/qemu/hw/isa/ |
H A D | isa-superio.c | 4 * Copyright (c) 2010-2012 Herve Poussineau 5 * Copyright (c) 2011-2012 Andreas Färber 6 * Copyright (c) 2018 Philippe Mathieu-Daudé 9 * See the COPYING file in the top-level directory. 10 * SPDX-License-Identifier: GPL-2.0-or-later 14 #include "qemu/error-report.h" 19 #include "hw/char/parallel.h" 22 #include "hw/qdev-properties.h" 24 #include "hw/char/parallel-isa.h" 25 #include "hw/char/serial-isa.h" [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0 14 - ADX (large integer arithmetic) 17 tristate "Ciphers: AES, modes: ECB, CBC, CTS, CTR, XTR, XTS, GCM (AES-NI)" 27 Length-preserving ciphers: AES with ECB, CBC, CTS, CTR, XTR, XTS 29 Architecture: x86 (32-bit and 64-bit) using: 30 - AES-NI (AES new instructions) 40 Length-preserving ciphers: Blowfish with ECB and CBC modes 51 Length-preserving ciphers: Camellia with ECB and CBC modes 56 tristate "Ciphers: Camellia with modes: ECB, CBC (AES-NI/AVX)" 63 Length-preserving ciphers: Camellia with ECB and CBC modes [all …]
|
/openbmc/qemu/hw/char/ |
H A D | parallel-isa.c | 2 * QEMU Parallel PORT (ISA bus helpers) 4 * These functions reside in a separate file since they also might be 9 * SPDX-License-Identifier: MIT 15 #include "hw/qdev-properties.h" 16 #include "hw/char/parallel-isa.h" 17 #include "hw/char/parallel.h" 45 void isa_parallel_set_iobase(ISADevice *parallel, hwaddr iobase) in isa_parallel_set_iobase() argument 47 ISAParallelState *s = ISA_PARALLEL(parallel); in isa_parallel_set_iobase() 49 parallel->ioport_id = iobase; in isa_parallel_set_iobase() 50 s->iobase = iobase; in isa_parallel_set_iobase() [all …]
|
/openbmc/qemu/chardev/ |
H A D | char-parallel.c | 4 * Copyright (c) 2003-2008 Fabrice Bellard 8 * in the Software without restriction, including without limitation the rights 13 * The above copyright notice and this permission notice shall be included in 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 47 #include "chardev/char-fd.h" 48 #include "chardev/char-parallel.h" 63 if (s->mode != mode) { in pp_hw_mode() 65 if (ioctl(s->fd, PPSETMODE, &m) < 0) { in pp_hw_mode() [all …]
|
/openbmc/linux/include/linux/ |
H A D | padata.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * padata.h - header for the padata parallelization interface 26 * struct padata_priv - Represents one job 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 47 * struct padata_list - one per work type per CPU 58 * struct padata_serial_queue - The percpu padata serial queue 71 * struct padata_cpumask - The cpumasks for the parallel/serial workers 73 * @pcpu: cpumask for the parallel workers. [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/rust/files/ |
H A D | repro-issue-fix-with-cc-crate-hashmap.patch | 7 https://github.com/rust-lang/cc-rs/pull/1277 9 Upstream-Status: Submitted [https://github.com/rust-lang/cc-rs/pull/1277] 10 Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> 11 --- a/vendor/cc-1.0.97/src/command_helpers.rs 12 +++ b/vendor/cc-1.0.97/src/command_helpers.rs 13 @@ -257,6 +257,7 @@ 14 /// and store them in the output Object. 15 pub(crate) fn objects_from_files(files: &[Arc<Path>], dst: &Path) -> Result<Vec<Object>, Error> { 18 for file in files { 21 @@ -277,10 +278,29 @@ [all …]
|
/openbmc/linux/Documentation/input/devices/ |
H A D | joystick-parport.rst | 3 .. _joystick-parport: 6 Parallel Port Joystick Drivers 9 :Copyright: |copy| 1998-2000 Vojtech Pavlik <vojtech@ucw.cz> 10 :Copyright: |copy| 1998 Andree Borrmann <a.borrmann@tu-bs.de> 18 Any information in this file is provided as-is, without any guarantee that 20 happen include burning your parallel port, and/or the sticks and joystick 28 that, PCs usually lack the right ports to connect these devices to. Parallel 36 Many console and 8-bit computer gamepads and joysticks are supported. The 40 ------------ 50 and/or SNES gamepads and/or SNES mice connected to the parallel port at once, [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_context_types.h | 1 /* SPDX-License-Identifier: MIT */ 66 /* virtual/parallel engine/context interface */ 94 __intel_context_inflight(READ_ONCE((ce)->inflight)) 96 __intel_context_inflight_count(READ_ONCE((ce)->inflight)) 160 unsigned int active_count; /* protected by timeline->mutex */ 163 struct mutex pin_mutex; /* guards pinning and associated on-gpuing */ 178 * This is only used if this is a perma-pinned kernel context and 187 /** @lock: protects everything in guc_state */ 209 * @prio_count: a counter of the number requests in flight in 223 * with the GuC, protected by guc->submission_state.lock [all …]
|
/openbmc/linux/drivers/net/plip/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 3 # Parallel Line Internet Protocol (PLIP) network device configuration 7 tristate "PLIP (parallel port) support" 10 PLIP (Parallel Line Internet Protocol) is used to create a 14 CD-ROM drive (a minimal system has to be transferred with floppies 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 23 time (mode 1); you can find the wiring of these cables in 27 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>) 30 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/parallel/ |
H A D | parallel_20241122.bb | 1 SUMMARY = "GNU Parallel - A shell tool for executing jobs in parallel using one or more computers" 2 DESCRIPTION = "GNU Parallel is a command-line tool for executing jobs in parallel on one or more co… 5 HOMEPAGE = "https://www.gnu.org/software/parallel/" 6 LICENSE = "CC-BY-SA-4.0 & GFDL-1.3-or-later & GPL-3.0-or-later" 9 file://LICENSES/CC-BY-SA-4.0.txt;md5=7130783469368ceb248a4f03e89ea4b8 \ 10 file://LICENSES/GFDL-1.3-or-later.txt;md5=e0771ae6a62dc8a2e50b1d450fea66b7 \ 11 file://LICENSES/GPL-3.0-or-later.txt;md5=8da5784ab1c72e63ac74971f88658166 \ 17 inherit autotools bash-completion 19 PACKAGES += "${PN}-zsh-completion" 20 FILES:${PN}-zsh-completion = "${datadir}/zsh" [all …]
|
/openbmc/openbmc/meta-arm/ |
H A D | .gitlab-ci.yml | 26 - prep 27 - build 32 - $DEFAULT_TAG 46 - echo KAS_WORK_DIR = $KAS_WORK_DIR 47 - echo SSTATE_DIR = $SSTATE_DIR 48 - echo DL_DIR = $DL_DIR 49 - rm -rf $KAS_WORK_DIR 50 …- mkdir --verbose --parents $KAS_WORK_DIR $KAS_REPO_REF_DIR $SSTATE_DIR $DL_DIR $TOOLCHAIN_DIR $TO… 52 - ./ci/get-binary-toolchains $DL_DIR $TOOLCHAIN_DIR $TOOLCHAIN_LINK_DIR 61 - if: $CI_PIPELINE_SOURCE == "merge_request_event" [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/media/i2c/ |
H A D | toshiba,tc358746.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Toshiba TC358746 Parallel to MIPI CSI2 Bridge 10 - Marco Felsch <kernel@pengutronix.de> 12 description: |- 13 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 through I2C and SPI but the SPI 16 interface is only supported in parallel-in -> csi-out mode. [all …]
|
/openbmc/linux/Documentation/i2c/busses/ |
H A D | i2c-parport.rst | 2 Kernel driver i2c-parport 7 This is a unified driver for several i2c-over-parallel-port adapters, 11 * i2c-philips-par 12 * i2c-elv 13 * i2c-velleman 14 * video/i2c-parport 25 * (type=6) Barco LPT->DVI (K5800236) adapter 26 * (type=7) One For All JP1 parallel port adapter 27 * (type=8) VCT-jig 38 connected to the parallel port's interrupt pin. [all …]
|