Searched +full:no +full:- +full:1 +full:- +full:8 +full:- +full:v (Results 1 – 25 of 1050) sorted by relevance
12345678910>>...42
1 /* SPDX-License-Identifier: GPL-2.0-only */2 /* drivers/gpu/drm/exynos/regs-scaler.h17 #define SCALER_STATUS 0x0 /* no shadow */21 #define SCALER_INT_EN 0x8 /* no shadow */22 #define SCALER_INT_STATUS 0xc /* no shadow */56 * 1 70 74 78 7c 150 154 158 15c57 * 2 80 84 88 8c 160 164 168 16c61 * 6 c0 c4 c8 cc 1a0 1a4 1a8 1ac62 * 7 d0 d4 d8 dc 1b0 1b4 1b8 1bc63 * 8 e0 e4 e8 ec 1c0 1c4 1c8 1cc[all …]
1 // SPDX-License-Identifier: GPL-2.0-or-later3 * Copyright 2012 ST-Ericsson AB6 #include <dt-bindings/interrupt-controller/irq.h>7 #include <dt-bindings/leds/common.h>8 #include "ste-href-family-pinctrl.dtsi"17 compatible = "simple-battery";18 battery-type = "lithium-ion-polymer";21 thermal-zones {22 battery-thermal {24 polling-delay = <0>;[all …]
1 /* SPDX-License-Identifier: GPL-2.0 */6 #include "dvb-usb.h"20 /* the out-buffer of these consecutive operations contain sub-commands when b[0] = 021 * request: 0xB2; i: 0; v: 0; b[0] = 0, b[1] = subcmd, additional buffer23 * request: 0xB3; i: 0; v: 0; b[0] = 0xB3, additional buffer */27 * 0 1 2 3 4 5 6 7 828 * N/A N/A 0x05 signal-quality N/A N/A signal-strength lock==0 N/A */32 * 0 1 2 3 4 5 6 7 837 * 0 1 2 3 440 * 0 1 2[all …]
... , , Z o R 84 2l 1 1 1d 8h X 0 1 v 1H 1 ...
... <f` `` v | `lvff 8 < ff< `flxl 8 < ffff | | ff|` v | v`` ~
1 // SPDX-License-Identifier: GPL-2.09 * Write back the dirty D-caches, but not invalidate them.16 reg_size_t aligned_start, v, cnt, end; in sh4__flush_wback_region() local19 v = aligned_start & ~(L1_CACHE_BYTES-1); in sh4__flush_wback_region()20 end = (aligned_start + size + L1_CACHE_BYTES-1) in sh4__flush_wback_region()21 & ~(L1_CACHE_BYTES-1); in sh4__flush_wback_region()22 cnt = (end - v) / L1_CACHE_BYTES; in sh4__flush_wback_region()24 while (cnt >= 8) { in sh4__flush_wback_region()25 __ocbwb(v); v += L1_CACHE_BYTES; in sh4__flush_wback_region()26 __ocbwb(v); v += L1_CACHE_BYTES; in sh4__flush_wback_region()[all …]
1 Kernel driver mc13783-adc10 Datasheet: https://www.nxp.com/docs/en/data-sheet/MC13783.pdf16 Datasheet: https://www.nxp.com/docs/en/data-sheet/MC13892.pdf22 - Sascha Hauer <s.hauer@pengutronix.de>23 - Luotao Fu <l.fu@pengutronix.de>26 -----------29 Among other things they contain a 10-bit A/D converter. The converter has 1642 - MC13783:47 0 Battery Voltage (BATT) 2.50 - 4.65V -2.40V48 1 Battery Current (BATT - BATTISNS) -50 - 50 mV x20[all …]
1 // SPDX-License-Identifier: GPL-2.0+16 int v; /* conversion buffer */ in srec_decode() local17 int srec_type; /* S-Record type */ in srec_decode()32 if (*input == '\0') { /* no more data? */ in srec_decode()36 v = *input++; /* record type */ in srec_decode()45 switch (v) { /* record type */ in srec_decode()49 *count -= 3; /* - checksum and addr */ in srec_decode()51 case '1': in srec_decode()53 *count -= 3; /* - checksum and addr */ in srec_decode()57 *count -= 4; /* - checksum and addr */ in srec_decode()[all …]
1 // SPDX-License-Identifier: GPL-2.0-or-later21 "Please report to <linux-mips@vger.kernel.org>.";34 ".rept %1\n\t" in align_mod()66 * details. I got no permission to duplicate them here, in mult_sh_align_mod()67 * sigh... --macro in mult_sh_align_mod()72 : "0" (5), "1" (8), "2" (5)); in mult_sh_align_mod()75 * The trailing nop is needed to fulfill the two-instruction in mult_sh_align_mod()88 "dsll32 %1, %4, %5\n\t" in mult_sh_align_mod()103 : "0" (m1), "1" (m2), "2" (s)); in mult_sh_align_mod()120 long v1[8], v2[8], w[8]; in check_mult_sh()[all …]
4 Subject: [PATCH] Tweak tests of ifupdown to make it work with oe-core ptest7 Upstream-Status: Inappropriate [oe-core specific]9 Signed-off-by: Kai Kang <kai.kang@windriver.com>10 ---11 tests/testbuild-linux | 11 ++++++-----12 1 file changed, 6 insertions(+), 5 deletions(-)14 diff --git a/tests/testbuild-linux b/tests/testbuild-linux16 --- a/tests/testbuild-linux17 +++ b/tests/testbuild-linux18 @@ -1,6 +1,7 @@[all …]
1 // SPDX-License-Identifier: GPL-2.035 int *v, i = zero; /* obscure initial value of i */ in iter_err_unsafe_c_loop() local40 while ((v = bpf_iter_num_next(&it))) { in iter_err_unsafe_c_loop()63 "r4 = 1;" in iter_err_unsafe_asm_loop()69 "r6 += 1;" in iter_err_unsafe_asm_loop()97 int *v; in iter_while_loop() local102 while ((v = bpf_iter_num_next(&it))) { in iter_while_loop()103 bpf_printk("ITER_BASIC: E1 VAL: v=%d", *v); in iter_while_loop()115 int *v; in iter_while_loop_auto_cleanup() local120 while ((v = bpf_iter_num_next(&it))) { in iter_while_loop_auto_cleanup()[all …]
1 /* SPDX-License-Identifier: GPL-2.0 */5 * Kernel entry-points.8 #include <asm/asm-offsets.h>30 .cfi_rel_offset 64, 839 .size \func, . - \func43 * This defines the normal kernel pt-regs layout.45 * regs 9-15 preserved by C code46 * regs 16-18 saved by PAL-code47 * regs 29-30 saved and set up by PAL-code48 * JRP - Save regs 16-18 in a special area of the stack, so that[all …]
1 /* SPDX-License-Identifier: GPL-2.0-or-later */3 * Copyright 2015-2017 Google, Inc17 #define VDO_MAX_SIZE (VDO_MAX_OBJECTS + 1)21 * ----------23 * <15> :: VDM type ( 1b == structured, 0b == unstructured )26 * <10:8> :: object position (1-7 valid ... used for enter/exit mode only)37 #define VDO_SVDM_TYPE (1 << 15)39 #define VDO_OPOS(x) ((x) << 8)46 #define CMDT_RSP_ACK 152 #define VDO_SRC_RESPONDER (1 << 5)[all …]
3 Date: Mon, 30 Oct 2023 12:16:07 -04007 Upstream-Status: Backport from12 Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>13 ---14 general.c | 5 +++--15 jobs.c | 24 ++++++++++++++++--------16 tests/redir.right | 4 ++--18 tests/type.right | 16 ++++++++--------19 tests/type.tests | 24 ++++++++++++------------20 6 files changed, 43 insertions(+), 32 deletions(-)[all …]
1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later13 CEC_DQEVENT - Dequeue a CEC event35 non-blocking mode and no event is pending, then it will return -1 and38 The internal event queues are per-filehandle and per-event type. If39 there is no more room in a queue then the last event is overwritten with43 two :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>` events with51 .. flat-table:: struct cec_event_state_change52 :header-rows: 053 :stub-columns: 054 :widths: 1 1 8[all …]
1 /* SPDX-License-Identifier: GPL-2.0 */7 #define PDO_TYPE_BATT 120 #define PDO_FIXED_DUAL_ROLE (1 << 29) /* Power role swap supported */21 #define PDO_FIXED_SUSPEND (1 << 28) /* USB Suspend supported (Source) */22 #define PDO_FIXED_HIGHER_CAP (1 << 28) /* Requires more than vSafe5V (Sink) */23 #define PDO_FIXED_EXTPOWER (1 << 27) /* Externally powered */24 #define PDO_FIXED_USB_COMM (1 << 26) /* USB communications capable */25 #define PDO_FIXED_DATA_SWAP (1 << 25) /* Data role swap supported */64 #define PDO_APDO_TYPE_SHIFT 28 /* Only valid value currently is 0x0 - PPS */70 #define PDO_PPS_APDO_MIN_VOLT_SHIFT 8 /* 100mV units */[all …]
5 -------------------------------7 1. Building U-Boot8 ------------------19 ----------------------------21 J14 Pins 1-2 (near plcc32 socket)24 SW1(1-5) = 01100 CONFIG_SYS_COREPLL = 01000 :: CORE = 2:125 01100 :: CORE = 2.5:126 10000 :: CORE = 3:127 11100 :: CORE = 3.5:128 10100 :: CORE = 4:1[all …]
1 // SPDX-License-Identifier: GPL-2.0-only7 * Copyright (C) 2012-2015 Linus Walleij17 #include <linux/clk-provider.h>23 #include "clk-icst.h"34 #define INTEGRATOR_AP_PCI_25_33_MHZ BIT(8)37 * struct clk_icst - ICST VCO clock wrapper59 * vco_get() - get ICST VCO settings from a certain ICST68 ret = regmap_read(icst->map, icst->vcoreg_off, &val); in vco_get()74 * bits of the v PLL divider. Bit 8 is tied low and always zero, in vco_get()75 * r is hardwired to 22 and output divider s is hardwired to 1 in vco_get()[all …]
1 /* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) */5 * Copyright (C) 1999-2012 the contributors23 * 1. Redistributions of source code must retain the above copyright36 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT47 * All kernel-specific stuff were moved to media/v4l2-dev.h, so48 * no #if __KERNEL tests are allowed here66 #include <linux/v4l2-common.h>67 #include <linux/v4l2-controls.h>74 #define VIDEO_MAX_PLANES 880 /* Four-character-code (FOURCC) */[all …]
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL27 #include "qemu/error-report.h"33 /* 8 bit */35 #define ENDIAN_CONVERT(v) (v) argument37 /* Signed 8 bit */38 #define BSIZE 843 #define SHIFT 852 /* Unsigned 8 bit */53 #define BSIZE 8[all …]
2 * Miscellaneous target-dependent HMP commands4 * Copyright (c) 2003-2004 Fabrice Bellard18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL27 #include "exec/address-spaces.h"29 #include "monitor/hmp-target.h"30 #include "monitor/monitor-internal.h"42 return -1; in monitor_set_cpu()44 g_free(mon->mon_cpu_path); in monitor_set_cpu()45 mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu)); in monitor_set_cpu()54 if (mon->mon_cpu_path) { in mon_get_cpu_sync()[all …]
1 // SPDX-License-Identifier: GPL-2.0-or-later6 * Copyright (C) 1999-2000 Takashi Iwai <tiwai@suse.de>30 snd_emux_lock_voice(emu->emu, i); in snd_emu8000_open_dma()57 snd_emux_unlock_voice(emu->emu, i); in snd_emu8000_close_dma()65 #define BLANK_LOOP_END 871 * 8bit samples etc.80 c = cc << 8; /* convert 8bit -> 16bit */ in read_word()91 c ^= 0x8000; /* unsigned -> signed */ in read_word()101 schedule_timeout_interruptible(1); in snd_emu8000_write_wait()113 * completely loses words (every one in 16 roughly but with no[all …]
1 // SPDX-License-Identifier: GPL-2.0+3 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>24 #include <dt-bindings/reset/altr,rst-mgr.h>38 * FPGA programming support for SoC FPGA Cyclone V46 /* No limitation as additional data will be ignored */47 -1,48 /* No device function table */52 /* No cookie implementation */62 /* Cyclone V E */63 { 0x2b15, "Cyclone V, E/A2", "cv_e_a2" },[all …]
1 /* SPDX-License-Identifier: GPL-2.0 */14 * Copyright (C) 1999, 2001 Hewlett-Packard Co30 // The goal is to look at the string in chunks of 8 bytes.32 // string may not be 8-byte aligned. In this case we load the 8byte55 // - the cmp r0,r0 is used as a fast way to initialize a predicate56 // register to 1. This is required to make sure that we get the parallel59 // - we don't use the epilogue counter to exit the loop but we need to set62 // - after the loop we must test for Nat values because neither the68 // - Clearly performance tuning is required.86 alloc saved_pfs=ar.pfs,11,0,0,8 // rotating must be multiple of 8[all …]
1 // SPDX-License-Identifier: GPL-2.0+6 * COMEDI - Linux Control and Measurement Device Interface28 #define B(x) ((x) - NI_NAMES_BASE)29 #define V(x) ((x) | 0x80) macro32 static const char *pci_6070e = "pci-6070e";33 static const char *pci_6220 = "pci-6220";34 static const char *pci_fake = "pci-fake";47 static const int bad_dest = O(8), dest0 = O(0), desti = O(5);87 {.dest = O(0), .src = O9(/**/1, 2, 3, 4, 5, 6, 7, 8, 9)},88 {.dest = O(1), .src = O9(0, /**/2, 3, 4, 5, 6, 7, 8, 9)},[all …]