diff mbox

ARM: imx6q: build pm code only when CONFIG_PM selected

Message ID 20209.62098.146087.510816@ipc1.ka-ro
State New
Headers show

Commit Message

Lothar Waßmann Dec. 21, 2011, 2:52 p.m. UTC
Hi,

Eric Miao writes:
[...]
> diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/head-v7.S
> index 6229efb..a59cae7 100644
> --- a/arch/arm/mach-imx/head-v7.S
> +++ b/arch/arm/mach-imx/head-v7.S
> @@ -71,6 +71,7 @@ ENTRY(v7_secondary_startup)
>  ENDPROC(v7_secondary_startup)
>  #endif
>  
> +#ifdef CONFIG_PM
>  /*
>   * The following code is located into the .data section.  This is to
>   * allow phys_l2x0_saved_regs to be accessed with a relative load
> @@ -97,3 +98,4 @@ ENDPROC(v7_cpu_resume)
>  	.globl	phys_l2x0_saved_regs
>  phys_l2x0_saved_regs:
>          .long   0
> +#endif
>
While you are changing mach-imx/head-v7.S you could also fix a build
error with 'CONFIG_CACHE_L2x0' disabled.
I just found this, but sending a patch now would conflict with your
patch:



Lothar Waßmann

Comments

Shawn Guo Dec. 21, 2011, 3:23 p.m. UTC | #1
On Wed, Dec 21, 2011 at 03:52:02PM +0100, Lothar Waßmann wrote:
> Hi,
> 
> Eric Miao writes:
> [...]
> > diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/head-v7.S
> > index 6229efb..a59cae7 100644
> > --- a/arch/arm/mach-imx/head-v7.S
> > +++ b/arch/arm/mach-imx/head-v7.S
> > @@ -71,6 +71,7 @@ ENTRY(v7_secondary_startup)
> >  ENDPROC(v7_secondary_startup)
> >  #endif
> >  
> > +#ifdef CONFIG_PM
> >  /*
> >   * The following code is located into the .data section.  This is to
> >   * allow phys_l2x0_saved_regs to be accessed with a relative load
> > @@ -97,3 +98,4 @@ ENDPROC(v7_cpu_resume)
> >  	.globl	phys_l2x0_saved_regs
> >  phys_l2x0_saved_regs:
> >          .long   0
> > +#endif
> >
> While you are changing mach-imx/head-v7.S you could also fix a build
> error with 'CONFIG_CACHE_L2x0' disabled.
> I just found this, but sending a patch now would conflict with your
> patch:

I think it should be a separate patch.  The conflict should be trivial
to be solved on my tree or arm-soc tree.

> 
> diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/head-v7.S
> index 6229efb..830b5c8 100644
> --- a/arch/arm/mach-imx/head-v7.S
> +++ b/arch/arm/mach-imx/head-v7.S
> @@ -80,12 +80,14 @@ ENDPROC(v7_secondary_startup)
>  	.align
>  
>  	.macro	pl310_resume
> +#ifdef CONFIG_CACHE_L2X0
>  	ldr	r2, phys_l2x0_saved_regs
>  	ldr	r0, [r2, #L2X0_R_PHY_BASE]	@ get physical base of l2x0
>  	ldr	r1, [r2, #L2X0_R_AUX_CTRL]	@ get aux_ctrl value
>  	str	r1, [r0, #L2X0_AUX_CTRL]	@ restore aux_ctrl
>  	mov	r1, #0x1
>  	str	r1, [r0, #L2X0_CTRL]		@ re-enable L2
> +#endif
>  	.endm
>  
>  ENTRY(v7_cpu_resume)
> @@ -94,6 +96,8 @@ ENTRY(v7_cpu_resume)
>  	b	cpu_resume
>  ENDPROC(v7_cpu_resume)
>  
> +#ifdef CONFIG_CACHE_L2X0
>  	.globl	phys_l2x0_saved_regs
>  phys_l2x0_saved_regs:
>          .long   0
> +#endif

But I'm thinking about if we can solve this at L2X0 level instead of
introducing ifdef all over every platform code.
Shawn Guo Dec. 21, 2011, 3:33 p.m. UTC | #2
On Wed, Dec 21, 2011 at 11:23:47PM +0800, Shawn Guo wrote:
> > diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/head-v7.S
> > index 6229efb..830b5c8 100644
> > --- a/arch/arm/mach-imx/head-v7.S
> > +++ b/arch/arm/mach-imx/head-v7.S
> > @@ -80,12 +80,14 @@ ENDPROC(v7_secondary_startup)
> >  	.align
> >  
> >  	.macro	pl310_resume
> > +#ifdef CONFIG_CACHE_L2X0
> >  	ldr	r2, phys_l2x0_saved_regs
> >  	ldr	r0, [r2, #L2X0_R_PHY_BASE]	@ get physical base of l2x0
> >  	ldr	r1, [r2, #L2X0_R_AUX_CTRL]	@ get aux_ctrl value
> >  	str	r1, [r0, #L2X0_AUX_CTRL]	@ restore aux_ctrl
> >  	mov	r1, #0x1
> >  	str	r1, [r0, #L2X0_CTRL]		@ re-enable L2
> > +#endif
> >  	.endm
> >  
> >  ENTRY(v7_cpu_resume)
> > @@ -94,6 +96,8 @@ ENTRY(v7_cpu_resume)
> >  	b	cpu_resume
> >  ENDPROC(v7_cpu_resume)
> >  
> > +#ifdef CONFIG_CACHE_L2X0
> >  	.globl	phys_l2x0_saved_regs
> >  phys_l2x0_saved_regs:
> >          .long   0
> > +#endif
> 
> But I'm thinking about if we can solve this at L2X0 level instead of
> introducing ifdef all over every platform code.
> 
Never mind.  Even if we have L2X0_R_PHY_BASE L2X0_R_AUX_CTRL defined
for non-L2X0 build, we still need ifdef for pl310_resume calling.

But can we save one ifdef by leaving phys_l2x0_saved_regs there?
diff mbox

Patch

diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/head-v7.S
index 6229efb..830b5c8 100644
--- a/arch/arm/mach-imx/head-v7.S
+++ b/arch/arm/mach-imx/head-v7.S
@@ -80,12 +80,14 @@  ENDPROC(v7_secondary_startup)
 	.align
 
 	.macro	pl310_resume
+#ifdef CONFIG_CACHE_L2X0
 	ldr	r2, phys_l2x0_saved_regs
 	ldr	r0, [r2, #L2X0_R_PHY_BASE]	@ get physical base of l2x0
 	ldr	r1, [r2, #L2X0_R_AUX_CTRL]	@ get aux_ctrl value
 	str	r1, [r0, #L2X0_AUX_CTRL]	@ restore aux_ctrl
 	mov	r1, #0x1
 	str	r1, [r0, #L2X0_CTRL]		@ re-enable L2
+#endif
 	.endm
 
 ENTRY(v7_cpu_resume)
@@ -94,6 +96,8 @@  ENTRY(v7_cpu_resume)
 	b	cpu_resume
 ENDPROC(v7_cpu_resume)
 
+#ifdef CONFIG_CACHE_L2X0
 	.globl	phys_l2x0_saved_regs
 phys_l2x0_saved_regs:
         .long   0
+#endif