Home
last modified time | relevance | path

Searched refs:capSoftMin (Results 1 – 2 of 2) sorted by relevance

/openbmc/openpower-occ-control/
H A Dpowercap.cpp113 uint32_t capSoftMin, capHardMin, capMax; in updatePcapBounds() local
114 persistedData.getCapLimits(capSoftMin, capHardMin, capMax); in updatePcapBounds()
125 capSoftMin = ((cap / (PS_DERATING_FACTOR / 100.0) / 1000000) + 0.9); in updatePcapBounds()
170 updateDbusPcapLimits(capSoftMin, capHardMin, capMax); in updatePcapBounds()
171 persistedData.updateCapLimits(capSoftMin, capHardMin, capMax); in updatePcapBounds()
180 if ((dbusUserCap >= capSoftMin) && (dbusUserCap <= capMax)) in updatePcapBounds()
197 if (dbusUserCap < capSoftMin) in updatePcapBounds()
199 newCap = capSoftMin; in updatePcapBounds()
204 "CAP", dbusUserCap, "SMIN", capSoftMin, "MIN", capHardMin, in updatePcapBounds()
421 uint32_t capSoftMin, capHardMin, capMax; in pcapChanged() local
[all …]
H A Dpowercap.hpp149 uint32_t capSoftMin, capHardMin, capMax; in PowerCap() local
150 persistedData.getCapLimits(capSoftMin, capHardMin, capMax); in PowerCap()
152 updateDbusPcapLimits(capSoftMin, capHardMin, capMax); in PowerCap()