Added instructions for new 2.6.35 rc kernels.
sudo -i
#to turn yourself into root
echo dynpm > /sys/class/drm/card0/device/power_method
## dynamic clock switching based on GPU load
echo profile > /sys/class/drm/card0/device/power_method
## profile based frequency switching; this is the default mode
echo default > /sys/class/drm/card0/device/power_profile
# uses default clocks/volts
echo low > /sys/class/drm/card0/device/power_profile
## forces GPU to lowest available frequency; may cause some issues on certain laptops and displays, as this is the mode used when the display switches to dpms off mode
echo mid > /sys/class/drm/card0/device/power_profile
## forces GPU to be in the "mid" power state all the time; safer to use than "low" for regular desktop usage
echo high > /sys/class/drm/card0/device/power_profile
## forces GPU to highest available frequency
echo auto > /sys/class/drm/card-0/device/power_profile
## switches between high and mid power states depending on whether the system in on battery power or not
The default is the balanced power state and the auto performance level. You can change them to you hearts desire.sudo -i
#you need to be root to use all these commands
#there are three power states: battery, balanced, performance
#you can change between these states by echoing to the following parameter
/sys/class/drm/card0/device/power_dpm_state
#each power state has several performance levels: auto, low, high
#you can also change between them by echoing to the following:
/sys/class/drm/card0/device/power_dpm_force_performance_level
#!/bin/sh
echo profile > /sys/class/drm/card0/device/power_method
echo mid > /sys/class/drm/card0/device/power_profile
#!/bin/sh
echo profile > /sys/class/drm/card0/device/power_method
echo high > /sys/class/drm/card0/device/power_profile
/etc/laptop-mode/batt-start
/etc/laptop-mode/lm-ac-stop
/etc/laptop-mode/nolm-ac-start/
/etc/laptop-mode/nolm-ac-stop/
/etc/laptop-mode/batt-stop/
/etc/laptop-mode/lm-ac-start/