/linux/drivers/idle/ |
H A D | intel_idle.c | 155 * intel_idle - Ask the processor to enter the given idle state. 161 * @dev is idle and it can try to enter the idle state corresponding to @index. 206 * intel_idle_s2idle - Ask the processor to enter the given idle state. 212 * @dev is idle and it can try to enter the idle state corresponding to @index. 244 .enter = &intel_idle, 252 .enter = &intel_idle, 260 .enter = &intel_idle, 268 .enter = &intel_idle, 271 .enter = NULL } 281 .enter = &intel_idle, [all …]
|
/linux/arch/arm/mach-omap2/ |
H A D | cpuidle34xx.c | 102 * omap3_enter_idle - Programs OMAP3 to enter the specified state 126 * Call idle CPU PM enter notifier chain so that in omap3_enter_idle() 139 * Call idle CPU PM enter notifier chain to restore in omap3_enter_idle() 269 .enter = omap3_enter_idle_bm, 277 .enter = omap3_enter_idle_bm, 285 .enter = omap3_enter_idle_bm, 293 .enter = omap3_enter_idle_bm, 301 .enter = omap3_enter_idle_bm, 309 .enter = omap3_enter_idle_bm, 317 .enter = omap3_enter_idle_bm, [all …]
|
H A D | cpuidle44xx.c | 153 /* Enter broadcast mode for periodic timers */ in omap_enter_idle_coupled() 156 /* Enter broadcast mode for one-shot timers */ in omap_enter_idle_coupled() 160 * Call idle CPU PM enter notifier chain so that in omap_enter_idle_coupled() 172 * Call idle CPU cluster PM enter notifier chain in omap_enter_idle_coupled() 242 .enter = omap_enter_idle_simple, 252 .enter = omap_enter_idle_coupled, 262 .enter = omap_enter_idle_coupled, 279 .enter = omap_enter_idle_simple, 289 .enter = omap_enter_idle_smp,
|
H A D | clkt2xxx_dpll.c | 24 * Enable DPLL automatic idle control. The DPLL will enter low-power 26 * REVISIT: DPLL can optionally enter low-power bypass by writing 0x1 27 * instead. Add some mechanism to optionally enter this mode.
|
/linux/Documentation/driver-api/pm/ |
H A D | cpuidle.rst | 27 (from the kernel perspective) and ask the processor to use (or "enter") that 36 to enter, *drivers* that pass the governors' decisions on to the hardware and 45 select an idle state to ask the processor to enter in order to save some energy. 86 processor holding the given CPU can be asked to enter). 125 the scheduler tick before asking the processor to enter the selected 128 processor will be asked to enter the selected idle state without 131 asking the processor to enter the idle state). 167 idle states that the processor hardware can be asked to enter shared by all of 184 enter it (which may be substantial) to save more energy than could 189 Maximum time it will take a CPU asking the processor to enter this idle [all …]
|
/linux/Documentation/admin-guide/pm/ |
H A D | cpuidle.rst | 19 Modern processors are generally able to enter states in which the execution of 44 enter an idle state, that applies to the processor as a whole. 52 enter an idle state, that applies to the core that asked for it in the first 57 remaining core asks the processor to enter an idle state, that may trigger it 69 time management perspective and if the processor is asked to enter an idle state 72 core also have asked the processor to enter an idle state. In that situation, 120 the CPU to ask the hardware to enter. Second, it invokes another code module 122 processor hardware to enter the idle state selected by the governor. 126 asked to enter by logical CPUs are represented in an abstract way independent of 136 spend in the given state, including the time needed to enter it (which may be [all …]
|
/linux/include/linux/ |
H A D | suspend.h | 50 * that it still may be impossible to enter given system sleep state if the 59 * @prepare(), @enter() and @finish() will not be called by the PM core. 61 * passed to @enter() is redundant and should be ignored. 69 * system cannot enter the desired sleep state (@prepare_late(), @enter(), 77 * system cannot enter the desired sleep state (@enter() will not be 80 * @enter: Enter the system sleep state indicated by @begin() or represented by 83 * error code otherwise, in which case the system cannot enter the desired 91 * after @prepare_late and @enter(), even if one of them fails. 98 * @enter() and @wake(), even if any of them fails. It is executed after 114 * @enter(). [all …]
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-driver-intel-rapid-start | 6 1: Wake to enter hibernation when the wakeup timer expires 7 2: Wake to enter hibernation when the battery reaches a 11 indicates that the system will wake to enter hibernation when 20 remain asleep before waking up to enter hibernation.
|
/linux/include/linux/usb/ |
H A D | typec_altmode.h | 52 * @enter: Operations to be executed with Enter Mode Command 57 * @activate: User callback for Enter/Exit Mode 60 int (*enter)(struct typec_altmode *altmode, u32 *vdo); member 82 * @enter: Operations to be executed with Enter Mode Command 87 int (*enter)(struct typec_altmode *altmode, enum typec_plug_index sop, u32 *vdo); member 130 * Alternate Modes. USB4 mode is however not entered with the Enter Mode Command
|
/linux/drivers/usb/typec/ |
H A D | bus.c | 117 * typec_altmode_enter - Enter Mode 119 * @vdo: VDO for the Enter Mode command 121 * The alternate mode drivers use this function to enter mode. The port drivers 123 * Enter Mode command. If the alternate mode does not require VDO, @vdo must be 135 if (!pdev->ops || !pdev->ops->enter) in typec_altmode_enter() 146 /* Enter Mode */ in typec_altmode_enter() 147 return pdev->ops->enter(pdev, vdo); in typec_altmode_enter() 251 * typec_cable_altmode_enter - Enter Mode 253 * @sop: Cable plug target for Enter Mode command 254 * @vdo: VDO for the Enter Mod [all...] |
/linux/arch/mips/include/asm/ |
H A D | pm-cps.h | 13 * enter or exit states requiring CM or CPC assistance in unison. 40 * cps_pm_enter_state - enter a PM state 41 * @state: the state to enter 43 * Enter the given PM state. If coupled_coherence is non-zero then it is
|
/linux/kernel/power/ |
H A D | suspend.c | 105 /* Make the current CPU wait so it can enter the idle loop too. */ in s2idle_enter() 175 * No ->valid() or ->enter() callback implies that none are valid. in valid_state() 178 suspend_ops->enter; in valid_state() 397 * suspend_enter - Make the system enter the given sleep state. 398 * @state: System sleep state to enter. 452 error = suspend_ops->enter(state); in suspend_enter() 485 * suspend_devices_and_enter - Suspend devices and enter system sleep state. 486 * @state: System sleep state to enter. 552 * enter_state - Do common work needed to enter system sleep state. 553 * @state: System sleep state to enter. [all …]
|
/linux/arch/m68k/ifpsp060/ |
H A D | fpsp.doc | 171 exception taken ---> enter _060_fpsp_snan --| 179 exception taken ---> enter _060_fpsp_operr --| 187 exception taken ---> enter _060_fpsp_dz --| 195 exception taken ---> enter _060_fpsp_inex --| 204 exception taken ---> enter _060_fpsp_ovfl --| 216 exception taken ---> enter _060_fpsp_unfl --| 229 exception taken ---> enter _060_fpsp_fline --| 266 exception taken ---> enter _060_fpsp_unsupp --| 288 exception taken ---> enter _060_fpsp_effadd --|
|
/linux/drivers/cpuidle/ |
H A D | cpuidle-cps.c | 14 /* Enumeration of the various idle states this driver may enter */ 59 /* Enter that state */ in cps_nc_enter() 75 .enter = cps_nc_enter, 82 .enter = cps_nc_enter, 90 .enter = cps_nc_enter,
|
H A D | coupled.c | 3 * coupled.c - helper functions to enter the same idle state on multiple cpus 28 * around). Each cpu has a power state that it can enter without 36 * WFI state until all cpus are ready to enter a coupled state, at 40 * Once all cpus are ready to enter idle, they are woken by an smp 42 * cpus will find work to do, and choose not to enter idle. A 44 * power state enter function at the same time. During this pass, 79 * Provide a struct cpuidle_state.enter function for each state 145 * (state.enter when state.flags has CPUIDLE_FLAG_COUPLED set). 291 * Returns the deepest idle state that all coupled cpus can enter 447 * cpuidle_enter_state_coupled - attempt to enter a state with coupled cpus [all …]
|
H A D | cpuidle-mvebu-v7.c | 55 .enter = mvebu_v7_enter_idle, 64 .enter = mvebu_v7_enter_idle, 79 .enter = mvebu_v7_enter_idle, 94 .enter = mvebu_v7_enter_idle,
|
/linux/drivers/net/wireless/ath/wcn36xx/ |
H A D | pmc.c | 37 * One of the reasons why HW will not enter BMPS is because in wcn36xx_pmc_enter_bmps_state() 38 * driver is trying to enter bmps before first beacon was in wcn36xx_pmc_enter_bmps_state() 41 wcn36xx_err("Can not enter BMPS!\n"); in wcn36xx_pmc_enter_bmps_state() 57 /* Unbalanced call or last BMPS enter failed */ in wcn36xx_pmc_exit_bmps_state()
|
/linux/include/dt-bindings/soc/ |
H A D | rockchip,boot-mode.h | 9 /* enter bootloader rockusb mode */ 11 /* enter recovery */ 13 /* enter fastboot mode */
|
/linux/scripts/kconfig/ |
H A D | nconf.c | 64 "Enter a submenu <Right> <Enter>\n" 66 "Close a help window <Enter> <Esc> <F5>\n" 67 "Close entry window, apply <Enter>\n" 77 " <F8>RegExpr<Enter>\n" 93 "Enter the requested information and press <Enter>. Hexadecimal values\n" 101 "Press any of <Enter> <Esc> <q> <F5> <F9> to exit.\n" 107 "Press <F6> to save your current configuration. Press <F7> and enter\n" 130 "<Enter> will then unfold the appropriate category, or fold it if it\n" 143 "Enter a submenu with <Enter> or <Right>.\n" 160 "Enter a submenu with <Enter> or <Right>.\n" [all …]
|
H A D | mconf.c | 53 " wish to change or the submenu you wish to select and press <Enter>.\n" 64 " and press <ENTER>.\n" 74 " and press <ENTER>.\n" 90 " <Help> and Press <ENTER>.\n" 100 "o Enter the requested information and press <ENTER>\n" 105 " and press <ENTER>. You can try <TAB><H> as well.\n" 114 "o Press <E>, <X>, <q>, <Enter> or <Esc><Esc> to exit.\n" 158 "<Enter> will then unroll the appropriate category, or enfold it if it\n" 186 "<Enter> selects submenus ---> (or empty submenus ----). " 197 "Please enter a decimal value. " [all …]
|
/linux/drivers/tty/serial/ |
H A D | kgdb_nmi.c |
|
/linux/drivers/net/wireless/realtek/rtw88/ |
H A D | hci.h | 18 void (*deep_ps)(struct rtw_dev *rtwdev, bool enter); 19 void (*link_ps)(struct rtw_dev *rtwdev, bool enter); 61 static inline void rtw_hci_deep_ps(struct rtw_dev *rtwdev, bool enter) in rtw_hci_deep_ps() argument 63 rtwdev->hci.ops->deep_ps(rtwdev, enter); in rtw_hci_deep_ps() 66 static inline void rtw_hci_link_ps(struct rtw_dev *rtwdev, bool enter) in rtw_hci_link_ps() argument 68 rtwdev->hci.ops->link_ps(rtwdev, enter); in rtw_hci_link_ps()
|
/linux/arch/arm/mach-lpc32xx/ |
H A D | pm.c | 43 * Because of this, the code to switch power modes and the code to enter 52 * Enter direct-run mode 55 * Enter halt mode - CPU and buses will stop 117 .enter = lpc32xx_pm_enter,
|
/linux/drivers/net/ethernet/tehuti/ |
H A D | tehuti.c | 187 ENTER; in bdx_fifo_free() 257 ENTER; in bdx_isr_napi() 294 ENTER; in bdx_poll() 327 ENTER; in bdx_fw_load() 368 ENTER; in bdx_restore_mac() 395 ENTER; in bdx_hw_start() 442 ENTER; in bdx_hw_stop() 455 ENTER; in bdx_hw_reset_direct() 478 ENTER; in bdx_hw_reset() 503 ENTER; in bdx_sw_reset() [all …]
|
/linux/arch/sh/kernel/cpu/shmobile/ |
H A D | cpuidle.c | 59 .enter = cpuidle_sleep_enter, 67 .enter = cpuidle_sleep_enter, 76 .enter = cpuidle_sleep_enter,
|