/drivers/acpi/acpica/ |
D | hwxfsleep.c | 202 acpi_status acpi_enter_sleep_state_prep(u8 sleep_state) in ACPI_EXPORT_SYMBOL() 211 status = acpi_get_sleep_type_data(sleep_state, in ACPI_EXPORT_SYMBOL() 230 arg.integer.value = sleep_state; in ACPI_EXPORT_SYMBOL() 240 switch (sleep_state) { in ACPI_EXPORT_SYMBOL() 286 acpi_status acpi_enter_sleep_state(u8 sleep_state) in ACPI_EXPORT_SYMBOL() 301 status = acpi_hw_legacy_sleep(sleep_state); in ACPI_EXPORT_SYMBOL() 304 status = acpi_hw_extended_sleep(sleep_state); in ACPI_EXPORT_SYMBOL() 324 acpi_status acpi_leave_sleep_state_prep(u8 sleep_state) in ACPI_EXPORT_SYMBOL() 332 status = acpi_hw_legacy_wake_prep(sleep_state); in ACPI_EXPORT_SYMBOL() 335 status = acpi_hw_extended_wake_prep(sleep_state); in ACPI_EXPORT_SYMBOL() [all …]
|
D | dbcmds.c | 36 static void acpi_db_do_one_sleep_state(u8 sleep_state); 109 u8 sleep_state; in acpi_db_sleep() local 129 sleep_state = (u8)strtoul(object_arg, NULL, 0); in acpi_db_sleep() 130 acpi_db_do_one_sleep_state(sleep_state); in acpi_db_sleep() 146 static void acpi_db_do_one_sleep_state(u8 sleep_state) in acpi_db_do_one_sleep_state() argument 154 if (sleep_state > ACPI_S_STATES_MAX) { in acpi_db_do_one_sleep_state() 156 sleep_state, ACPI_S_STATES_MAX); in acpi_db_do_one_sleep_state() 161 sleep_state, acpi_gbl_sleep_state_names[sleep_state]); in acpi_db_do_one_sleep_state() 166 acpi_get_sleep_type_data(sleep_state, &sleep_type_a, &sleep_type_b); in acpi_db_do_one_sleep_state() 169 acpi_gbl_sleep_state_names[sleep_state], in acpi_db_do_one_sleep_state() [all …]
|
D | hwesleep.c | 68 acpi_status acpi_hw_extended_sleep(u8 sleep_state) in acpi_hw_extended_sleep() argument 100 "Entering sleep state [S%u]\n", sleep_state)); in acpi_hw_extended_sleep() 107 if (sleep_state < ACPI_STATE_S4) { in acpi_hw_extended_sleep() 111 status = acpi_os_enter_sleep(sleep_state, sleep_control, 0); in acpi_hw_extended_sleep() 150 acpi_status acpi_hw_extended_wake_prep(u8 sleep_state) in acpi_hw_extended_wake_prep() argument 181 acpi_status acpi_hw_extended_wake(u8 sleep_state) in acpi_hw_extended_wake() argument 192 acpi_hw_execute_sleep_method(METHOD_PATHNAME__WAK, sleep_state); in acpi_hw_extended_wake()
|
D | hwsleep.c | 30 acpi_status acpi_hw_legacy_sleep(u8 sleep_state) in acpi_hw_legacy_sleep() argument 79 "Entering sleep state [S%u]\n", sleep_state)); in acpi_hw_legacy_sleep() 113 if (sleep_state < ACPI_STATE_S4) { in acpi_hw_legacy_sleep() 117 status = acpi_os_enter_sleep(sleep_state, pm1a_control, pm1b_control); in acpi_hw_legacy_sleep() 132 if (sleep_state > ACPI_STATE_S3) { in acpi_hw_legacy_sleep() 182 acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state) in acpi_hw_legacy_wake_prep() argument 246 acpi_status acpi_hw_legacy_wake(u8 sleep_state) in acpi_hw_legacy_wake() argument 279 acpi_hw_execute_sleep_method(METHOD_PATHNAME__WAK, sleep_state); in acpi_hw_legacy_wake()
|
D | achware.h | 52 acpi_status acpi_hw_legacy_sleep(u8 sleep_state); 54 acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state); 56 acpi_status acpi_hw_legacy_wake(u8 sleep_state); 63 acpi_status acpi_hw_extended_sleep(u8 sleep_state); 65 acpi_status acpi_hw_extended_wake_prep(u8 sleep_state); 67 acpi_status acpi_hw_extended_wake(u8 sleep_state);
|
D | hwxface.c | 335 acpi_get_sleep_type_data(u8 sleep_state, u8 *sleep_type_a, u8 *sleep_type_b) in ACPI_EXPORT_SYMBOL() 345 if ((sleep_state > ACPI_S_STATES_MAX) || !sleep_type_a || !sleep_type_b) { in ACPI_EXPORT_SYMBOL() 360 info->relative_pathname = acpi_gbl_sleep_state_names[sleep_state]; in ACPI_EXPORT_SYMBOL()
|
/drivers/xen/ |
D | acpi.c | 38 static int xen_acpi_notify_hypervisor_state(u8 sleep_state, in xen_acpi_notify_hypervisor_state() argument 50 .sleep_state = sleep_state, in xen_acpi_notify_hypervisor_state() 65 int xen_acpi_notify_hypervisor_sleep(u8 sleep_state, in xen_acpi_notify_hypervisor_sleep() argument 68 return xen_acpi_notify_hypervisor_state(sleep_state, pm1a_cnt, in xen_acpi_notify_hypervisor_sleep() 72 int xen_acpi_notify_hypervisor_extended_sleep(u8 sleep_state, in xen_acpi_notify_hypervisor_extended_sleep() argument 75 return xen_acpi_notify_hypervisor_state(sleep_state, val_a, in xen_acpi_notify_hypervisor_extended_sleep()
|
/drivers/acpi/ |
D | wakeup.c | 38 void acpi_enable_wakeup_devices(u8 sleep_state) in acpi_enable_wakeup_devices() argument 45 || sleep_state > (u32) dev->wakeup.sleep_state in acpi_enable_wakeup_devices() 51 acpi_enable_wakeup_device_power(dev, sleep_state); in acpi_enable_wakeup_devices() 63 void acpi_disable_wakeup_devices(u8 sleep_state) in acpi_disable_wakeup_devices() argument 70 || sleep_state > (u32) dev->wakeup.sleep_state in acpi_disable_wakeup_devices()
|
D | sleep.h | 3 extern void acpi_enable_wakeup_devices(u8 sleep_state); 4 extern void acpi_disable_wakeup_devices(u8 sleep_state);
|
D | osl.c | 59 static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, 61 static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a, 1707 acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, in acpi_os_prepare_sleep() argument 1712 rc = __acpi_os_prepare_sleep(sleep_state, in acpi_os_prepare_sleep() 1722 void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, in acpi_os_set_prepare_sleep() argument 1729 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a, in acpi_os_prepare_extended_sleep() argument 1734 rc = __acpi_os_prepare_extended_sleep(sleep_state, in acpi_os_prepare_extended_sleep() 1744 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a, in acpi_os_prepare_extended_sleep() argument 1751 void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state, in acpi_os_set_prepare_extended_sleep() argument 1757 acpi_status acpi_os_enter_sleep(u8 sleep_state, in acpi_os_enter_sleep() argument [all …]
|
D | scan.c | 901 wakeup->sleep_state = element->integer.value; in acpi_bus_extract_wakeup_device_power_package() 908 int sleep_state; in acpi_bus_extract_wakeup_device_power_package() local 911 &sleep_state); in acpi_bus_extract_wakeup_device_power_package() 918 if (sleep_state < wakeup->sleep_state) { in acpi_bus_extract_wakeup_device_power_package() 921 (int)wakeup->sleep_state, sleep_state); in acpi_bus_extract_wakeup_device_power_package() 922 wakeup->sleep_state = sleep_state; in acpi_bus_extract_wakeup_device_power_package() 952 wakeup->sleep_state == ACPI_STATE_S5) in acpi_wakeup_gpe_init() 953 wakeup->sleep_state = ACPI_STATE_S4; in acpi_wakeup_gpe_init()
|
D | power.c | 662 int enable, int sleep_state, int dev_state) in acpi_device_sleep_wake() argument 682 in_arg[1].integer.value = sleep_state; in acpi_device_sleep_wake() 711 int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state) in acpi_enable_wakeup_device_power() argument 737 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3); in acpi_enable_wakeup_device_power()
|
D | proc.c | 35 (u32) dev->wakeup.sleep_state); in acpi_system_wakeup_device_seq_show()
|
D | sleep.c | 87 bool acpi_sleep_state_supported(u8 sleep_state) in acpi_sleep_state_supported() argument 92 status = acpi_get_sleep_type_data(sleep_state, &type_a, &type_b); in acpi_sleep_state_supported()
|
D | internal.h | 133 int enable, int sleep_state, int dev_state);
|
D | device_pm.c | 721 && adev->wakeup.sleep_state >= target_state; in acpi_dev_pm_get_state()
|
/drivers/base/ |
D | pinctrl.c | 70 dev->pins->sleep_state = pinctrl_lookup_state(dev->pins->p, in pinctrl_bind_pins() 72 if (IS_ERR(dev->pins->sleep_state)) in pinctrl_bind_pins()
|
/drivers/net/wwan/iosm/ |
D | iosm_ipc_pcie.c | 235 enum ipc_pcie_sleep_state sleep_state = IPC_PCIE_D0L12; in ipc_pcie_read_bios_cfg() local 250 sleep_state = IPC_PCIE_D3L2; in ipc_pcie_read_bios_cfg() 255 return sleep_state; in ipc_pcie_read_bios_cfg()
|
/drivers/iio/accel/ |
D | bma180.c | 140 bool sleep_state; member 172 if (data->sleep_state) in bma180_get_data_reg() 243 data->sleep_state = state; in bma180_set_sleep_state() 263 if (data->sleep_state) in bma180_set_bw() 288 if (data->sleep_state) in bma180_set_scale()
|
/drivers/input/touchscreen/ |
D | cyttsp4_core.c | 1101 if (cd->sleep_state == SS_SLEEP_ON || cd->sleep_state == SS_SLEEPING) in cyttsp4_irq() 1509 if (cd->sleep_state == SS_SLEEP_ON) { in cyttsp4_core_sleep_() 1513 cd->sleep_state = SS_SLEEPING; in cyttsp4_core_sleep_() 1571 cd->sleep_state = ss; in cyttsp4_core_sleep_() 1667 if (cd->sleep_state == SS_SLEEP_ON) { in cyttsp4_startup_() 1668 cd->sleep_state = SS_SLEEP_OFF; in cyttsp4_startup_() 1777 if (cd->sleep_state == SS_SLEEP_OFF) { in cyttsp4_core_wake_() 1783 cd->sleep_state = SS_WAKING; in cyttsp4_core_wake_() 1816 cd->sleep_state = SS_SLEEP_OFF; in cyttsp4_core_wake_()
|
D | cyttsp4_core.h | 323 enum cyttsp4_sleep_state sleep_state; member
|
/drivers/base/power/ |
D | main.c | 1149 static pm_message_t resume_event(pm_message_t sleep_state) in resume_event() argument 1151 switch (sleep_state.event) { in resume_event()
|
/drivers/pinctrl/ |
D | core.c | 1617 return pinctrl_select_bound_state(dev, dev->pins->sleep_state); in pinctrl_pm_select_sleep_state()
|
/drivers/net/wireless/ath/ath6kl/ |
D | wmi.h | 1333 __le32 sleep_state; member
|