ee983079ce
Low-power mode implementation for Lite5200b. Some I/O registers are also saved here. A recent U-Boot that supports this (lite5200b_PM_config) is needed. Signed-off-by: Domen Puncer <domen.puncer@telargo.com> Signed-off-by: Sylvain Munaut <tnt@246tNt.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
16 lines
370 B
Makefile
16 lines
370 B
Makefile
#
|
|
# Makefile for 52xx based boards
|
|
#
|
|
ifeq ($(CONFIG_PPC_MERGE),y)
|
|
obj-y += mpc52xx_pic.o mpc52xx_common.o
|
|
obj-$(CONFIG_PCI) += mpc52xx_pci.o
|
|
endif
|
|
|
|
obj-$(CONFIG_PPC_EFIKA) += efika.o
|
|
obj-$(CONFIG_PPC_LITE5200) += lite5200.o
|
|
|
|
obj-$(CONFIG_PM) += mpc52xx_sleep.o mpc52xx_pm.o
|
|
ifeq ($(CONFIG_PPC_LITE5200),y)
|
|
obj-$(CONFIG_PM) += lite5200_sleep.o lite5200_pm.o
|
|
endif
|