/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/proftpd/files/ |
H A D | proftpd-basic.init | 5 # Required-Start: $remote_fs $syslog $local_fs $network 6 # Required-Stop: $remote_fs $syslog $local_fs $network 7 # Should-Start: $named 8 # Should-Stop: $named 9 # Default-Start: 2 3 4 5 10 # Default-Stop: 0 1 6 11 # Short-Description: Starts ProFTPD daemon 27 PIDFILE=`grep -i '^pidfile' $CONFIG_FILE|awk '{ print $2 }'` 34 [ -r /etc/default/proftpd ] && . /etc/default/proftpd 39 test -f $DAEMON || exit 0 [all …]
|
/openbmc/linux/drivers/gpu/drm/sti/ |
H A D | sti_vtg.c | 1 // SPDX-License-Identifier: GPL-2.0 74 #define AWG_DELAY_HD (-9) 75 #define AWG_DELAY_ED (-8) 76 #define AWG_DELAY_SD (-7) 156 writel(1, vtg->regs + VTG_DRST_AUTOC); in vtg_reset() 160 const struct drm_display_mode *mode) in vtg_set_output_window() argument 166 u32 xstart = sti_vtg_get_pixel_number(*mode, 0); in vtg_set_output_window() 167 u32 ystart = sti_vtg_get_line_number(*mode, 0); in vtg_set_output_window() 168 u32 xstop = sti_vtg_get_pixel_number(*mode, mode->hdisplay - 1); in vtg_set_output_window() 169 u32 ystop = sti_vtg_get_line_number(*mode, mode->vdisplay - 1); in vtg_set_output_window() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/net/can/ |
H A D | fsl,flexcan.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 Flexcan CAN controller on Freescale's ARM and PowerPC system-on-a-chip (SOC). 11 - Marc Kleine-Budde <mkl@pengutronix.de> 14 - $ref: can-controller.yaml# 19 - enum: 20 - fsl,imx93-flexcan 21 - fsl,imx8qm-flexcan 22 - fsl,imx8mp-flexcan [all …]
|
/openbmc/linux/arch/arm/mach-imx/ |
H A D | common.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * Copyright 2004-2014 Freescale Semiconductor, Inc. All Rights Reserved. 50 STOP_POWER_ON, /* just STOP */ 51 STOP_POWER_OFF, /* STOP + SRPG */ 55 ULP_PM_HSRUN, /* High speed run mode */ 56 ULP_PM_RUN, /* Run mode */ 57 ULP_PM_WAIT, /* Wait mode */ 58 ULP_PM_STOP, /* Stop mode */ 59 ULP_PM_VLPS, /* Very low power stop mode */ 60 ULP_PM_VLLS, /* very low leakage stop mode */ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-extended/tgt/files/ |
H A D | tgtd.init | 5 # Required-Start: $remote_fs $network $syslog 6 # Required-Stop: $remote_fs $syslog 7 # Default-Start: 3 5 8 # Default-Stop: 0 1 2 6 9 # Short-Description: SCSI target daemon 19 echo -n "Starting $DESC..." 22 tgt-admin -s >/dev/null 2>&1 24 if [ "$RETVAL" -ne 107 ] ; then 32 if [ "$RETVAL" -ne 0 ]; then 40 tgtadm --op update --mode sys --name State -v offline [all …]
|
/openbmc/u-boot/drivers/i2c/ |
H A D | mv_i2c.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 11 /* Shall the current transfer have a start/stop condition? */ 28 /* ----- Control register bits ---------------------------------------- */ 31 #define ICR_STOP 0x2 /* stop bit */ 41 #define ICR_SSDIE 0x800 /* slave STOP detected int enable */ 46 #define ICR_SM 0x00000 /* Standard Mode */ 47 #define ICR_FM 0x10000 /* Fast Mode */ 48 #define ICR_MODE_MASK 0x30000 /* Mode mask */ 50 #define ICR_SM 0x00000 /* Standard Mode */ 51 #define ICR_FM 0x08000 /* Fast Mode */ [all …]
|
H A D | davinci_i2c.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 3 * (C) Copyright 2004-2014 33 #define I2C_IE_SCD_IE (1 << 5) /* Stop condition detect interrupt enable */ 46 #define I2C_STAT_SCD (1 << 5) /* Stop condition detect */ 62 #define I2C_INTCODE_SCD 6 /* Stop condition detect */ 67 #define I2C_CON_STB (1 << 4) /* Start byte mode (master mode only) */ 68 #define I2C_CON_MST (1 << 10) /* Master/slave mode */ 69 #define I2C_CON_TRX (1 << 9) /* Tx/Rx mode (master mode only) */ 71 #define I2C_CON_STP (1 << 11) /* Stop condition (master mode only) */ 72 #define I2C_CON_STT (1 << 13) /* Start condition (master mode only) */
|
/openbmc/qemu/hw/ssi/ |
H A D | pnv_spi.c | 6 * SPDX-License-Identifier: GPL-2.0-or-later 11 #include "hw/qdev-properties.h" 56 g_free(payload->data); in pnv_spi_xfer_buffer_free() 63 if (payload->len < (offset + length)) { in pnv_spi_xfer_buffer_write_ptr() 64 payload->len = offset + length; in pnv_spi_xfer_buffer_write_ptr() 65 payload->data = g_realloc(payload->data, payload->len); in pnv_spi_xfer_buffer_write_ptr() 67 return &payload->data[offset]; in pnv_spi_xfer_buffer_write_ptr() 77 s->regs[SPI_MM_REG]); in does_rdr_match() 79 s->regs[SPI_MM_REG]); in does_rdr_match() 82 GETFIELD(PPC_BITMASK(48, 63), s->regs[SPI_RCV_DATA_REG]))) { in does_rdr_match() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/net/ |
H A D | ethernet-phy.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/net/ethernet-phy.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Andrew Lunn <andrew@lunn.ch> 11 - Florian Fainelli <f.fainelli@gmail.com> 12 - Heiner Kallweit <hkallweit1@gmail.com> 14 # The dt-schema tools will generate a select statement first by using 21 pattern: "^ethernet-phy(@[a-f0-9]+)?$" 24 - $nodename [all …]
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-uniphier-f.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 15 #define UNIPHIER_FI2C_CR_MST BIT(3) /* master mode */ 17 #define UNIPHIER_FI2C_CR_STO BIT(1) /* stop condition */ 26 #define UNIPHIER_FI2C_SSUT 0x18 /* restart/stop setup time control */ 33 #define UNIPHIER_FI2C_INT_TC BIT(7) /* send complete (STOP) */ 34 #define UNIPHIER_FI2C_INT_RC BIT(6) /* receive complete (STOP) */ 41 #define UNIPHIER_FI2C_SR_STS BIT(11) /* stop condition detected */ 99 * TX-FIFO stores slave address in it for the first access. in uniphier_fi2c_fill_txfifo() 103 fifo_space--; in uniphier_fi2c_fill_txfifo() 105 while (priv->len) { in uniphier_fi2c_fill_txfifo() [all …]
|
H A D | i2c-img-scb.c | 1 // SPDX-License-Identifier: GPL-2.0-only 9 * - Raw control of the SDA and SCK signals. 15 * - Atomic commands. A low level I2C symbol (such as generate 16 * start/stop/ack/nack bit, generate byte, receive byte, and receive 20 * This mode of operation is used by MODE_ATOMIC, which uses an I2C 22 * transactions using atomic mode commands, and also by MODE_SEQUENCE, 23 * which emits a simple fixed sequence of atomic mode commands. 29 * - Automatic mode. A bus address, and whether to read/write is 38 * Use of automatic mode and the FIFO can make much more efficient use 44 * the bus), MODE_ATOMIC must be used since automatic mode is normally [all …]
|
/openbmc/qemu/include/gdbstub/ |
H A D | user.h | 2 * gdbstub user-mode only APIs 6 * SPDX-License-Identifier: LGPL-2.0-or-later 15 * gdb_handlesig() - yield control to gdb 17 * @sig: if non-zero, the signal number which caused us to stop 18 * @reason: stop reason for stop reply packet or NULL 19 * @siginfo: target-specific siginfo struct 20 * @siginfo_len: target-specific siginfo struct length 22 * This function yields control to gdb, when a user-mode-only target 23 * needs to stop execution. If @sig is non-zero, then we will send a 24 * stop packet to tell gdb that we have stopped because of this signal. [all …]
|
/openbmc/qemu/include/block/ |
H A D | replication.h | 12 * See the COPYING file in the top-level directory. 18 #include "qapi/qapi-types-block-core.h" 41 * static void replication_start(ReplicationState *rs, ReplicationMode mode, 52 * .stop = replication_stop, 58 * BDRVReplicationState *s = bs->opaque; 59 * s->rs = replication_new(bs, &replication_ops); 65 * BDRVReplicationState *s = bs->opaque; 66 * replication_remove(s->rs); 87 * Then in migration, we can use replication_(start/stop/do_checkpoint/ 106 * @stop: callback to stop replication [all …]
|
/openbmc/linux/Documentation/tools/rtla/ |
H A D | common_osnoise_options.rst | 1 **-a**, **--auto** *us* 3 Set the automatic trace mode. This mode sets some commonly used options 4 while debugging the system. It is equivalent to use **-s** *us* **-T 1 -t**. 6 **-p**, **--period** *us* 10 **-r**, **--runtime** *us* 14 **-s**, **--stop** *us* 16 Stop the trace if a single sample is higher than the argument in microseconds. 17 If **-T** is set, it will also save the trace to the output. 19 **-S**, **--stop-total** *us* 21 Stop the trace if the total sample is higher than the argument in microseconds. [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/ |
H A D | 0004-rarpd.init-add-new-init-file.patch | 6 Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> 7 --- 8 Upstream-Status: Pending 12 create mode 100644 rarpd.init 14 diff --git a/rarpd.init b/rarpd.init 15 new file mode 100644 17 --- /dev/null 19 @@ -0,0 +1,96 @@ 26 +# chkconfig: - 82 16 32 +# Required-Start: $syslog $network [all …]
|
/openbmc/linux/arch/arm/mach-lpc32xx/ |
H A D | suspend.S | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * arch/arm/mach-lpc32xx/suspend.S 39 stmfd r0!, {r3 - r7, sp, lr} 63 @ Setup self-refresh with support for manual exit of 64 @ self-refresh mode 70 @ Wait for self-refresh acknowledge, clocks to the DRAM device 71 @ will automatically stop on start of self-refresh 76 bne 3b @ Branch until self-refresh mode starts 78 @ Enter direct-run mode from run mode 95 @ Enter stop mode until an enabled event occurs [all …]
|
/openbmc/linux/arch/mips/include/uapi/asm/ |
H A D | termbits.h | 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 14 #include <asm-generic/termbits-common.h> 24 tcflag_t c_iflag; /* input mode flags */ 25 tcflag_t c_oflag; /* output mode flags */ 26 tcflag_t c_cflag; /* control mode flags */ 27 tcflag_t c_lflag; /* local mode flags */ 33 tcflag_t c_iflag; /* input mode flags */ 34 tcflag_t c_oflag; /* output mode flags */ 35 tcflag_t c_cflag; /* control mode flags */ 36 tcflag_t c_lflag; /* local mode flags */ [all …]
|
/openbmc/qemu/hw/char/ |
H A D | stm32l4x5_usart.c | 4 * Copyright (c) 2023 Arnaud Minier <arnaud.minier@telecom-paris.fr> 5 * Copyright (c) 2023 Inès Varhol <ines.varhol@telecom-paris.fr> 7 * SPDX-License-Identifier: GPL-2.0-or-later 10 * See the COPYING file in the top-level directory. 15 * for STM32L4x5 and STM32L4x6 advanced Arm ® -based 32-bit MCUs. 22 #include "chardev/char-fe.h" 23 #include "chardev/char-serial.h" 28 #include "hw/qdev-clock.h" 29 #include "hw/qdev-properties.h" 30 #include "hw/qdev-properties-system.h" [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/input/ |
H A D | dlg,da7280.txt | 4 - compatible: Should be "dlg,da7280". 5 - reg: Specifies the I2C slave address. 7 - interrupt-parent : Specifies the phandle of the interrupt controller to 10 - dlg,actuator-type: Set Actuator type. it should be one of: 11 "LRA" - Linear Resonance Actuator type. 12 "ERM-bar" - Bar type Eccentric Rotating Mass. 13 "ERM-coin" - Coin type Eccentric Rotating Mass. 15 - dlg,const-op-mode: Haptic operation mode for FF_CONSTANT. 17 1 - Direct register override(DRO) mode triggered by i2c(default), 18 2 - PWM data source mode controlled by PWM duty, [all …]
|
/openbmc/linux/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 20 * 3. Neither the names of the above-listed copyright holders nor the names 224 %left '+' '-' 280 stop("Prefix multiply defined", 284 stop("Unable to record prefix", EX_SOFTWARE); 292 stop("Patch argument list multiply defined", 296 stop("Unable to record patch arg list", EX_SOFTWARE); 312 if ($1->type != UNINITIALIZED) { 313 stop("Register multiply defined", EX_DATAERR); 317 cur_symbol->type = cur_symtype; 327 if (cur_symbol->info.rinfo->valid_bitmask == 0) [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/ |
H A D | wpa-supplicant.sh | 8 WPA_SUP_OPTIONS="-B -P $WPA_SUP_PIDFILE -i $IFACE" 13 if [ -s "$IF_WPA_CONF" ]; then 14 WPA_SUP_CONF="-c $IF_WPA_CONF" 19 if [ ! -x "$WPA_SUP_BIN" ]; then 28 if [ "$MODE" = "start" ] ; then 30 if [ -s "/etc/wpa_supplicant/driver.$IFACE" ]; then 32 elif [ -z "$IF_WPA_DRIVER" ]; then 35 echo "$WPA_SUP_PNAME: wpa-driver not provided, using \"wext\"" 42 if [ -n "$WPA_SUP_CONF" ]; then 45 echo "$WPA_SUP_PNAME: $WPA_SUP_BIN $WPA_SUP_OPTIONS $WPA_SUP_CONF -D $IF_WPA_DRIVER" [all …]
|
/openbmc/linux/arch/s390/kvm/ |
H A D | trace-s390.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 8 #define TRACE_SYSTEM kvm-s390 11 #define TRACE_INCLUDE_FILE trace-s390 32 __entry->type = type; 36 __entry->type & KVM_VM_S390_UCONTROL ? " (UCONTROL)" : "") 54 __entry->id = id; 55 __entry->vcpu = vcpu; 56 __entry->sie_block = sie_block; 60 __entry->id, __entry->vcpu, __entry->sie_block) 72 __entry->id = id; [all …]
|
/openbmc/linux/kernel/trace/ |
H A D | trace_hwlat.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * trace_hwlat.c - A simple Hardware Latency detector. 18 * SMI mode (complete with special memory map), and the OS is unaware. 20 * Although certain hardware-inducing latencies are necessary (for example, 22 * and remote management) they can wreak havoc upon any OS-level performance 23 * guarantees toward low-latency, especially when the OS is not even made 27 * sampling the built-in CPU timer, looking for discontiguous readings. 31 * environment requiring any kind of low-latency performance 34 * Copyright (C) 2008-2009 Jon Masters, Red Hat, Inc. <jcm@redhat.com> 35 * Copyright (C) 2013-2016 Steven Rostedt, Red Hat, Inc. <srostedt@redhat.com> [all …]
|
/openbmc/linux/drivers/watchdog/ |
H A D | pnx4008_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0 12 * 2005-2006 (c) MontaVista Software, Inc. 34 /* WatchDog Timer - Chapter 23 Page 207 */ 87 /* stop counter, initiate counter reset */ in pnx4008_wdt_start() 92 /* internal and external reset, stop after that */ in pnx4008_wdt_start() 100 writel(wdd->timeout * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base)); in pnx4008_wdt_start() 101 /*enable counter, stop when debugger active */ in pnx4008_wdt_start() 112 writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */ in pnx4008_wdt_stop() 121 wdd->timeout = new_timeout; in pnx4008_wdt_set_timeout() 126 unsigned long mode, void *cmd) in pnx4008_restart_handler() argument [all …]
|
/openbmc/openbmc/meta-openpower/recipes-phosphor/host/ |
H A D | op-proc-control-systemd-links.bb | 4 LICENSE = "Apache-2.0" 5 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacd… 9 RDEPENDS:${PN} += "op-proc-control" 10 RDEPENDS:${PN} += "phosphor-state-manager-obmc-targets" 15 mkdir -p $D$systemd_system_unitdir/obmc-host-stop@0.target.wants 16 mkdir -p $D$systemd_system_unitdir/obmc-host-force-warm-reboot@0.target.requires 17 mkdir -p $D$systemd_system_unitdir/obmc-host-startmin@0.target.requires 18 mkdir -p $D$systemd_system_unitdir/obmc-host-startmin@0.target.wants 19 mkdir -p $D$systemd_system_unitdir/obmc-host-diagnostic-mode@0.target.requires 20 mkdir -p $D$systemd_system_unitdir/obmc-chassis-poweron@0.target.requires [all …]
|