Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- power saving for maximum battery on x240.
- First, let's enable power-saving functionality on all devices.
- Then, comes the most important part. Keep you cpu-usage low, all the time.
- I can easily get my laptop to draw 20watts if i feel like it (at least in short bursts), 15watts on average is not impossible in any way and will drain the battery in 1/3 of what i'm getting from it.
- Become a slave under powertop for a while to get a feeling for what continuously needs cpu, and what doesn't. that way you know what to avoid when battery really matters. :)
- what to do:
- Install tlp:
- # sudo apt-get install tlp tlp-rdw
- configure tlp, i set everything to battery-mode, always, that way i don't mind any potential performance drop when i unplug the laptop.. It also charges faster (since there's more power available for charging).
- $ cat /etc/default/tlp
- # ------------------------------------------------------------------------------
- # tlp - Parameters for power save
- # Hint: some features are disabled by default, remove the leading # to enable them
- # Set to 0 to disable/1 to enable TLP
- TLP_ENABLE=1
- # Seconds laptop mode has to to wait after the disk goes idle before doing a sync.
- # Non-zero value enables, zero disables laptop mode.
- DISK_IDLE_SECS_ON_AC=2
- DISK_IDLE_SECS_ON_BAT=2
- # Dirty page values (timeouts in secs).
- MAX_LOST_WORK_SECS_ON_AC=60
- MAX_LOST_WORK_SECS_ON_BAT=60
- # Select a cpu frequency scaling governor: ondemand/powersave/performance/conservative
- # Important:
- # - You *must* disable your distribution's governor settings or conflicts will occur
- # - ondemand is sufficient for *almost all* workloads, you should know what you're doing!
- #CPU_SCALING_GOVERNOR_ON_AC=ondemand
- #CPU_SCALING_GOVERNOR_ON_BAT=ondemand
- # Set the min/max frequency available for the scaling governor.
- # Possible values strongly depend on your cpu. For available frequencies see
- # tlp-stat output, Section "+++ Processor".
- # Hint: Parameters are disabled by default, remove the leading # to enable them,
- # otherwise kernel default values are used.
- #CPU_SCALING_MIN_FREQ_ON_AC=0
- #CPU_SCALING_MAX_FREQ_ON_AC=0
- #CPU_SCALING_MIN_FREQ_ON_BAT=0
- #CPU_SCALING_MAX_FREQ_ON_BAT=0
- # Set the cpu "turbo boost" feature: 0=disable / 1=allow
- # Requires an Intel Core i processor and kernel 3.7 or later.
- # Important:
- # - This may conflict with your distribution's governor settings
- # - A value of 1 does *not* activate boosting, it just allows it
- #CPU_BOOST_ON_AC=1
- #CPU_BOOST_ON_BAT=0
- # Minimize number of used cpu cores/hyper-threads under light load conditions
- SCHED_POWERSAVE_ON_AC=1
- SCHED_POWERSAVE_ON_BAT=1
- # Kernel NMI Watchdog
- # 0=disable (default, saves power) / 1=enable (for kernel debugging only)
- NMI_WATCHDOG=0
- # Change CPU voltages aka "undervolting" - Kernel with PHC patch required
- # Freq:voltage pairs are written to /sys/devices/system/cpu/cpu0/cpufreq/phc_controls
- # CAUTION: only use this, if you thoroughly understand what you are doing!
- #PHC_CONTROLS="F:V F:V F:V F:V"
- # Hard disk devices, separate multiple devices with spaces (default: sda).
- # Devices can be specified by disk id too (lookup with: tlp diskid).
- DISK_DEVICES="sda sdb"
- # Hard disk advanced power management level: 1(max saving)..254(off)
- # Levels 1..127 may spin down the disk.
- # Separate values for multiple devices with spaces.
- DISK_APM_LEVEL_ON_AC="128 128"
- DISK_APM_LEVEL_ON_BAT="128 128"
- # Hard disk spin down timeout:
- # 0: spin down disabled
- # 1..240: timeouts from 5s to 20min (in units of 5s)
- # 241..251: timeouts from 30min to 5.5 hours (in units of 30min)
- # (see 'man hdparm' for details)
- #DISK_SPINDOWN_TIMEOUT_ON_AC="0 0"
- #DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0"
- # Select io scheduler for the disk devices: noop/deadline/cfq (Default: cfq)
- # Separate values for multiple devices with spaces.
- #DISK_IOSCHED="cfq cfq"
- # SATA aggressive link power management (ALPM):
- # min_power/medium_power/max_performance
- SATA_LINKPWR_ON_AC=min_power
- SATA_LINKPWR_ON_BAT=min_power
- # PCI Express Active State Power Management (PCIe ASPM):
- # default/performance/powersave
- # Hint: needs kernel boot option pcie_aspm=force on some machines
- PCIE_ASPM_ON_AC=powersave
- PCIE_ASPM_ON_BAT=powersave
- # Radeon graphics clock speed (profile method): low/mid/high/auto/default
- # auto = mid on BAT, high on AC; default = use hardware defaults
- # (Kernel >= 2.6.35 only, not with fglrx driver!)
- RADEON_POWER_PROFILE_ON_AC=low
- RADEON_POWER_PROFILE_ON_BAT=low
- # New radeon dynamic power management method (dpm): battery/performance
- # (Kernel >= 3.11 only, requires boot option radeon.dpm=1)
- RADEON_DPM_STATE_ON_AC=battery
- RADEON_DPM_STATE_ON_BAT=battery
- # New radeon dpm performance level: auto/low/high (auto is recommended)
- RADEON_DPM_PERF_LEVEL_ON_AC=auto
- RADEON_DPM_PERF_LEVEL_ON_BAT=auto
- # WiFi power saving mode: 1=disable/5=enable
- # (Linux 2.6.32 and later, some adapters only!)
- WIFI_PWR_ON_AC=5
- WIFI_PWR_ON_BAT=5
- # Disable wake on lan: Y/N
- WOL_DISABLE=Y
- # Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
- # A value of 0 disables / >=1 enables power save.
- SOUND_POWER_SAVE=1
- # Disable controller too (HDA only): Y/N
- SOUND_POWER_SAVE_CONTROLLER=Y
- # Set to 1 to power off optical drive in UltraBay (ThinkPads only)
- # when running on battery. A value of 0 disables this Feature (Default).
- # Drive can be powered on again by releasing (and reinserting) the
- # eject lever or by pressing the disc eject button on newer models.
- # Note: an UltraBay hard disk is never powered off.
- BAY_POWEROFF_ON_BAT=0
- # Optical drive device to power off (default sr0)
- BAY_DEVICE="sr0"
- # Runtime Power Management for pci(e) bus devices
- # (Kernel >= 2.6.35 only): on=disable/auto=enable
- RUNTIME_PM_ON_AC=auto
- RUNTIME_PM_ON_BAT=auto
- # Runtime PM for *all* pci(e) bus devices, expect backlisted ones:
- # 0=disable / 1=enable
- # Warning: experimental option, could cause system instabilities
- RUNTIME_PM_ALL=1
- # Exclude pci(e) device adresses the following list from Runtime PM
- # (separate with spaces). Use lspci to get the adresses (1st column).
- #RUNTIME_PM_BLACKLIST="bb:dd.f 11:22.3 44:55.6"
- # Set to 0 to disable/1 to enable usb autosuspend feature
- USB_AUTOSUSPEND=1
- # Devices from the following list are excluded from usb autosuspend
- # (separate with spaces). Use lsusb to get the ids.
- # Note: input devices (usbhid) are excluded automatically
- #USB_BLACKLIST="1111:2222 3333:4444"
- # WWAN devices are excluded from usb autosuspend: (Note, this may not be needed to get wwan working on the 3.13.5 kernel, on earlier kernels usb autosuspend breaks the device)
- # 0=do not exclude / 1=exclude
- # Note: works for ids 05c6:* 0bdb:* 1199:* only
- USB_BLACKLIST_WWAN=1
- # Set to 1 to disable autosuspend before shutdown/0 to do nothing
- # (workaround for usb devices that cause shutdown problems)
- #USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=1
- # Restore radio device state (bluetooth, wifi, wwan) from previous shutdown
- # on system startup: 0=disable/1=enable
- # Hint: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below
- # are ignored when this is enabled!
- RESTORE_DEVICE_STATE_ON_STARTUP=0
- # Radio devices to disable on startup: bluetooth wifi wwan
- #DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan"
- # Radio devices to enable on startup: bluetooth wifi wwan
- #DEVICES_TO_ENABLE_ON_STARTUP="wifi"
- # Radio devices to disable on shutdown: bluetooth wifi wwan
- # (workaround for devices that are blocking shutdown)
- #DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth wifi wwan"
- # Radio devices to enable on shutdown: bluetooth wifi wwan
- # (to prevent other operating systems from missing radios)
- #DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan"
- # Radio devices to enable when wireless radio switch is turned on:
- # bluetooth wifi wwan (Ubuntu + ThinkPad only)
- #DEVICES_TO_ENABLE_ON_RADIOSW="wifi wwan"
- # Battery charge thresholds (ThinkPad only, tp-smapi or acpi-call kernel module required)
- # Charging starts when the remaining capacity falls below the START_CHARGE_TRESH
- # value and stops when exceeding the STOP_CHARGE_TRESH value.
- # Main battery (values in %)
- START_CHARGE_THRESH_BAT0=85
- STOP_CHARGE_THRESH_BAT0=97
- # Ultrabay or slice battery (values in %)
- START_CHARGE_THRESH_BAT1=90
- STOP_CHARGE_THRESH_BAT1=97
- # Set to 1 to disable use of tpacpi-bat on Sandy Bridge or newer Thinkpads
- # and force usage of tp-smapi instead
- #DISABLE_TPACPIBAT=1
- # ------------------------------------------------------------------------------
- # tlp-rdw - Parameters for the radio device wizard
- # Possible devices: bluetooth/wifi/wwan
- # Hint: parameters are disabled by default, remove the leading # to enable them
- # Radio devices to disable on connect
- #DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan"
- #DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan"
- #DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi"
- # Radio devices to enable on disconnect
- #DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan"
- #DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT=""
- #DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT=""
- # Radio devices to enable/disable when docked
- #DEVICES_TO_ENABLE_ON_DOCK=""
- #DEVICES_TO_DISABLE_ON_DOCK=""
- # Radio devices to enable/disable when undocked
- #DEVICES_TO_ENABLE_ON_UNDOCK="wifi"
- #DEVICES_TO_DISABLE_ON_UNDOCK=""
- ####################################################################################################
- Configure i915 to enable lower power states if available:
- # vi /etc/modprobe.d/i915.conf
- options i915 i915_enable_rc6=7 i915_enable_fbc=1 lvds_downclock=1
- ####################################################################################################
- If you're running on a haswell cpu, they are only properly supported from kernel 3.12 onwards.
- I grabbed the 3.13 from ubuntu:
- # cd /usr/src/
- # wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.5-trusty/linux-headers-3.13.5-031305-generic_3.13.5-031305.201402221823_amd64.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.5-trusty/linux-headers-3.13.5-031305_3.13.5-031305.201402221823_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.5-trusty/linux-image-3.13.5-031305-generic_3.13.5-031305.201402221823_amd64.deb
- Install it:
- # dpkg -i linux-*.deb
- ####################################################################################################
- Install suspend-tab addon in firefox to suspend tab's you don't have active at the moment (saves cpu-cycles, makes suspended tab's restart when you open them)
- https://addons.mozilla.org/en-US/firefox/addon/suspend-tab/
- I've configured suspend-tab to suspend tabs after 30seconds.
- Also, Install flashblock (flash sucks a lot of cpu..)
- tlp provides features some nice commands to easily rfkill the different radios.
- wifi on/off
- bluetooth on/off
- wwan on/off
- I always try to remember to kill the radios i don't need.
- As long as cpu is idle power-usage should be at it's lowest.
- Get a usable baseline measurement:
- I reboot, log-on to my desktop, start a terminal (i use urxvt), start powertop, put display on lowest, disable wifi/wwan/bluetooth and let the machine sit for ~1minute, then check the discharge rate powertop is reporting, and also check the number of wakeups reported.
- My X240 has a bit high baseline measurement at the moment since i'm at work. I need firefox and hipchat in the background and i'm connected over 3g, but wifi and bluetooth is off, i lowered the display to the lowest possible setting for this measurement.
- Also, Powertop only reports the discharging battery, so if you have two like i do, one internal on 23.7wh and one external of 77.2wh, you need to keep track of this (it shows the currently discharging one in gnome-power-statistics, or "tlp stat")
- My estimated runtime on the dimmest brightness is about 15hours, that's with about 75% remaining (been running on battery for 3hours) add the other battery and it ends up somewhere at 21-22hours,
- PowerTOP 2.4 Overview Idle stats Frequency stats Device stats Tunables
- The battery reports a discharge rate of 3.85 W
- The estimated remaining time is 15 hours, 16 minutes
- Summary: 191,6 wakeups/second, 3,9 GPU ops/seconds, 0,0 VFS ops/sec and 1,7% CPU use
- Power est. Usage Events/s Category Description
- 1.14 W 100,0% Device Radio device: thinkpad_acpi
- 409 mW 11,2 ms/s 46,7 Process /usr/lib/firefox/firefox
- 318 mW 1,6 ms/s 50,4 Interrupt [8] rtc0
- 238 mW 592,6 µs/s 38,8 Interrupt [62] i915
- 102 mW 235,7 µs/s 15,0 Process syndaemon -i 1.0 -t -K -R
- 82.0 mW 208,9 µs/s 13,4 Timer hrtimer_wakeup
- 46.3 mW 100,0% Device USB device: N5321 gw (Lenovo)
- 37.7 mW 0,9 ms/s 4,7 Process /usr/bin/gnome-shell
- 37.0 mW 71,1 µs/s 6,1 Timer tick_sched_timer
- 16.8 mW 1,1 ms/s 0,6 Process mosh-client <irc-box> | xx.xx.xx.xx 60001
- 15.4 mW 2,3 pkts/s Device Network interface: wwan0 (cdc_ncm)
- 13.8 mW 16,5 µs/s 2,3 Process [rcu_sched]
- 12.7 mW 23,7 µs/s 2,1 Interrupt [6] tasklet(softirq)
- 11.6 mW 1,1% Device Display backlight
- 10.1 mW 2,6 µs/s 1,7 Timer cdc_ncm_tx_timer_cb
- 6.86 mW 54,0 µs/s 1,0 Process /usr/lib/upower/upowerd
- 6.85 mW 78,6 µs/s 1,0 Process /usr/lib/gnome-settings-daemon/gnome-settings-daemon
- 6.77 mW 477,3 µs/s 0,20 Process /usr/bin/X :0 -background none -verbose -auth /var/run/gdm/auth-for-gdm-QC5W6F/database -seat seat0 -nolisten tcp vt7
- 6.01 mW 6,2 µs/s 1,0 kWork pci_pme_list_scan
- 3.56 mW 24,9 µs/s 0,5 Process /usr/sbin/modem-manager
- 3.01 mW 29,3 µs/s 0,4 Interrupt [9] acpi
- 2.98 mW 0,9 µs/s 0,5 kWork mei_timer
- 2.67 mW 0,3 µs/s 0,4 kWork acm_softint
- 2.05 mW 14,2 µs/s 3,9 Process urxvt
- 1.96 mW 40,4 µs/s 0,25 Process /opt/HipChat/bin/hipchat
- 1.95 mW 14,2 µs/s 0,30 Process ssh xx.xx.xx.xx
- 1.88 mW 8,8 µs/s 0,30 Process NetworkManager
- 1.88 mW 8,3 µs/s 0,30 Process [jbd2/dm-1-8]
- 1.79 mW 0,5 µs/s 0,30 kWork gen6_force_wake_work
- 1.79 mW 0,4 µs/s 0,30 kWork blk_delay_work
- 1.65 mW 39,7 µs/s 0,20 Process /usr/sbin/irqbalance
- 1.28 mW 7,7 µs/s 0,20 Process zeitgeist-datahub
- 1.27 mW 7,1 µs/s 0,20 Process update-notifier
- 1.24 mW 4,6 µs/s 0,20 Process /usr/lib/rtkit/rtkit-daemon
- 1.11 mW 43,9 µs/s 0,10 Interrupt [60] xhci_hcd
- 1.05 mW 13,8 µs/s 0,15 Process /usr/lib/tracker/tracker-miner-fs
- 901 µW 0,9 µs/s 0,15 kWork i915_gem_retire_work_handler
- 901 µW 0,9 µs/s 0,15 kWork gen6_pm_rps_work
- 899 µW 0,8 µs/s 0,15 Process [ksoftirqd/3]
- 898 µW 0,6 µs/s 0,15 kWork flush_to_ldisc
- 895 µW 0,4 µs/s 0,15 kWork i915_gem_idle_work_handler
- 725 µW 11,2 µs/s 0,10 Process /usr/lib/telepathy/mission-control-5
- 685 µW 7,8 µs/s 0,10 Interrupt [4] block(softirq)
- 667 µW 6,3 µs/s 0,10 kWork kcryptd_crypt
- 666 µW 6,2 µs/s 0,10 Process powertop
- 604 µW 0,9 µs/s 0,10 Timer sched_rt_period_timer
- 602 µW 0,8 µs/s 0,10 kWork intel_fbc_work_fn
- 602 µW 0,7 µs/s 0,10 Process [khugepaged]
- 602 µW 0,7 µs/s 0,10 kWork dm_wq_work
- 599 µW 0,5 µs/s 0,10 kWork intel_unpin_work_fn
- 510 µW 43,6 µs/s 0,00 Interrupt [7] sched(softirq)
- 464 µW 39,7 µs/s 0,00 Interrupt [1] timer(softirq)
- 383 µW 32,8 µs/s 0,00 Process dbus-daemon --system --fork
- 325 µW 2,4 µs/s 0,05 Process upstart-dbus-bridge --daemon --session --user --bus-name session
- 313 µW 1,4 µs/s 0,05 Process cron
- 307 µW 0,9 µs/s 0,05 Process rsyslogd -c5
- 299 µW 0,2 µs/s 0,05 kWork check_lifetime
- 298 µW 0,1 µs/s 0,05 kWork neigh_periodic_work
- 298 µW 0,1 µs/s 0,05 kWork i915_gem_file_idle_work_handler
- 290 µW 24,8 µs/s 0,00 Interrupt [3] net_rx(softirq)
- 283 µW 24,2 µs/s 0,00 Timer i915_hangcheck_elapsed
- 273 µW 23,3 µs/s 0,00 Timer delayed_work_timer_fn
- 191 µW 16,3 µs/s 0,00 Timer intel_pstate_timer_func
- Powertop Idle stats:
- Note that cpu is in c9 or c10 all the time.. no load on the system should put it there immediately.
- Also, the gpu is in rc6 all the time (no unneccesary screen redraws) which is due to the i915 stuff we did earlier.
- Package | Core | CPU 0 CPU 1
- | | C0 active 0,6% 0,5%
- | | POLL 0,0% 0,0 ms 0,0% 0,0 ms
- | | C1E-HSW 0,0% 0,1 ms 0,0% 0,1 ms
- C2 (pc2) 3,8% | |
- C3 (pc3) 0,3% | C3 (cc3) 0,2% | C3-HSW 0,1% 0,4 ms 0,2% 0,4 ms
- C6 (pc6) 1,1% | C6 (cc6) 0,0% | C6-HSW 0,0% 0,3 ms 0,0% 0,5 ms
- C7 (pc7) 91,7% | C7 (cc7) 98,1% | C7s-HSW 0,2% 1,0 ms 0,3% 1,1 ms
- C8 (pc8) 0,0% | | C8-HSW 0,4% 1,7 ms 0,3% 2,0 ms
- C9 (pc9) 0,0% | | C9-HSW 21,6% 9,2 ms 10,5% 9,7 ms
- C10 (pc10) 0,0% | | C10-HSW 76,9% 13,1 ms 88,2% 24,1 ms
- | Core | CPU 2 CPU 3
- | | C0 active 0,3% 0,4%
- | | POLL 0,0% 0,0 ms 0,0% 0,0 ms
- | | C1E-HSW 0,0% 0,3 ms 0,0% 0,0 ms
- | |
- | C3 (cc3) 0,1% | C3-HSW 0,0% 0,4 ms 0,2% 0,4 ms
- | C6 (cc6) 0,0% | C6-HSW 0,0% 0,6 ms 0,0% 2,0 ms
- | C7 (cc7) 98,9% | C7s-HSW 0,2% 1,5 ms 0,4% 12,1 ms
- | | C8-HSW 0,6% 4,4 ms 0,0% 1,5 ms
- | | C9-HSW 2,4% 6,3 ms 0,9% 6,2 ms
- | | C10-HSW 96,4% 37,7 ms 98,0% 47,3 ms
- | GPU |
- | |
- | Powered On 1,3% |
- | RC6 98,7% |
- | RC6p 0,0% |
- | RC6pp 0,0% |
- | |
- | |
- | |
- | |
- | |
- Powertop Frequency Stats:
- Package | Core | CPU 0 CPU 1
- | | Actual 2,9 GHz 2,8 GHz
- Idle 99,6% | Idle 99,9% | Idle 100,0% 99,9%
- 2,81 GHz 0,1% | 2,81 GHz 0,0% | 2,81 GHz 0,0% 0,0%
- 2,90 GHz 0,3% | 2,90 GHz 0,1% | 2,90 GHz 0,0% 0,1%
- 2,50 GHz 0,0% | |
- | Core | CPU 2 CPU 3
- | | Actual 2,8 GHz 2,8 GHz
- | Idle 99,6% | Idle 99,8% 99,8%
- | 2,81 GHz 0,1% | 2,81 GHz 0,1% 0,0%
- | 2,90 GHz 0,3% | 2,90 GHz 0,1% 0,2%
- | |
- Powertop Device Stats:
- The battery reports a discharge rate of 3.50 W
- System baseline power is estimated at 0.00 W
- Power est. Usage Device name
- 1.26 W 100,0% Radio device: thinkpad_acpi
- 647 mW 1,8% DRAM
- 494 mW 1,8% CPU misc
- 0,0 pkts/s nic:virbr0
- 105 mW 1,8% CPU core
- 85.4 mW 1,1% Display backlight
- 78.0 mW 0,0% Display backlight
- 37.7 mW 2,9 ops/s GPU core
- 18.3 mW 2,7 pkts/s Network interface: wwan0 (cdc_ncm)
- 12.2 mW 100,0% USB device: N5321 gw (Lenovo)
- 0 mW 100,0% USB device: xHCI Host Controller
- 0 mW 2,9 ops/s GPU misc
- 0 mW 0,0 pkts/s Network interface: eth0 (e1000e)
- 0 mW 0,0 rpm Laptop fan
- 0 mW 0,0% Radio device: thinkpad_acpi
- 0 mW 0,0% USB device: EHCI Host Controller
- 0 mW 0,0% USB device: usb-device-8087-8000
- 0 mW 0,0% USB device: xHCI Host Controller
- 0 mW 0,0% USB device: EMV Smartcard Reader (Generic)
- 0 mW 0,0% USB device: usb-device-138a-0017
- 0 mW 0,0% Radio device: iwlwifi
- 0 mW 0,0% USB device: Integrated Camera (SunplusIT INC.)
- 0 mW 0,0 pkts/s Network interface: wlan0 (iwlwifi)
- 0 mW 0,0% Audio codec hwC0D0: Intel
- 100,0% PCI Device: Intel Corporation Lynx Point-LP USB xHCI HC
- 100,0% USB device: N5321 gw (Lenovo)
- 100,0% PCI Device: Intel Corporation Lynx Point-LP HECI #0
- 100,0% PCI Device: Intel Corporation Lynx Point-LP HECI KT
- 100,0% PCI Device: Realtek Semiconductor Co., Ltd. Device 5227
- 100,0% PCI Device: Intel Corporation Lynx Point-LP PCI Express Root Port 3
- 100,0% PCI Device: Intel Corporation Wireless 7260
- 100,0% PCI Device: Intel Corporation Lynx Point-LP PCI Express Root Port 6
- 100,0% PCI Device: Intel Corporation Lynx Point-LP LPC Controller
- 100,0% PCI Device: Intel Corporation Lynx Point-LP SATA Controller 1 [AHCI mode]
- 100,0% PCI Device: Intel Corporation Haswell-ULT Integrated Graphics Controller
- 0,0% PCI Device: Intel Corporation Lynx Point-LP HD Audio Controller
- 0,0% PCI Device: Intel Corporation Lynx Point-LP USB EHCI #1
- 0,0% PCI Device: Intel Corporation Ethernet Connection I218-LM
- 0,0% PCI Device: Intel Corporation Device 0a0c
- 0,0% PCI Device: Intel Corporation Haswell-ULT DRAM Controller
- 0,0% PCI Device: Intel Corporation Lynx Point-LP SMBus Controller
- 0,0% Thinkpad light
- Powertop Tunables:
- >> Bad VM writeback timeout
- Bad Autosuspend for USB device N5321 gw [Lenovo]
- Good Wireless Power Saving for interface wlan0
- Good NMI watchdog should be turned off
- Good Enable Audio codec power management
- Good Enable SATA link power Managmenet for host1
- Good Enable SATA link power Managmenet for host2
- Good Enable SATA link power Managmenet for host0
- Good Autosuspend for unknown USB device 1-1 (8087:8000)
- Good Autosuspend for USB device Integrated Camera [SunplusIT INC.]
- Good Autosuspend for USB device EMV Smartcard Reader [Generic]
- Good Autosuspend for USB device xHCI Host Controller [usb3]
- Good Autosuspend for USB device EHCI Host Controller [usb1]
- Good Autosuspend for unknown USB device 2-6 (138a:0017)
- Good Autosuspend for USB device xHCI Host Controller [usb2]
- Good Runtime PM for PCI Device Intel Corporation Haswell-ULT DRAM Controller
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP SMBus Controller
- Good Runtime PM for PCI Device Intel Corporation Haswell-ULT Integrated Graphics Controller
- Good Runtime PM for PCI Device Intel Corporation Device 0a0c
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP USB xHCI HC
- Good Runtime PM for PCI Device Intel Corporation Ethernet Connection I218-LM
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP LPC Controller
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP PCI Express Root Port 6
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP PCI Express Root Port 3
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP USB EHCI #1
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP HD Audio Controller
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP HECI #0
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP SATA Controller 1 [AHCI mode]
- Good Runtime PM for PCI Device Realtek Semiconductor Co., Ltd. Device 5227
- Good Runtime PM for PCI Device Intel Corporation Lynx Point-LP HECI KT
- Good Runtime PM for PCI Device Intel Corporation Wireless 7260
- Good Wake-on-lan status for device wwan0
- Good Wake-on-lan status for device wlan0
- Good Wake-on-lan status for device eth0
- Good Wake-on-lan status for device virbr0
- Good Using 'ondemand' cpufreq governor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement