Searched refs:wakeup (Results 1 - 25 of 242) sorted by relevance

12345678910

/linux-master/tools/perf/scripts/perl/bin/
H A Dwakeup-latency-report2 # description: system-wide min/max/avg wakeup latency
3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/wakeup-latency.pl
/linux-master/samples/pfsm/
H A DMakefile2 userprogs-always-y += pfsm-wakeup
/linux-master/drivers/acpi/
H A Dwakeup.c3 * wakeup.c - support wakeup devices
17 bool (*wakeup)(void *context); member in struct:acpi_wakeup_handler
34 * Enable wakeup device power of devices with the state.enable flag set and set
35 * the wakeup enable mask bits in the GPE registers that correspond to wakeup
44 if (!dev->wakeup.flags.valid
45 || sleep_state > (u32) dev->wakeup.sleep_state
47 || dev->wakeup.prepare_count))
54 acpi_set_gpe_wake_mask(dev->wakeup
[all...]
H A Ddevice_pm.c501 * acpi_dev_power_state_for_wake - Deepest power state for wakeup signaling
544 if (adev->wakeup.flags.notifier_present) {
545 pm_wakeup_ws_event(adev->wakeup.ws, 0, acpi_s2idle_wakeup());
546 if (adev->wakeup.context.func) {
548 adev->wakeup.context.func,
549 dev_name(adev->wakeup.context.dev));
550 adev->wakeup.context.func(&adev->wakeup.context);
562 * @dev: Device to generate a wakeup event for while handling the notification.
565 * NOTE: @adev need not be a run-wake or wakeup devic
675 bool wakeup = false; local
852 struct acpi_device_wakeup *wakeup = &adev->wakeup; local
928 struct acpi_device_wakeup *wakeup = &adev->wakeup; local
1015 acpi_dev_suspend(struct device *dev, bool wakeup) argument
[all...]
H A Dproc.c15 * /proc/acpi/wakeup
30 if (!dev->wakeup.flags.valid)
35 (u32) dev->wakeup.sleep_state);
41 dev->wakeup.flags.valid ? '*' : ' ',
57 dev->wakeup.flags.valid ? '*' : ' ',
109 if (!dev->wakeup.flags.valid)
143 /* 'wakeup device' [R/W] */
144 proc_create("wakeup", S_IFREG | S_IRUGO | S_IWUSR,
/linux-master/tools/testing/selftests/ftrace/test.d/tracer/
H A Dwakeup.tc3 # description: Test wakeup tracer
4 # requires: wakeup:tracer chrt:program
6 echo wakeup > current_tracer
/linux-master/include/linux/input/
H A Dsamsung-keypad.h23 * @wakeup: controls whether the device should be set up as wakeup source.
34 bool wakeup; member in struct:samsung_keypad_platdata
/linux-master/drivers/usb/chipidea/
H A Dci_hdrc_imx.h38 int imx_usbmisc_suspend(struct imx_usbmisc_data *data, bool wakeup);
39 int imx_usbmisc_resume(struct imx_usbmisc_data *data, bool wakeup);
/linux-master/include/linux/mfd/
H A Drt5033.h31 bool wakeup; member in struct:rt5033_dev
H A Dmax8998.h70 * @wakeup: Allow to wake up from suspend
93 bool wakeup; member in struct:max8998_platform_data
/linux-master/include/linux/
H A Dgpio_keys.h17 * @wakeup: configure the button as a wake-up source
18 * @wakeup_event_action: event action to trigger wakeup
32 int wakeup; member in struct:gpio_keys_button
/linux-master/drivers/slimbus/
H A Dsched.c13 * @wakeup: Wakeup this controller from clock pause.
21 * This API executes clock pause reconfiguration sequence if wakeup is false.
22 * If wakeup is true, controller's wakeup is called.
25 int slim_ctrl_clk_pause(struct slim_controller *ctrl, bool wakeup, u8 restart) argument
35 if (wakeup == false && restart > SLIM_CLK_UNSPECIFIED)
39 if (wakeup) {
59 * Slimbus framework will call controller wakeup
63 if (sched->clk_state == SLIM_CLK_PAUSED && ctrl->wakeup)
64 ret = ctrl->wakeup(ctr
[all...]
/linux-master/arch/x86/realmode/rm/
H A DMakefile21 wakeup-objs := wakeup_asm.o wakemain.o video-mode.o
22 wakeup-objs += copy.o bioscall.o regs.o
27 wakeup-objs += video-vga.o
28 wakeup-objs += video-vesa.o
29 wakeup-objs += video-bios.o
35 realmode-$(CONFIG_ACPI_SLEEP) += $(wakeup-objs)
/linux-master/arch/x86/platform/olpc/
H A DMakefile3 obj-$(CONFIG_OLPC_XO1_PM) += olpc-xo1-pm.o xo1-wakeup.o
/linux-master/arch/powerpc/sysdev/
H A Dfsl_mpic_timer_wakeup.c3 * MPIC timer wakeup driver
28 struct fsl_mpic_timer_wakeup *wakeup = local
33 if (wakeup->timer) {
34 disable_irq_wake(wakeup->timer->irq);
35 mpic_free_timer(wakeup->timer);
38 wakeup->timer = NULL;
44 struct fsl_mpic_timer_wakeup *wakeup = dev_id; local
46 schedule_work(&wakeup->free_work);
48 return wakeup->timer ? IRQ_HANDLED : IRQ_NONE;
164 MODULE_DESCRIPTION("Freescale MPIC global timer wakeup drive
[all...]
/linux-master/drivers/base/power/
H A DMakefile3 obj-$(CONFIG_PM_SLEEP) += main.o wakeup.o wakeup_stats.o
H A Dsysfs.c30 * wakeup - Report/change current wakeup option for device
32 * Some devices support "wakeup" events, which are hardware signals
34 * devices have one of three values for the sysfs power/wakeup file:
38 * + "\n" for temporary or permanent inability to issue wakeup.
42 * Familiar examples of devices that can issue wakeup events include
47 * Some wakeup events use normal IRQ lines; other use special out
51 * wakeup signaling as part of changing device power states, respecting
54 * Devices may not be able to generate wakeup events from all power
57 * active, or which may have wakeup disable
[all...]
/linux-master/drivers/gpu/drm/tegra/
H A Dmipi-phy.h40 unsigned int wakeup; member in struct:mipi_dphy_timing
/linux-master/include/linux/spi/
H A Dads7846.h42 bool wakeup; member in struct:ads7846_platform_data
/linux-master/drivers/gnss/
H A Dsirf.c45 struct gpio_desc *wakeup; member in struct:sirf_data
170 if (!data->wakeup && !data->active) {
194 ret = gpiod_get_value_cansleep(data->wakeup);
195 dev_dbg(dev, "%s - wakeup = %d\n", __func__, ret);
235 if (!data->wakeup)
270 if (!data->wakeup) {
281 if (!data->wakeup)
357 if (data->wakeup)
368 if (data->wakeup)
448 data->wakeup
[all...]
/linux-master/include/linux/phy/
H A Dphy-mipi-dphy.h245 * @wakeup:
253 unsigned int wakeup; member in struct:phy_configure_opts_mipi_dphy
/linux-master/net/tipc/
H A Dgroup.h60 void tipc_group_member_evt(struct tipc_group *grp, bool *wakeup,
64 void tipc_group_proto_rcv(struct tipc_group *grp, bool *wakeup,
/linux-master/arch/arm/mach-s3c/
H A DMakefile23 obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o
/linux-master/drivers/infiniband/hw/hfi1/
H A Diowait.c35 * @resume: wakeup function for no space
49 void (*wakeup)(struct iowait *wait, int reason),
63 wait->wakeup = wakeup;
/linux-master/kernel/power/
H A Dprocess.c38 bool wakeup = false; local
70 wakeup = true;
91 wakeup ? "aborted" : "failed",
98 if (!wakeup || pm_debug_messages_on) {

Completed in 482 milliseconds

12345678910