On Jul 20, 2012, at 7:42 AM, Zhao Chenhui wrote: > In sleep PM mode, the clocks of e500 core and unused IP blocks is > turned off. IP blocks which are allowed to wake up the processor > are still running. > > Some Freescale chips like MPC8536 and P1022 has deep sleep PM mode > in addtion to the sleep PM mode. > > While in deep sleep PM mode, additionally, the power supply is > removed from e500 core and most IP blocks. Only the blocks needed > to wake up the chip out of deep sleep are ON. > > This patch supports 32-bit and 36-bit address space. > > The sleep mode is equal to the Standby state in Linux. The deep sleep > mode is equal to the Suspend-to-RAM state of Linux Power Management. > > Command to enter sleep mode. > echo standby > /sys/power/state > Command to enter deep sleep mode. > echo mem > /sys/power/state > > Signed-off-by: Dave Liu <dave...@freescale.com> > Signed-off-by: Li Yang <le...@freescale.com> > Signed-off-by: Jin Qing <b24...@freescale.com> > Signed-off-by: Jerry Huang <chang-ming.hu...@freescale.com> > Cc: Scott Wood <scottw...@freescale.com> > Signed-off-by: Zhao Chenhui <chenhui.z...@freescale.com> > --- > arch/powerpc/Kconfig | 2 +- > arch/powerpc/include/asm/cacheflush.h | 2 + > arch/powerpc/kernel/Makefile | 3 + > arch/powerpc/kernel/l2cache_85xx.S | 56 +++ > arch/powerpc/platforms/85xx/Makefile | 2 +- > arch/powerpc/platforms/85xx/sleep.S | 621 +++++++++++++++++++++++++++++++++ > arch/powerpc/sysdev/fsl_pmc.c | 98 +++++- > arch/powerpc/sysdev/fsl_soc.h | 5 + > 8 files changed, 769 insertions(+), 20 deletions(-) > create mode 100644 arch/powerpc/kernel/l2cache_85xx.S > create mode 100644 arch/powerpc/platforms/85xx/sleep.S > > diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig > index a7c6914..9d6de82 100644 > --- a/arch/powerpc/Kconfig > +++ b/arch/powerpc/Kconfig > @@ -665,7 +665,7 @@ config FSL_PCI > config FSL_PMC > bool > default y > - depends on SUSPEND && (PPC_85xx || PPC_86xx) > + depends on SUSPEND && (PPC_85xx || PPC_86xx) && !PPC_E500MC > help > Freescale MPC85xx/MPC86xx power management controller support > (suspend/resume). For MPC83xx see platforms/83xx/suspend.c > diff --git a/arch/powerpc/include/asm/cacheflush.h > b/arch/powerpc/include/asm/cacheflush.h > index b843e35..6c5f1c2 100644 > --- a/arch/powerpc/include/asm/cacheflush.h > +++ b/arch/powerpc/include/asm/cacheflush.h > @@ -58,6 +58,8 @@ extern void flush_inval_dcache_range(unsigned long start, > unsigned long stop); > extern void flush_dcache_phys_range(unsigned long start, unsigned long stop); > #endif > > +extern void flush_dcache_L1(void); > + > #define copy_to_user_page(vma, page, vaddr, dst, src, len) \ > do { \ > memcpy(dst, src, len); \ > diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile > index 83afacd..0ddef24 100644 > --- a/arch/powerpc/kernel/Makefile > +++ b/arch/powerpc/kernel/Makefile > @@ -64,6 +64,9 @@ obj-$(CONFIG_FA_DUMP) += fadump.o > ifeq ($(CONFIG_PPC32),y) > obj-$(CONFIG_E500) += idle_e500.o > endif > +ifneq ($(CONFIG_PPC_E500MC),y) > +obj-$(CONFIG_PPC_85xx) += l2cache_85xx.o > +endif
why do we need this, beyond reduce code size on an e500mc kernel build? If so why isn't 85xx/sleep.S doing the same thing? > obj-$(CONFIG_6xx) += idle_6xx.o l2cr_6xx.o cpu_setup_6xx.o > obj-$(CONFIG_TAU) += tau_6xx.o > obj-$(CONFIG_HIBERNATION) += swsusp.o suspend.o > diff --git a/arch/powerpc/kernel/l2cache_85xx.S > b/arch/powerpc/kernel/l2cache_85xx.S > new file mode 100644 > index 0000000..e920d69 > --- /dev/null > +++ b/arch/powerpc/kernel/l2cache_85xx.S > @@ -0,0 +1,56 @@ > +/* > + * Copyright (C) 2009-2012 Freescale Semiconductor, Inc. All rights reserved. > + * Scott Wood <scottw...@freescale.com> > + * Dave Liu <dave...@freescale.com> > + * implement the L2 cache operations of e500 based L2 controller > + * > + * This program is free software; you can redistribute it and/or > + * modify it under the terms of the GNU General Public License > + * as published by the Free Software Foundation; either version > + * 2 of the License, or (at your option) any later version. > + */ > + > +#include <asm/reg.h> > +#include <asm/cputable.h> > +#include <asm/ppc_asm.h> > +#include <asm/asm-offsets.h> > + > +#define L2CTL_L2E 0x80000000 > +#define L2CTL_L2I 0x40000000 > + > + .section .text > + > + /* r3 = virtual address of L2 controller, WIMG = 01xx */ > +_GLOBAL(flush_disable_L2) > + /* It's a write-through cache, so only invalidation is needed. */ > + mbar > + isync > + lwz r4, 0(r3) > + li r5, 1 > + rlwimi r4, r5, 30, L2CTL_L2E | L2CTL_L2I > + stw r4, 0(r3) > + > + /* Wait for the invalidate to finish */ > +1: lwz r4, 0(r3) > + andis. r4, r4, L2CTL_L2I@h > + bne 1b > + mbar > + > + blr > + > + /* r3 = virtual address of L2 controller, WIMG = 01xx */ > +_GLOBAL(invalidate_enable_L2) > + mbar > + isync > + lwz r4, 0(r3) > + li r5, 3 > + rlwimi r4, r5, 30, L2CTL_L2E | L2CTL_L2I > + stw r4, 0(r3) > + > + /* Wait for the invalidate to finish */ > +1: lwz r4, 0(r3) > + andis. r4, r4, L2CTL_L2I@h > + bne 1b > + mbar > + > + blr > diff --git a/arch/powerpc/platforms/85xx/Makefile > b/arch/powerpc/platforms/85xx/Makefile > index 3dfe811..405ab79 100644 > --- a/arch/powerpc/platforms/85xx/Makefile > +++ b/arch/powerpc/platforms/85xx/Makefile > @@ -3,7 +3,7 @@ > # > obj-$(CONFIG_SMP) += smp.o > > -obj-y += common.o > +obj-y += common.o sleep.o > > obj-$(CONFIG_BSC9131_RDB) += bsc913x_rdb.o > obj-$(CONFIG_MPC8540_ADS) += mpc85xx_ads.o > - k -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/