/openbmc/docs/designs/oem/ibm/ |
H A D | system-power-mode.md | 1 # System Power Mode and Idle Power Saver Support 12 the system power mode and idle power save modes. We need the ability to set and 13 query the system power mode and also the ability to control and set idle power 22 send a mode change and idle power saver (IPS) settings to the OCC. It will also 23 need to send the commands if the user changes the mode or idle power save 34 runtime, the BMC will need to send the mode and the idle power saver settings to 46 A proposal for adding Idle Power Saving parameters was submitted to the Redfish 49 Customer Settable Idle Power Save Parameters: 67 - Customer updates idle power save setting or Redfish interface 74 the OCC and a SET_CONFIG_DATA (0x21) command with the Idle Power Saver [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Control/Power/ |
H A D | IdlePowerSaver.interface.yaml | 2 Implement Idle Power Saver capabilities of the system. 8 This property shall indicate whether idle power save is enabled. 14 computer system shall be lower than to enter idle power save. 20 system is below the EnterUtilizationPercent value before the idle 27 computer system shall be above than to exit idle power save. 33 system is above the ExitUtilizationPercent value before the idle power 41 This property shall indicate whether idle power save is currently
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | fsl-imx8-ca53.dtsi | 20 idle-states { 24 compatible = "arm,idle-state"; 33 compatible = "arm,idle-state"; 50 cpu-idle-states = <&CPU_SLEEP>; 59 cpu-idle-states = <&CPU_SLEEP>; 68 cpu-idle-states = <&CPU_SLEEP>; 77 cpu-idle-states = <&CPU_SLEEP>;
|
H A D | am335x-brxre1.dts | 248 ti,no-idle-on-init; 286 ti,no-idle-on-init; 292 ti,no-idle-on-init; 298 ti,no-idle-on-init; 304 ti,no-idle-on-init; 310 ti,no-idle-on-init; 316 ti,no-idle-on-init; 322 ti,no-idle-on-init; 328 ti,no-idle-on-init;
|
H A D | exynos4412-trats2.dts | 208 regulator-mem-idle; 241 regulator-mem-idle; 274 regulator-mem-idle; 282 regulator-mem-idle; 290 regulator-mem-idle; 298 regulator-mem-idle; 306 regulator-mem-idle; 323 regulator-mem-idle; 331 regulator-mem-idle; 339 regulator-mem-idle; [all …]
|
/openbmc/u-boot/drivers/i2c/muxes/ |
H A D | i2c-mux-gpio.c | 28 * @idle: the value of idle-state 35 u32 idle; member 61 ret = dm_gpio_set_value(&priv->gpios[i], (priv->idle >> i) & 1); in i2c_mux_gpio_deselect() 93 mux->idle = fdtdec_get_uint(fdt, node, "idle-state", -1); in i2c_mux_gpio_probe()
|
/openbmc/entity-manager/schemas/ |
H A D | ibm.json | 88 …"description": "Default state of idle power saver mode. Setting to true will enable idle power sav… 92 …lt percentage of utilization that the system shall be lower than to enter idle power save. The val… 98 …on in seconds that the system is below the EnterUtilizationPercent before idle power save is activ… 104 …percentage of utilization that the system shall be above in order to exit idle power save. The val… 110 …ion in seconds that the system is above the ExitUtilizationPercent before idle power save is deact…
|
/openbmc/bmcweb/redfish-core/include/generated/enums/ |
H A D | battery.hpp | 12 Idle, enumerator 32 {ChargeState::Idle, "Idle"},
|
H A D | automation_node.hpp | 12 Idle, enumerator 47 {NodeState::Idle, "Idle"},
|
/openbmc/qemu/python/tests/ |
H A D | protocol.py | 81 state without fully quiescing it back to IDLE. This is normally 89 loop to return back to IDLE. 168 "<NullProtocol runstate=IDLE>" 174 Runstate.IDLE 204 "<NullProtocol name='Steve' runstate=IDLE>" 212 self.assertEqual(self.proto.runstate, Runstate.IDLE) 216 self.assertEqual(self.proto.runstate, Runstate.IDLE) 246 Runstate.IDLE, 254 Runstate.IDLE, 288 Runstate.IDLE, [all …]
|
/openbmc/openpower-occ-control/ |
H A D | powermode.hpp | 130 /** @brief Write Idle Power Saver parameters to persistent file 132 * @param[in] enabled - Idle Power Save status (true = enabled) 168 /** @brief Get the Idle Power Saver properties from DBus 170 * @param[out] enabled - Idle Power Save status (true = enabled) 254 * @param[in] ipsPath - Idle Power Saver dbus path 291 /** @brief Send Idle Power Saver config data to the master OCC 434 /** @brief Get the Idle Power Saver properties 436 * @param[out] enabled - Idle Power Save status (true = enabled) 447 /** Update the Idle Power Saver data on DBus 449 * @param[in] enabled - Idle Power Save status (true = enabled) [all …]
|
H A D | README.md | 5 power cap support, system power mode support, and idle power saver support. OCC 7 readings, updating the system power mode, setting power caps, and idle power
|
H A D | powermode.cpp | 114 // Read the persisted Idle Power Saver parametres in createIpsObject() 117 // Update Idle Power Saver parameters on DBus in createIpsObject() 564 "ipsChanged: Idle Power Saver can not be modified in an ECO power mode"); in ipsChanged() 573 lg2::info("Idle Power Saver change: Enabled={STAT}", "STAT", in ipsChanged() 581 lg2::info("Idle Power Saver change: Enter Util={UTIL}%", "UTIL", in ipsChanged() 591 lg2::info("Idle Power Saver change: Enter Time={TIME}sec", "TIME", in ipsChanged() 599 lg2::info("Idle Power Saver change: Exit Util={UTIL}%", "UTIL", in ipsChanged() 608 lg2::info("Idle Power Saver change: Exit Time={TIME}sec", "TIME", in ipsChanged() 620 "Idle Power Saver Exit Utilization is 0%. Restoring default parameters"); in ipsChanged() 639 /** @brief Get the Idle Power Saver properties from persisted data [all …]
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | protocol.py | 62 IDLE = 0 variable in Runstate 68 #: Runstate may be returned to `IDLE` by calling `disconnect()`. 132 # @require(Runstate.IDLE) def foo(): ... 148 " Call disconnect() to return to IDLE state.") 151 elif proto.runstate == Runstate.IDLE: 152 emsg = f"{name} is disconnected and idle." 242 self._runstate = Runstate.IDLE 271 @require(Runstate.IDLE) 279 If this call fails, `runstate` is guaranteed to be set back to `IDLE`. 287 :raise StateError: When the `Runstate` is not `IDLE`. [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/php/php/ |
H A D | php-fpm.conf | 191 ; pm.min_spare_servers - the minimum number of children in 'idle' 193 ; of 'idle' processes is less than this 195 ; pm.max_spare_servers - the maximum number of children in 'idle' 197 ; of 'idle' processes is greater than this 204 ; an idle process will be killed. 224 ; The desired minimum number of idle server processes. 229 ; The desired maximum number of idle server processes. 234 ; The number of seconds after which an idle process will be killed. 257 ; idle processes - the number of idle processes; 259 ; total processes - the number of idle + active processes; [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/server/ |
H A D | process.py | 99 self.idle = None 118 """Register a function to be called while the server is idle""" 122 serverlog("Registering idle function %s" % str(function)) 165 # Wait for the idle loop to have cleared 209 # Wait for the idle loop to have cleared (30s max) 211 serverlog("Idle loop didn't finish queued commands after 30s, exiting.") 324 if not self.idle: 325 self.idle = threading.Thread(target=self.idle_thread) 326 self.idle.start() 327 elif self.idle and not self.idle.is_alive(): [all …]
|
/openbmc/u-boot/drivers/usb/musb/ |
H A D | musb_udc.c | 87 IDLE = 0, enumerator 91 } ep0_state = IDLE; 93 "IDLE", 197 SET_EP0_STATE(IDLE); in musb_peri_reset() 260 SET_EP0_STATE(IDLE); in musb_peri_ep0_set_address() 298 SET_EP0_STATE(IDLE); in musb_peri_ep0_zero_data_request() 323 SET_EP0_STATE(IDLE); in musb_peri_ep0_zero_data_request() 349 SET_EP0_STATE(IDLE); in musb_peri_ep0_tx_data_request() 467 SET_EP0_STATE(IDLE); in musb_peri_ep0_rx() 544 SET_EP0_STATE(IDLE); in musb_peri_ep0_tx() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/gstreamer-1.0/gst-shark/ |
H A D | 0001-tracers-Fix-buffer-overflow.patch | 9 | cpu_name, &user[0], &nice[0], &system[0], &idle[0], &iowait, &irq, 23 gint *idle;
|
/openbmc/u-boot/doc/device-tree-bindings/clock/ |
H A D | rockchip,rk3288-dmc.txt | 25 …ip,auto-self-refresh-cnt: Self Refresh idle period. Memories are placed into Self-Refresh mode if … 26 …ockchip,auto-power-down-cnt: Power-down idle period. Memories are placed into power-down mode if t…
|
/openbmc/openbmc/meta-ibm/recipes-phosphor/fans/phosphor-fan-control-zone-config/witherspoon/ |
H A D | zones.yaml | 43 amount of cooling even when the system may be idle. 91 amount of cooling even when the system may be idle.
|
/openbmc/u-boot/board/mpr2/ |
H A D | mpr2.c | 26 __raw_writel(0x36db0400, CS2BCR); /* 4 idle cycles, normal space, 16 bit data bus */ in board_init() 30 __raw_writel(0x00000200, CS4BCR); /* no idle cycles, normal space, 8 bit data bus */ in board_init() 34 __raw_writel(0x00000200, CS5ABCR); /* no idle cycles, normal space, 8 bit data bus */ in board_init() 38 __raw_writel(0x00000200, CS5BBCR); /* no idle cycles, normal space, 8 bit data bus */ in board_init() 42 __raw_writel(0x00000200, CS6ABCR); /* no idle cycles, normal space, 8 bit data bus */ in board_init()
|
/openbmc/u-boot/drivers/ddr/marvell/axp/ |
H A D | xor.h | 27 * Start can be applied only when status is IDLE 28 * Stop can be applied only when status is IDLE, ACTIVE or PAUSED
|
/openbmc/qemu/tests/qtest/ |
H A D | tpm-crb-test.c | 86 /* TPM must not be in the idle state */ in tpm_crb_test() 105 /* TPM must still not be in the idle state */ in tpm_crb_test() 114 /* set TPM into idle state */ in tpm_crb_test() 117 /* idle state must be indicated now */ in tpm_crb_test()
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | process_tree.py | 24 * idle processes that keep running during the last process sample 41 monitoredApp, prune, idle, taskstats, argument 62 self.idle = idle 156 """Prunes the process tree by removing idle processes and processes
|
H A D | parsing.py | 86 # Crop the chart to the end of the first idle period after the given 89 idle = self.crop (writer, options.crop_after) 91 idle = None 94 self.times = [ idle ] 108 options.prune, idle, self.taskstats, 215 idle = None 221 idle = cpu_util[i][0] 224 if idle is None: 225 writer.warn ("not idle after proc '%s'" % crop_after) 228 crop_at = idle + 300 [all …]
|