Searched refs:wakeup (Results 26 - 50 of 244) sorted by relevance

12345678910

/linux-master/kernel/time/
H A Dtimer_migration.h83 * @wakeup: Stores the first timer when the timer migration
96 u64 wakeup; member in struct:tmigr_cpu
/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) {
H A Dsuspend.c399 * @wakeup: Returns information that the sleep state should not be re-entered.
403 static int suspend_enter(suspend_state_t state, bool *wakeup) argument
448 *wakeup = pm_wakeup_pending();
449 if (!(suspend_test(TEST_CORE) || *wakeup)) {
455 } else if (*wakeup) {
491 bool wakeup = false; local
517 error = suspend_enter(state, &wakeup);
518 } while (!error && !wakeup && platform_suspend_again(state));
557 * system enter the given sleep state and clean up after wakeup.
603 pm_pr_dbg("Finishing wakeup
[all...]
/linux-master/drivers/usb/fotg210/
H A Dfotg210-core.c48 bool wakeup; local
56 wakeup = of_property_read_bool(np, "wakeup-source");
71 if (wakeup)
81 if (wakeup)
/linux-master/include/trace/events/
H A Dtimer_migration.h147 __field( u64, wakeup )
154 __entry->wakeup = tmc->wakeup;
159 TP_printk("cpu=%d parent=%p wakeup=%llu", __entry->cpu, __entry->parent, __entry->wakeup)
205 __field( u64, wakeup)
212 __entry->wakeup = tmc->wakeup;
217 TP_printk("cpu=%d parent=%p nextevt=%llu wakeup=%llu",
218 __entry->cpu, __entry->parent, __entry->nextevt, __entry->wakeup)
[all...]
/linux-master/drivers/usb/cdns3/
H A Dcdns3-plat.c115 cdns->wakeup_irq = platform_get_irq_byname_optional(pdev, "wakeup");
120 dev_dbg(dev, "couldn't get wakeup irq\n");
202 bool suspend, bool wakeup)
208 ret = cdns->pdata->platform_suspend(dev, suspend, wakeup);
216 bool wakeup; local
223 wakeup = true;
225 wakeup = device_may_wakeup(dev);
227 cdns3_set_platform_suspend(cdns->dev, true, wakeup);
201 cdns3_set_platform_suspend(struct device *dev, bool suspend, bool wakeup) argument
H A Dcore.h44 bool suspend, bool wakeup);
63 * @wakeup_irq: irq number for wakeup event, it is optional
77 * @wakeup_pending: wakeup interrupt pending
/linux-master/drivers/platform/x86/
H A Dxo15-ebook.c131 if (device->wakeup.flags.valid) {
133 acpi_enable_gpe(device->wakeup.gpe_device,
134 device->wakeup.gpe_number);
/linux-master/drivers/gpu/drm/tegra/
H A Dmipi-phy.c53 timing->wakeup = 1000000;
130 if (timing->wakeup < 1000000)
/linux-master/drivers/thunderbolt/
H A Dnhi_ops.c145 static int icl_nhi_suspend_noirq(struct tb_nhi *nhi, bool wakeup) argument
156 cmd = wakeup ? ICL_LC_GO2SX : ICL_LC_GO2SX_NO_WAKE;
/linux-master/drivers/mfd/
H A Drt5033.c68 rt5033->wakeup = true;
101 device_init_wakeup(rt5033->dev, rt5033->wakeup);
/linux-master/kernel/events/
H A Dring_buffer.c37 * We only publish the head (and generate a wakeup) when the outer-most
51 handle->wakeup = local_read(&rb->wakeup);
134 if (handle->wakeup != local_read(&rb->wakeup))
237 if (unlikely(head - local_read(&rb->wakeup) > rb->watermark))
238 local_add(rb->watermark, &rb->wakeup);
431 handle->wakeup = rb->aux_wakeup + rb->aux_watermark;
487 bool wakeup = !!(handle->aux_flags & PERF_AUX_FLAG_TRUNCATED); local
522 wakeup
[all...]
/linux-master/drivers/acpi/
H A Dpower.c598 if (adev->wakeup.flags.valid)
599 acpi_power_expose_hide(adev, &adev->wakeup.resources,
654 * wakeup.flags.valid flag.
690 dev->wakeup.flags.valid = 0;
698 dev->wakeup.flags.valid = 0;
706 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
707 * 1. Power on the power resources required for the wakeup device
715 if (!dev || !dev->wakeup.flags.valid)
720 dev_dbg(&dev->dev, "Enabling wakeup power (count %d)\n",
721 dev->wakeup
[all...]
H A Dscan.c472 if (device->wakeup.flags.valid)
473 acpi_power_resources_list_free(&device->wakeup.resources);
756 if (device->wakeup.flags.valid)
891 struct acpi_device_wakeup *wakeup = &dev->wakeup; local
898 INIT_LIST_HEAD(&wakeup->resources);
924 wakeup->gpe_device =
926 wakeup->gpe_number =
929 wakeup->gpe_device = NULL;
930 wakeup
980 struct acpi_device_wakeup *wakeup = &device->wakeup; local
[all...]
/linux-master/drivers/base/power/
H A Dwakeup.c3 * drivers/base/power/wakeup.c - System wakeup events framework
27 * if wakeup events are registered during or immediately before the transition.
31 /* First wakeup IRQ seen by the kernel in the last cycle. */
39 * Combined counters of registered wakeup events and wakeup events in progress.
78 * @name: Name of the new wakeup source.
150 * Use only for wakeup source objects created with wakeup_source_create().
164 * wakeup_source_add - Add given object to the list of wakeup sources.
185 * wakeup_source_remove - Remove given object from the wakeup source
[all...]
/linux-master/drivers/pmdomain/rockchip/
H A Dpm-domains.c105 #define DOMAIN(_name, pwr, status, req, idle, ack, wakeup) \
113 .active_wakeup = (wakeup), \
116 #define DOMAIN_M(_name, pwr, status, req, idle, ack, wakeup) \
126 .active_wakeup = wakeup, \
129 #define DOMAIN_M_O_R(_name, p_offset, pwr, status, m_offset, m_status, r_status, r_offset, req, idle, ack, wakeup) \
144 .active_wakeup = wakeup, \
147 #define DOMAIN_RK3036(_name, req, ack, idle, wakeup) \
154 .active_wakeup = wakeup, \
157 #define DOMAIN_PX30(name, pwr, status, req, wakeup) \
158 DOMAIN_M(name, pwr, status, req, (req) << 16, req, wakeup)
[all...]
/linux-master/drivers/phy/
H A Dphy-core-mipi-dphy.c73 cfg->wakeup = 1000;
182 if (cfg->wakeup < 1000)
/linux-master/arch/sh/boards/mach-x3proto/
H A Dsetup.c131 .wakeup = 1,
136 .wakeup = 1,
/linux-master/drivers/pinctrl/freescale/
H A Dpinctrl-scu.c21 #define IMX_SC_IRQ_PAD 2 /* Pad wakeup */
47 u8 wakeup; member in struct:imx_sc_msg_gpio_set_pad_wakeup
106 wmsg.wakeup = *configs;
109 dev_dbg(ipctl->dev, "wakeup pin_id: %d type: %ld\n",
/linux-master/drivers/usb/host/
H A Dohci-at91.c57 bool wakeup; /* Saved wake-up state for resume */ member in struct:ohci_at91_priv
622 * Disable wakeup if we are going to sleep with slow clock mode
625 ohci_at91->wakeup = device_may_wakeup(dev)
628 if (ohci_at91->wakeup)
631 ret = ohci_suspend(hcd, ohci_at91->wakeup);
633 if (ohci_at91->wakeup)
639 * reconnect, or wakeup without the 48 MHz clock active. so for
644 if (!ohci_at91->wakeup) {
667 if (ohci_at91->wakeup)
675 * that is, if ohci_at91->wakeup i
[all...]
/linux-master/net/mac80211/
H A Dpm.c193 struct cfg80211_wowlan_wakeup *wakeup,
198 cfg80211_report_wowlan_wakeup(&sdata->wdev, wakeup, gfp);
192 ieee80211_report_wowlan_wakeup(struct ieee80211_vif *vif, struct cfg80211_wowlan_wakeup *wakeup, gfp_t gfp) argument
/linux-master/include/linux/mfd/
H A Dmax8998-private.h154 bool wakeup; member in struct:max8998_dev
/linux-master/arch/x86/platform/geode/
H A Dnet5501.c37 .wakeup = 0,
H A Dgeos.c35 .wakeup = 0,
/linux-master/drivers/pci/pcie/
H A Dpme.c294 * pcie_pme_can_wakeup - Set the wakeup capability flag.
305 * pcie_pme_mark_devices - Set the wakeup flag for devices below a port.
396 bool wakeup; local
400 wakeup = true;
403 wakeup = pcie_pme_check_wakeup(port->subordinate);
406 if (wakeup) {

Completed in 461 milliseconds

12345678910