Home
last modified time | relevance | path

Searched +full:ot +full:- +full:level +full:- +full:select (Results 1 – 15 of 15) sorted by relevance

/openbmc/linux/Documentation/devicetree/bindings/regulator/
H A Drichtek,rt6245-regulator.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/regulator/richtek,rt6245-regulator.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - ChiYuan Huang <cy_huang@richtek.com>
13 The RT6245 is a high-performance, synchronous step-down converter
18 - $ref: regulator.yaml#
23 - richtek,rt6245
28 enable-gpios:
31 it will be treat as a default-on power.
[all …]
/openbmc/qemu/target/i386/tcg/
H A Dtranslate.c21 #include "qemu/host-utils.h"
23 #include "exec/exec-all.h"
24 #include "tcg/tcg-op.h"
25 #include "tcg/tcg-op-gvec.h"
29 #include "exec/helper-proto.h"
30 #include "exec/helper-gen.h"
31 #include "helper-tcg.h"
32 #include "decode-new.h"
37 #include "exec/helper-info.c.inc"
93 int8_t override; /* -1 if no override, else R_CS, R_DS, etc */
[all …]
/openbmc/linux/drivers/regulator/
H A Drt6245-regulator.c1 // SPDX-License-Identifier: GPL-2.0+
31 #define RT6245_NUM_VOUT ((RT6245_VOUT_MAXUV - RT6245_VOUT_MINUV) / RT6245_VOUT_STEPUV + 1)
44 if (!priv->enable_gpio) in rt6245_enable()
47 gpiod_direction_output(priv->enable_gpio, 1); in rt6245_enable()
55 priv->enable_state = true; in rt6245_enable()
64 if (!priv->enable_gpio) in rt6245_disable()
65 return -EINVAL; in rt6245_disable()
70 gpiod_direction_output(priv->enable_gpio, 0); in rt6245_disable()
72 priv->enable_state = false; in rt6245_disable()
80 return priv->enable_state ? 1 : 0; in rt6245_is_enabled()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/valkey/valkey/
H A Dvalkey.conf6 # ./valkey-server /path/to/valkey.conf
24 # to customize a few per-server settings. Include files can include
88 protected-mode yes
96 # In high requests-per-second environments you need an high backlog in order
101 tcp-backlog 511
117 # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
130 tcp-keepalive 300
139 # supervised no - no supervision interaction
140 # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
141 # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis/
H A Dredis.conf6 # ./redis-server /path/to/redis.conf
24 # to customize a few per-server settings. Include files can include
88 protected-mode yes
96 # In high requests-per-second environments you need an high backlog in order
101 tcp-backlog 511
117 # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
130 tcp-keepalive 300
139 # supervised no - no supervision interaction
140 # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
141 # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis-7.2.6/
H A Dredis.conf6 # ./redis-server /path/to/redis.conf
24 # to customize a few per-server settings. Include files can include
88 protected-mode yes
96 # In high requests-per-second environments you need an high backlog in order
101 tcp-backlog 511
117 # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
130 tcp-keepalive 300
139 # supervised no - no supervision interaction
140 # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
141 # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
[all …]
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_plane.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2014-2018 The Linux Foundation. All rights reserved.
11 #include <linux/dma-buf.h>
30 (pl) ? (pl)->base.base.id : -1, ##__VA_ARGS__)
33 (pl) ? (pl)->base.base.id : -1, ##__VA_ARGS__)
35 #define DECIMATED_DIMENSION(dim, deci) (((dim) + ((1 << (deci)) - 1)) >> (deci))
72 * struct dpu_plane - local dpu plane structure
101 struct msm_drm_private *priv = plane->dev->dev_private; in _dpu_plane_get_kms()
103 return to_dpu_kms(priv->kms); in _dpu_plane_get_kms()
107 * _dpu_plane_calc_bw - calculate bandwidth required for a plane
[all …]
/openbmc/linux/drivers/scsi/
H A Dncr53c8xx.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 ** Device driver for the PCI-SCSI NCR538XX controller family.
8 **-----------------------------------------------------------------------------
22 ** Stefan Esser <se@mi.Uni-Koeln.de>
27 **-----------------------------------------------------------------------------
38 ** Support for Fast-20 scsi.
42 ** Support for Fast-40 scsi.
43 ** Support for on-Board RAM.
46 ** Full support for scsi scripts instructions pre-fetching.
57 ** Low PCI traffic for command handling when on-chip RAM is present.
[all …]
/openbmc/linux/fs/jfs/
H A Djfs_logmgr.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) International Business Machines Corp., 2000-2004
4 * Portions Copyright (C) Christoph Hellwig, 2001-2002
24 * transactions which wrote COMMIT records in the same in-memory
38 * careful-write (ping-pong) of last logpage to recover from crash
40 * detection of split (out-of-order) write of physical sectors
45 * lsn - 64-bit monotonically increasing integer vs
46 * 32-bit lspn and page eor.
80 #define LOG_LOCK_INIT(log) mutex_init(&(log)->loglock)
81 #define LOG_LOCK(log) mutex_lock(&((log)->loglock))
[all …]
/openbmc/linux/drivers/infiniband/hw/hfi1/
H A Dchip.c1 // SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
3 * Copyright(c) 2015 - 2020 Intel Corporation.
32 MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
78 #define SEC_SC_HALTED 0x4 /* per-context only */
79 #define SEC_SPC_FREEZE 0x8 /* per-HFI only */
87 * 0 - User Fecn Handling
88 * 1 - Vnic
89 * 2 - AIP
90 * 3 - Verbs
101 #define emulator_rev(dd) ((dd)->irev >> 8)
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch2 Upstream-Status: Inappropriate
4 RPI-Distro repo clones original ffmpeg and applies patches to enable
7 --- a/configure
9 @@ -205,6 +205,7 @@ External library support:
10 --disable-bzlib disable bzlib [autodetect]
11 --disable-coreimage disable Apple CoreImage framework [autodetect]
12 --enable-chromaprint enable audio fingerprinting with chromaprint [no]
13 + --disable-epoxy disable epoxy [autodetect]
14 --enable-frei0r enable frei0r video filtering [no]
15 --enable-gcrypt enable gcrypt, needed for rtmp(t)e support
[all …]
/openbmc/linux/
H A Dopengrok0.0.log1 2024-12-28 20:09:05.996-0600 FINEST t1171 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/linux/drivers/staging/media/av7110/video-continue.rst.gz'
2 2024-12-28 20:09:05.942-0600 FINEST t1149 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/u-boot/arch/sh/config.mk.gz'
3 2024-12-2
[all...]
H A Dopengrok1.0.log1 2024-12-28 20:07:11.902-0600 FINER t583 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c'
2 2024-12-28 20:07:11.913-0600 FINEST t583 Statistics.logIt: Added: '/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' (CAnalyzer) (took 116 ms)
3 2024-12-28 20:07:11.899-0600 FINER t593 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/tools/testing/selftests/powerpc/tm/tm-signa
[all...]
/openbmc/
Dopengrok1.0.log1 2025-01-10 03:00:45.010-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-01-10 03:00:45.121-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]
Dopengrok2.0.log1 2025-01-09 03:00:44.932-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-01-09 03:00:45.045-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]