2e1ee1f766
Implement deep-sleep on MPC52xx. SDRAM is put into self-refresh with help of SRAM code (alternatives would be code in FLASH, I-cache). Interrupt code must also not be in SDRAM, so put it in I-cache. MPC52xx core is static, so contents will remain intact even with clocks turned off. Signed-off-by: Domen Puncer <domen.puncer@telargo.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Sylvain Munaut <tnt@246tNt.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
13 lines
280 B
Makefile
13 lines
280 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
|