d164f6d4f9
Add suspend/resume support for 4xx compatible CPUs. See /sys/power/state for available power states configured in. Add two different idle states (idle-wait and idle-doze) controlled via sysfs. Default is idle-wait. cat /sys/devices/system/cpu/cpu0/idle [wait] doze To save additional power, use idle-doze. echo doze > /sys/devices/system/cpu/cpu0/idle cat /sys/devices/system/cpu/cpu0/idle wait [doze] Signed-off-by: Victor Gallardo <vgallardo@apm.com> Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
11 lines
366 B
Makefile
11 lines
366 B
Makefile
obj-$(CONFIG_44x) += misc_44x.o
|
|
ifneq ($(CONFIG_PPC4xx_CPM),y)
|
|
obj-$(CONFIG_44x) += idle.o
|
|
endif
|
|
obj-$(CONFIG_PPC44x_SIMPLE) += ppc44x_simple.o
|
|
obj-$(CONFIG_EBONY) += ebony.o
|
|
obj-$(CONFIG_SAM440EP) += sam440ep.o
|
|
obj-$(CONFIG_WARP) += warp.o
|
|
obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o
|
|
obj-$(CONFIG_XILINX_ML510) += virtex_ml510.o
|
|
obj-$(CONFIG_ISS4xx) += iss4xx.o
|