Home
last modified time | relevance | path

Searched full:signals (Results 1 – 25 of 558) sorted by relevance

12345678910>>...23

/openbmc/u-boot/include/
H A Dreset.h16 * or in response to some error condition. Reset signals are often controlled
19 * reset controllers set or clear reset signals.
22 * controller will often implement multiple separate reset signals, since the
26 * Reset consumers/clients are the HW modules affected by reset signals. This
66 * signals.
72 * the API to all the reset signals in the bulk struct.
87 * client device; each device is assumed to have n reset signals associated
89 * mapping of client device reset signal indices to provider reset signals may
95 * list of reset signals.
103 * reset_get_bulk - Get/request all reset signals of a device.
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Chassis/
H A DREADME.md10 following methods, signals.
17 #### signals subsubsection
26 methods, signals.
32 #### signals subsubsection
40 following methods, signals.
46 #### signals subsubsection
/openbmc/openbmc/poky/meta/recipes-devtools/gdb/gdb/
H A D0006-Fix-invalid-sigprocmask-call.patch24 * common/signals-state-save-restore.c (save_original_signals_state):
31 gdbsupport/signals-state-save-restore.cc | 2 +-
34 diff --git a/gdbsupport/signals-state-save-restore.cc b/gdbsupport/signals-state-save-restore.cc
36 --- a/gdbsupport/signals-state-save-restore.cc
37 +++ b/gdbsupport/signals-state-save-restore.cc
/openbmc/openbmc/meta-phosphor/recipes-phosphor/chassis/
H A Dobmc-phosphor-buttons_git.bb13 PACKAGECONFIG ??= "signals handler"
14 PACKAGECONFIG[signals] = ",,gpioplus nlohmann-json,"
24 SYSTEMD_SERVICE:${PN}-signals = "xyz.openbmc_project.Chassis.Buttons.service"
29 FILES:${PN}-signals = "${bindir}/buttons"
34 BUTTON_PACKAGES = "${PN}-signals ${PN}-handler"
/openbmc/u-boot/arch/arm/mach-socfpga/
H A Dfreeze_controller.c42 * and niotri signals in sys_mgr_frzctrl_freeze_req()
67 * niotri signals in sys_mgr_frzctrl_freeze_req()
76 * assert active low bhniotri & nfrzdrv signals, in sys_mgr_frzctrl_freeze_req()
78 * active high frzreg and nfrzdrv signals in sys_mgr_frzctrl_freeze_req()
92 * active high pllbiasen signals in sys_mgr_frzctrl_freeze_req()
133 * de-assert active low plniotri and niotri signals in sys_mgr_frzctrl_thaw_req()
158 * assert active high pllbiasen signals in sys_mgr_frzctrl_thaw_req()
168 * de-assert active low bhniotri signals, in sys_mgr_frzctrl_thaw_req()
185 /* de-assert active low plniotri and niotri signals */ in sys_mgr_frzctrl_thaw_req()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/crash/crash/
H A D0003-Fix-build-failure-in-readline-lib.patch15 signals.c: In function ‘_rl_handle_signal’:
16 signals.c:62:36: error: ‘return’ with a value, in function returning void [-Wreturn-mismatch]
19 signals.c:290:3: note: in expansion of macro ‘SIGHANDLER_RETURN’
22 signals.c:178:1: note: declared here
25 signals.c: In function ‘rl_sigwinch_handler’:
26signals.c:306:32: error: passing argument 2 of ‘rl_set_sighandler’ from incompatible pointer type …
32 from signals.c:37:
33 signals.c:81:51: note: expected ‘void (*)(void)’ but argument is of type ‘void (*)(int)’
54 +--- gdb-10.2/readline/readline/signals.c.orig
55 ++++ gdb-10.2/readline/readline/signals.c
/openbmc/u-boot/drivers/reset/
H A DKconfig10 controller drivers allow control over these reset signals. In some
28 Say Y if you want to control reset signals provided by system config
42 Enable support for manipulating Tegra's on-SoC reset signals via
49 Enable support for manipulating Tegra's on-SoC reset signals via IPC
72 Say Y if you want to control reset signals provided by System Control
83 though is that some reset signals, like I2C or MISC reset multiple
H A Dsandbox-reset.c19 struct sandbox_reset_signal signals[SANDBOX_RESET_SIGNALS]; member
45 sbr->signals[reset_ctl->id].asserted = true; in sandbox_reset_assert()
56 sbr->signals[reset_ctl->id].asserted = false; in sandbox_reset_deassert()
106 return sbr->signals[id].asserted; in sandbox_reset_query()
/openbmc/phosphor-fan-presence/control/json/triggers/
H A Dsignal.cpp96 // will do nothing since signals require a group in propertiesChanged()
121 // will do nothing since signals require a group in interfacesAdded()
145 // will do nothing since signals require a group in interfacesRemoved()
170 // will do nothing since signals require a group in nameOwnerChanged()
207 "signals from service of path {MEMBER}, interface {GROUP_INTERFACE}", in nameOwnerChanged()
223 // will do nothing since signals require a group in member()
239 auto subscriber = signals.end(); in triggerSignal()
244 subscriber = signals.find(signal); in triggerSignal()
246 if (subscriber == signals.end()) in triggerSignal()
248 // Construct list of available signals in triggerSignal()
[all …]
/openbmc/phosphor-host-ipmid/libipmid/
H A Dsignals.cpp82 std::vector<std::unique_ptr<SignalHandler>> signals; variable
94 if (signals.empty()) in registerSignalHandler()
96 signals.resize(SIGRTMAX); in registerSignalHandler()
99 if (!signals[signalNumber]) in registerSignalHandler()
102 signals[signalNumber] = in registerSignalHandler()
105 signals[signalNumber]->registerHandler(priority, handler); in registerSignalHandler()
/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dinterface.md.mako25 ${"##"} Signals
26 % if len(interface.signals):
27 % for s in interface.signals:
31 No signals.
/openbmc/qemu/tests/tcg/s390x/
H A DMakefile.target27 TESTS+=signals-s390x
98 run-gdbstub-signals-s390x: signals-s390x
102 --bin $< --test $(S390X_SRC)/gdbstub/test-signals-s390x.py, \
103 mixing signals and debugging)
114 EXTRA_RUNS += run-gdbstub-signals-s390x run-gdbstub-svc
/openbmc/sdeventplus/example/
H A Dfollow.cpp76 // Block all signals before changing system state so we guarantee our clean in main()
78 sigset_t signals; in main() local
79 if (sigfillset(&signals)) in main()
81 fprintf(stderr, "Failed to populate signals: %s\n", strerror(errno)); in main()
84 if (sigprocmask(SIG_BLOCK, &signals, nullptr)) in main()
86 fprintf(stderr, "Failed to mask signals: %s\n", strerror(errno)); in main()
/openbmc/qemu/tests/tcg/sh4/
H A DMakefile.target8 run-signals: signals
10 run-plugin-signals-with-%:
/openbmc/u-boot/doc/device-tree-bindings/reset/
H A Dreset.txt3 This binding is intended to represent the hardware reset signals present
4 internally in most IC (SoC, FPGA, ...) designs. Reset signals for whole
24 may be reset. Instead, reset signals should be represented in the DT node
27 block node for dedicated reset signals. The intent of this binding is to give
28 appropriate software access to the reset signals in order to manage the HW,
/openbmc/u-boot/doc/device-tree-bindings/gpio/
H A Dnvidia,tegra186-gpio.txt10 read/write the value of, numerous GPIO signals. Routing of GPIO signals to
24 b) GPIO registers, which allow manipulation of the GPIO signals. In some GPIO
48 Each GPIO controller can generate a number of interrupt signals. Each signal
50 number of interrupt signals generated by a controller varies as a rough function
54 Each GPIO controller in fact generates multiple interrupts signals for each set
56 interrupt signals generated by a set-of-ports. The intent is for each generated
59 per-port-set signals is reported via a separate register. Thus, a driver needs
/openbmc/qemu/bsd-user/
H A Dsignal-common.h2 * Emulation of BSD signals
13 * block_signals: block all signals while handling this guest syscall
15 * Block all signals, and arrange that the signal mask is returned to
21 * emulation of the system call knowing that no signals can be taken
26 * Signals will be unblocked again by process_pending_signals().
/openbmc/u-boot/drivers/reset/aspeed/
H A DKconfig9 is that some reset signals, like I2C or MISC reset multiple devices.
19 is that some reset signals, like I2C or MISC reset multiple devices.
29 is that some reset signals, like I2C or MISC reset multiple devices.
/openbmc/libcper/specification/json/common/
H A Dcper-json-error-status.json36 …"description": "Address: Error was detected on the address signals or on the address portion of th…
40 …"description": "Control: Error was detected on the control signals or in the control portion of th…
44 …"description": "Data: Error was detected on the data signals or in the data portion of the transac…
/openbmc/u-boot/drivers/clk/sifive/
H A Danalogbits-wrpll-cln28hpc.h53 * @divr: reference divider value (6 bits), as presented to the PLL signals.
54 * @divf: feedback divider value (9 bits), as presented to the PLL signals.
55 * @divq: output divider value (3 bits), as presented to the PLL signals.
64 * on its input signals. Thus @divr and @divf are the actual divisors
/openbmc/openbmc/meta-facebook/meta-anacapa/recipes-phosphor/images/
H A Dfb-anacapa-phosphor-image.inc5 obmc-phosphor-buttons-signals \
13 # Monitor power status, for example, add handling for power good and post-end signals to manage power status.
/openbmc/qemu/tests/tcg/hppa/
H A DMakefile.target8 run-signals: signals
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/images/
H A Dfb-harma-phosphor-image.inc3 # Monitor power status, for example, add handling for power good and post-end signals to manage pow…
25 obmc-phosphor-buttons-signals \
/openbmc/openbmc/meta-facebook/meta-santabarbara/recipes-phosphor/images/
H A Dfb-santabarbara-phosphor-image.inc5 obmc-phosphor-buttons-signals \
19 # Monitor power status, for example, add handling for power good and post-end signals to manage power status.
/openbmc/u-boot/board/renesas/stout/
H A Dcpld.h115 /* connected to COM Express connector, modes with sync signals */
118 /* connected to COM Express connector, modes with field, clken signals */
121 /* connected to COM Express connector, modes with sync, field, clken signals */
127 /* connected to COM Express connector, modes with field, clken signals */
130 /* connected to COM Express connector, modes with sync, field, clken signals */

12345678910>>...23