linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Energy consumption oddity on a Mac-Mini
@ 2016-02-12  8:50 moosotc
  2016-02-13 15:27 ` moosotc
  0 siblings, 1 reply; 2+ messages in thread
From: moosotc @ 2016-02-12  8:50 UTC (permalink / raw)
  To: linux-kernel


Hello,

Trying to make Linux consume as little(or less) power as OS X does on
this Mac mini (as measured by watt meter that sits between the box and
the power outlet) led me to the following sequence of commands:

[..start script..]
#!/bin/sh
set -e
test "$(id -u)" != "0" && exec sudo "$0" "$@"
echo powersave >/sys/module/pcie_aspm/parameters/policy
echo 1 >/sys/module/snd_hda_intel/parameters/power_save
echo min_power >/sys/class/scsi_host/host0/link_power_management_policy
echo 1 | tee >/dev/null /sys/bus/usb/devices/*/power/autosuspend
echo auto | tee >/dev/null /sys/devices/**/power/control

# Suspend to RAM only to restore in six seconds
# for some reason this step is essential here:
#    product: Macmini7,1 (System SKU#)
#    vendor: Apple Inc.
#    version: 1.0

echo +6 >/sys/class/rtc/rtc0/wakealarm
echo mem >/sys/power/state
echo 0 >/sys/class/rtc/rtc0/wakealarm
[..end script..]

Last 3 lines are the source of my confusion, why is this needed? The
situation is as follows:

* after boot the system consumes 8-9 watts
* with powertop(8) inspired sysfs tweaks but without the suspension 6-7
* with the suspend oscillating around 5-6

Would be nice to really know what's going on here. (My Linux-power-fu is
not too great)

-- 
mailto:moosotc@gmail.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Energy consumption oddity on a Mac-Mini
  2016-02-12  8:50 Energy consumption oddity on a Mac-Mini moosotc
@ 2016-02-13 15:27 ` moosotc
  0 siblings, 0 replies; 2+ messages in thread
From: moosotc @ 2016-02-13 15:27 UTC (permalink / raw)
  To: linux-kernel

moosotc@gmail.com writes:

> Hello,
>
> Trying to make Linux consume as little(or less) power as OS X does on
> this Mac mini (as measured by watt meter that sits between the box and
> the power outlet) led me to the following sequence of commands:
>

Here's a better one, the one that is actually beging used at this very
moment and that almost halves the Linux's power glut (on this particular
box, might be applicable to MBPros with i915 (then again might not)).

#!/bin/sh
set -e

test "$(id -u)" != "0" && exec sudo ${DISPLAY:+-A} "$0" "$@"
printf '\033[?17;0;0c\n' | tee >/dev/null $(seq -f '/dev/tty%g' 1 7)
echo 'powersave' >/sys/module/pcie_aspm/parameters/policy
echo '6000' >/proc/sys/vm/dirty_writeback_centisecs
echo '1' >/sys/module/snd_hda_intel/parameters/power_save
echo 'min_power' >/sys/class/scsi_host/host0/link_power_management_policy
cpupower frequency-set --governor powersave
x86_energy_perf_policy powersave
echo '0' >/proc/sys/kernel/nmi_watchdog
echo '1' | tee >/dev/null /sys/bus/usb/devices/*/power/autosuspend
echo 'auto' | tee >/dev/null /sys/devices/**/power/control
for f in $(find /sys/devices -name product -type f); do
    expr "$(cat $f)" : "USB.*\(Keyboard\|Mouse\)" >/dev/null && {
        echo '0' >$(dirname $f)/power/autosuspend
    } || true
done

# Mysterious part starts here
echo '+6' >/sys/class/rtc/rtc0/wakealarm
echo 'mem' >/sys/power/state
echo '-1' >/sys/class/rtc/rtc0/wakealarm

[..snip..]

-- 
mailto:moosotc@gmail.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-13 15:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-12  8:50 Energy consumption oddity on a Mac-Mini moosotc
2016-02-13 15:27 ` moosotc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).