Re: [U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-04-21 Thread Huan Wang
> On 04/18/2016 08:36 PM, Huan Wang wrote:
> > Hi, York,
> >
> >> On 03/28/2016 02:16 PM, Ed Swarthout wrote:
> >>> When switching between the early and final mmu tables, the stack
> >>> will get corrupted if the Non-Secure attribute is different.  For
> >>> ls1043a, this issue is currently masked because flush_dcache_all is
> >>> called before the switch when CONFIG_SYS_DPAA_FMAN is defined.
> >>>
> >>> Signed-off-by: Ed Swarthout 
> >>> ---
> >>>
> >>> Resend to fix diff format.
> >>>
> >>> denx/master with CONFIG_SYS_DPAA_FMAN undefined:
> >>> Fixes:
> >>>
> >>> U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
> >>> SoC:  LS1043E (0x87920010)
> >>> ...
> >>> Detected UDIMM 18ASF1G72AZ-2G1A1
> >>> 4 GiB (DDR4, 32-bit, CL=11, ECC on)
> >>>DDR Chip-Select Interleaving Mode: CS0+CS1 "Synchronous
> Abort"
> >>> handler, esr 0x8a00
> >>> ELR: deadbeefdeadbeef
> >>> LR:  deadbeefdeadbeef
> >>> x0 : 00ff440c0400 x1 : 00022518
> >>> x2 : 0040 x3 : 003f
> >>> x4 : 0004 x5 : 0001
> >>> x6 : 0009 x7 : 0020
> >>> x8 : 0015 x9 : 000c
> >>> x10: 0401 x11: 0008ffe06000
> >>> x12: 01ff x13: 4000
> >>> x14: 0020 x15: 0001
> >>> x16:  x17: 0002
> >>> x18: ffdd8d78 x19: deadbeefdeadbeef
> >>> x20: deadbeefdeadbeef x21: deadbeefdeadbeef
> >>> x22: deadbeefdeadbeef x23: deadbeefdeadbeef
> >>> x24: deadbeefdeadbeef x25: deadbeefdeadbeef
> >>> x26: deadbeefdeadbeef x27: 
> >>> x28: fff6ca90 x29: deadbeefdeadbeef
> >>>
> >>>
> >>>  arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
> >>>  1 file changed, 8 insertions(+), 4 deletions(-)
> >>>
> >>> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> >>> b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> >>> index 42ca7df..1f5842a 100644
> >>> --- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> >>> +++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> >>> @@ -159,9 +159,11 @@ static const struct sys_mmu_table
> >> early_mmu_table[] = {
> >>>   { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
> >>> CONFIG_SYS_FSL_IFC_SIZE, MT_DEVICE_NGNRNE, PTE_BLOCK_NON_SHARE },
> >>>   { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
> >>> -   CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> >>> +   CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL,
> >>> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >>>   { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> >>> -   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> >>> +   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> >>> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >>>  #endif
> >>>  };
> >>>
> >>> @@ -247,7 +249,8 @@ static const struct sys_mmu_table
> >>> final_mmu_table[]
> >> = {
> >>> CONFIG_SYS_FSL_QBMAN_SIZE, MT_DEVICE_NGNRNE,
> >>> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
> >>>   { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> >>> -   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> >>> +   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> >>> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >>>   { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
> >>> CONFIG_SYS_PCIE1_PHYS_SIZE, MT_DEVICE_NGNRNE,
> >>> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN }, @@ -258,7
> >>> +261,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
> >>> CONFIG_SYS_PCIE3_PHYS_SIZE, MT_DEVICE_NGNRNE,
> >>> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
> >>>   { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
> >>> -   CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> >>> +   CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL,
> >>> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >>>  #endif
> >>>  };
> >>>  #endif
> >>>
> >>
> >> Alison/Qianyu,
> >>
> >> This change looks right to me. Please see if if flushing can be
> removed.
> >>
> > [Alison Wang] I verified flushing can be removed.
> >
> 
> Thanks. Please submit a patch to remove the unnecessary flushing.
> 
[Alison Wang] Ok, I will send the patch.


Best Regards,
Alison Wang
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-04-19 Thread York Sun
On 04/18/2016 08:36 PM, Huan Wang wrote:
> Hi, York,
> 
>> On 03/28/2016 02:16 PM, Ed Swarthout wrote:
>>> When switching between the early and final mmu tables, the stack will
>>> get corrupted if the Non-Secure attribute is different.  For ls1043a,
>>> this issue is currently masked because flush_dcache_all is called
>>> before the switch when CONFIG_SYS_DPAA_FMAN is defined.
>>>
>>> Signed-off-by: Ed Swarthout 
>>> ---
>>>
>>> Resend to fix diff format.
>>>
>>> denx/master with CONFIG_SYS_DPAA_FMAN undefined:
>>> Fixes:
>>>
>>> U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
>>> SoC:  LS1043E (0x87920010)
>>> ...
>>> Detected UDIMM 18ASF1G72AZ-2G1A1
>>> 4 GiB (DDR4, 32-bit, CL=11, ECC on)
>>>DDR Chip-Select Interleaving Mode: CS0+CS1 "Synchronous Abort"
>>> handler, esr 0x8a00
>>> ELR: deadbeefdeadbeef
>>> LR:  deadbeefdeadbeef
>>> x0 : 00ff440c0400 x1 : 00022518
>>> x2 : 0040 x3 : 003f
>>> x4 : 0004 x5 : 0001
>>> x6 : 0009 x7 : 0020
>>> x8 : 0015 x9 : 000c
>>> x10: 0401 x11: 0008ffe06000
>>> x12: 01ff x13: 4000
>>> x14: 0020 x15: 0001
>>> x16:  x17: 0002
>>> x18: ffdd8d78 x19: deadbeefdeadbeef
>>> x20: deadbeefdeadbeef x21: deadbeefdeadbeef
>>> x22: deadbeefdeadbeef x23: deadbeefdeadbeef
>>> x24: deadbeefdeadbeef x25: deadbeefdeadbeef
>>> x26: deadbeefdeadbeef x27: 
>>> x28: fff6ca90 x29: deadbeefdeadbeef
>>>
>>>
>>>  arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
>>>  1 file changed, 8 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
>>> b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
>>> index 42ca7df..1f5842a 100644
>>> --- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
>>> +++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
>>> @@ -159,9 +159,11 @@ static const struct sys_mmu_table
>> early_mmu_table[] = {
>>> { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
>>>   CONFIG_SYS_FSL_IFC_SIZE, MT_DEVICE_NGNRNE, PTE_BLOCK_NON_SHARE },
>>> { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
>>> - CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
>>> + CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL,
>>> + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>>> { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
>>> - CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
>>> + CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
>>> + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>>>  #endif
>>>  };
>>>
>>> @@ -247,7 +249,8 @@ static const struct sys_mmu_table final_mmu_table[]
>> = {
>>>   CONFIG_SYS_FSL_QBMAN_SIZE, MT_DEVICE_NGNRNE,
>>>   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
>>> { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
>>> - CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
>>> + CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
>>> + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>>> { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
>>>   CONFIG_SYS_PCIE1_PHYS_SIZE, MT_DEVICE_NGNRNE,
>>>   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN }, @@ -258,7
>>> +261,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
>>>   CONFIG_SYS_PCIE3_PHYS_SIZE, MT_DEVICE_NGNRNE,
>>>   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
>>> { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
>>> - CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
>>> + CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL,
>>> + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>>>  #endif
>>>  };
>>>  #endif
>>>
>>
>> Alison/Qianyu,
>>
>> This change looks right to me. Please see if if flushing can be removed.
>>
> [Alison Wang] I verified flushing can be removed.
> 

Thanks. Please submit a patch to remove the unnecessary flushing.

York


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-04-18 Thread Huan Wang
Hi, York,

> On 03/28/2016 02:16 PM, Ed Swarthout wrote:
> > When switching between the early and final mmu tables, the stack will
> > get corrupted if the Non-Secure attribute is different.  For ls1043a,
> > this issue is currently masked because flush_dcache_all is called
> > before the switch when CONFIG_SYS_DPAA_FMAN is defined.
> >
> > Signed-off-by: Ed Swarthout 
> > ---
> >
> > Resend to fix diff format.
> >
> > denx/master with CONFIG_SYS_DPAA_FMAN undefined:
> > Fixes:
> >
> > U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
> > SoC:  LS1043E (0x87920010)
> > ...
> > Detected UDIMM 18ASF1G72AZ-2G1A1
> > 4 GiB (DDR4, 32-bit, CL=11, ECC on)
> >DDR Chip-Select Interleaving Mode: CS0+CS1 "Synchronous Abort"
> > handler, esr 0x8a00
> > ELR: deadbeefdeadbeef
> > LR:  deadbeefdeadbeef
> > x0 : 00ff440c0400 x1 : 00022518
> > x2 : 0040 x3 : 003f
> > x4 : 0004 x5 : 0001
> > x6 : 0009 x7 : 0020
> > x8 : 0015 x9 : 000c
> > x10: 0401 x11: 0008ffe06000
> > x12: 01ff x13: 4000
> > x14: 0020 x15: 0001
> > x16:  x17: 0002
> > x18: ffdd8d78 x19: deadbeefdeadbeef
> > x20: deadbeefdeadbeef x21: deadbeefdeadbeef
> > x22: deadbeefdeadbeef x23: deadbeefdeadbeef
> > x24: deadbeefdeadbeef x25: deadbeefdeadbeef
> > x26: deadbeefdeadbeef x27: 
> > x28: fff6ca90 x29: deadbeefdeadbeef
> >
> >
> >  arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
> >  1 file changed, 8 insertions(+), 4 deletions(-)
> >
> > diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> > b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> > index 42ca7df..1f5842a 100644
> > --- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> > +++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> > @@ -159,9 +159,11 @@ static const struct sys_mmu_table
> early_mmu_table[] = {
> > { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
> >   CONFIG_SYS_FSL_IFC_SIZE, MT_DEVICE_NGNRNE, PTE_BLOCK_NON_SHARE },
> > { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
> > - CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> > + CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL,
> > + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> > { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> > - CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> > + CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> > + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >  #endif
> >  };
> >
> > @@ -247,7 +249,8 @@ static const struct sys_mmu_table final_mmu_table[]
> = {
> >   CONFIG_SYS_FSL_QBMAN_SIZE, MT_DEVICE_NGNRNE,
> >   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
> > { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> > - CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> > + CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> > + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> > { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
> >   CONFIG_SYS_PCIE1_PHYS_SIZE, MT_DEVICE_NGNRNE,
> >   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN }, @@ -258,7
> > +261,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
> >   CONFIG_SYS_PCIE3_PHYS_SIZE, MT_DEVICE_NGNRNE,
> >   PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
> > { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
> > - CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> > + CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL,
> > + PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
> >  #endif
> >  };
> >  #endif
> >
> 
> Alison/Qianyu,
> 
> This change looks right to me. Please see if if flushing can be removed.
> 
[Alison Wang] I verified flushing can be removed.


Best Regards,
Alison Wang
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-04-06 Thread York Sun
On 03/28/2016 02:16 PM, Ed Swarthout wrote:
> When switching between the early and final mmu tables, the stack will
> get corrupted if the Non-Secure attribute is different.  For ls1043a,
> this issue is currently masked because flush_dcache_all is called
> before the switch when CONFIG_SYS_DPAA_FMAN is defined.
> 
> Signed-off-by: Ed Swarthout 
> ---
> 
> Resend to fix diff format.
> 
> denx/master with CONFIG_SYS_DPAA_FMAN undefined:
> Fixes:
> 
> U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
> SoC:  LS1043E (0x87920010)
> ...
> Detected UDIMM 18ASF1G72AZ-2G1A1 
> 4 GiB (DDR4, 32-bit, CL=11, ECC on)
>DDR Chip-Select Interleaving Mode: CS0+CS1
> "Synchronous Abort" handler, esr 0x8a00
> ELR: deadbeefdeadbeef
> LR:  deadbeefdeadbeef
> x0 : 00ff440c0400 x1 : 00022518
> x2 : 0040 x3 : 003f
> x4 : 0004 x5 : 0001
> x6 : 0009 x7 : 0020
> x8 : 0015 x9 : 000c
> x10: 0401 x11: 0008ffe06000
> x12: 01ff x13: 4000
> x14: 0020 x15: 0001
> x16:  x17: 0002
> x18: ffdd8d78 x19: deadbeefdeadbeef
> x20: deadbeefdeadbeef x21: deadbeefdeadbeef
> x22: deadbeefdeadbeef x23: deadbeefdeadbeef
> x24: deadbeefdeadbeef x25: deadbeefdeadbeef
> x26: deadbeefdeadbeef x27: 
> x28: fff6ca90 x29: deadbeefdeadbeef
> 
> 
>  arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
>  1 file changed, 8 insertions(+), 4 deletions(-)

Applied to u-boot-fsl-qoriq master. Awaiting upstream.
Thanks.

York

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-03-28 Thread york sun
On 03/28/2016 02:16 PM, Ed Swarthout wrote:
> When switching between the early and final mmu tables, the stack will
> get corrupted if the Non-Secure attribute is different.  For ls1043a,
> this issue is currently masked because flush_dcache_all is called
> before the switch when CONFIG_SYS_DPAA_FMAN is defined.
> 
> Signed-off-by: Ed Swarthout 
> ---
> 
> Resend to fix diff format.
> 
> denx/master with CONFIG_SYS_DPAA_FMAN undefined:
> Fixes:
> 
> U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
> SoC:  LS1043E (0x87920010)
> ...
> Detected UDIMM 18ASF1G72AZ-2G1A1 
> 4 GiB (DDR4, 32-bit, CL=11, ECC on)
>DDR Chip-Select Interleaving Mode: CS0+CS1
> "Synchronous Abort" handler, esr 0x8a00
> ELR: deadbeefdeadbeef
> LR:  deadbeefdeadbeef
> x0 : 00ff440c0400 x1 : 00022518
> x2 : 0040 x3 : 003f
> x4 : 0004 x5 : 0001
> x6 : 0009 x7 : 0020
> x8 : 0015 x9 : 000c
> x10: 0401 x11: 0008ffe06000
> x12: 01ff x13: 4000
> x14: 0020 x15: 0001
> x16:  x17: 0002
> x18: ffdd8d78 x19: deadbeefdeadbeef
> x20: deadbeefdeadbeef x21: deadbeefdeadbeef
> x22: deadbeefdeadbeef x23: deadbeefdeadbeef
> x24: deadbeefdeadbeef x25: deadbeefdeadbeef
> x26: deadbeefdeadbeef x27: 
> x28: fff6ca90 x29: deadbeefdeadbeef
> 
> 
>  arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
>  1 file changed, 8 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h 
> b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> index 42ca7df..1f5842a 100644
> --- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> +++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
> @@ -159,9 +159,11 @@ static const struct sys_mmu_table early_mmu_table[] = {
>   { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
> CONFIG_SYS_FSL_IFC_SIZE, MT_DEVICE_NGNRNE, PTE_BLOCK_NON_SHARE },
>   { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
> -   CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> +   CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL,
> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>   { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> -   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> +   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>  #endif
>  };
>  
> @@ -247,7 +249,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
> CONFIG_SYS_FSL_QBMAN_SIZE, MT_DEVICE_NGNRNE,
> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
>   { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
> -   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> +   CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>   { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
> CONFIG_SYS_PCIE1_PHYS_SIZE, MT_DEVICE_NGNRNE,
> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
> @@ -258,7 +261,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
> CONFIG_SYS_PCIE3_PHYS_SIZE, MT_DEVICE_NGNRNE,
> PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
>   { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
> -   CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
> +   CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL,
> +   PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
>  #endif
>  };
>  #endif
> 

Alison/Qianyu,

This change looks right to me. Please see if if flushing can be removed.

York


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH RESEND] armv8: LSCH2 early and final mmu needs matching NS attribute

2016-03-28 Thread Ed Swarthout
When switching between the early and final mmu tables, the stack will
get corrupted if the Non-Secure attribute is different.  For ls1043a,
this issue is currently masked because flush_dcache_all is called
before the switch when CONFIG_SYS_DPAA_FMAN is defined.

Signed-off-by: Ed Swarthout 
---

Resend to fix diff format.

denx/master with CONFIG_SYS_DPAA_FMAN undefined:
Fixes:

U-Boot 2016.03-00530-g1fee6de (Mar 28 2016 - 13:46:36 -0500)
SoC:  LS1043E (0x87920010)
...
Detected UDIMM 18ASF1G72AZ-2G1A1 
4 GiB (DDR4, 32-bit, CL=11, ECC on)
   DDR Chip-Select Interleaving Mode: CS0+CS1
"Synchronous Abort" handler, esr 0x8a00
ELR: deadbeefdeadbeef
LR:  deadbeefdeadbeef
x0 : 00ff440c0400 x1 : 00022518
x2 : 0040 x3 : 003f
x4 : 0004 x5 : 0001
x6 : 0009 x7 : 0020
x8 : 0015 x9 : 000c
x10: 0401 x11: 0008ffe06000
x12: 01ff x13: 4000
x14: 0020 x15: 0001
x16:  x17: 0002
x18: ffdd8d78 x19: deadbeefdeadbeef
x20: deadbeefdeadbeef x21: deadbeefdeadbeef
x22: deadbeefdeadbeef x23: deadbeefdeadbeef
x24: deadbeefdeadbeef x25: deadbeefdeadbeef
x26: deadbeefdeadbeef x27: 
x28: fff6ca90 x29: deadbeefdeadbeef


 arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h 
b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
index 42ca7df..1f5842a 100644
--- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
@@ -159,9 +159,11 @@ static const struct sys_mmu_table early_mmu_table[] = {
{ CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
  CONFIG_SYS_FSL_IFC_SIZE, MT_DEVICE_NGNRNE, PTE_BLOCK_NON_SHARE },
{ CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
- CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
+ CONFIG_SYS_FSL_DRAM_SIZE1, MT_NORMAL,
+ PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
{ CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
- CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
+ CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
+ PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
 #endif
 };
 
@@ -247,7 +249,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
  CONFIG_SYS_FSL_QBMAN_SIZE, MT_DEVICE_NGNRNE,
  PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
{ CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
- CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
+ CONFIG_SYS_FSL_DRAM_SIZE2, MT_NORMAL,
+ PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
{ CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
  CONFIG_SYS_PCIE1_PHYS_SIZE, MT_DEVICE_NGNRNE,
  PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
@@ -258,7 +261,8 @@ static const struct sys_mmu_table final_mmu_table[] = {
  CONFIG_SYS_PCIE3_PHYS_SIZE, MT_DEVICE_NGNRNE,
  PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN },
{ CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
- CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL, PTE_BLOCK_OUTER_SHARE },
+ CONFIG_SYS_FSL_DRAM_SIZE3, MT_NORMAL,
+ PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS },
 #endif
 };
 #endif
-- 
2.5.0

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot