Re: [U-Boot] [PATCH] rk3399: reseve space for trust

2016-07-24 Thread Kever Yang

Hi Simon,

On 07/23/2016 11:03 AM, Simon Glass wrote:

Hi again,

On 22 July 2016 at 20:57, Simon Glass  wrote:

Hi Kever,

On 22 July 2016 at 03:34, Kever Yang  wrote:

For the commit message, you have "rk3399: reseve space for trust".

I think it should be "rk3399: Reseve space for ARM Trusted Firmware"
or perhaps ATF

Ooops I mean 'Reserve' !


I though the memory is used by ATF BL31 and BL32 which is not including 
in ATF,
this reserve memory only use for ATF BL31 in fact, so I will send 
Version 2 with all

you comments applied.

Thanks,
- Kever






rk3399 need reserve 0x20 at the begining of DRAM, for ATF usage.

needs
beginning
s/usage/use/


Signed-off-by: Kever Yang 
---

  board/rockchip/evb_rk3399/evb-rk3399.c | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/board/rockchip/evb_rk3399/evb-rk3399.c 
b/board/rockchip/evb_rk3399/evb-rk3399.c
index dffacd0..37d3851 100644
--- a/board/rockchip/evb_rk3399/evb-rk3399.c
+++ b/board/rockchip/evb_rk3399/evb-rk3399.c
@@ -21,6 +21,7 @@ int dram_init(void)

  void dram_init_banksize(void)
  {
-   gd->bd->bi_dram[0].start = 0;
+   /* Reserve 0x20 for trust word */

What does 'trust word' mean? Do you mean space for ATF, or a single
word of memory?


+   gd->bd->bi_dram[0].start = 0x20;
 gd->bd->bi_dram[0].size = 0x8000;
  }
--
1.9.1



Regards,
Simon


Regards,
Simon




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


Re: [U-Boot] [PATCH] rk3399: reseve space for trust

2016-07-22 Thread Simon Glass
Hi again,

On 22 July 2016 at 20:57, Simon Glass  wrote:
> Hi Kever,
>
> On 22 July 2016 at 03:34, Kever Yang  wrote:
>
> For the commit message, you have "rk3399: reseve space for trust".
>
> I think it should be "rk3399: Reseve space for ARM Trusted Firmware"
> or perhaps ATF

Ooops I mean 'Reserve' !

>
>
>> rk3399 need reserve 0x20 at the begining of DRAM, for ATF usage.
>
> needs
> beginning
> s/usage/use/
>
>>
>> Signed-off-by: Kever Yang 
>> ---
>>
>>  board/rockchip/evb_rk3399/evb-rk3399.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/board/rockchip/evb_rk3399/evb-rk3399.c 
>> b/board/rockchip/evb_rk3399/evb-rk3399.c
>> index dffacd0..37d3851 100644
>> --- a/board/rockchip/evb_rk3399/evb-rk3399.c
>> +++ b/board/rockchip/evb_rk3399/evb-rk3399.c
>> @@ -21,6 +21,7 @@ int dram_init(void)
>>
>>  void dram_init_banksize(void)
>>  {
>> -   gd->bd->bi_dram[0].start = 0;
>> +   /* Reserve 0x20 for trust word */
>
> What does 'trust word' mean? Do you mean space for ATF, or a single
> word of memory?
>
>> +   gd->bd->bi_dram[0].start = 0x20;
>> gd->bd->bi_dram[0].size = 0x8000;
>>  }
>> --
>> 1.9.1
>>
>>
>
> Regards,
> Simon


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


Re: [U-Boot] [PATCH] rk3399: reseve space for trust

2016-07-22 Thread Simon Glass
Hi Kever,

On 22 July 2016 at 03:34, Kever Yang  wrote:

For the commit message, you have "rk3399: reseve space for trust".

I think it should be "rk3399: Reseve space for ARM Trusted Firmware"
or perhaps ATF


> rk3399 need reserve 0x20 at the begining of DRAM, for ATF usage.

needs
beginning
s/usage/use/

>
> Signed-off-by: Kever Yang 
> ---
>
>  board/rockchip/evb_rk3399/evb-rk3399.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/board/rockchip/evb_rk3399/evb-rk3399.c 
> b/board/rockchip/evb_rk3399/evb-rk3399.c
> index dffacd0..37d3851 100644
> --- a/board/rockchip/evb_rk3399/evb-rk3399.c
> +++ b/board/rockchip/evb_rk3399/evb-rk3399.c
> @@ -21,6 +21,7 @@ int dram_init(void)
>
>  void dram_init_banksize(void)
>  {
> -   gd->bd->bi_dram[0].start = 0;
> +   /* Reserve 0x20 for trust word */

What does 'trust word' mean? Do you mean space for ATF, or a single
word of memory?

> +   gd->bd->bi_dram[0].start = 0x20;
> gd->bd->bi_dram[0].size = 0x8000;
>  }
> --
> 1.9.1
>
>

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


[U-Boot] [PATCH] rk3399: reseve space for trust

2016-07-22 Thread Kever Yang
rk3399 need reserve 0x20 at the begining of DRAM, for ATF usage.

Signed-off-by: Kever Yang 
---

 board/rockchip/evb_rk3399/evb-rk3399.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/board/rockchip/evb_rk3399/evb-rk3399.c 
b/board/rockchip/evb_rk3399/evb-rk3399.c
index dffacd0..37d3851 100644
--- a/board/rockchip/evb_rk3399/evb-rk3399.c
+++ b/board/rockchip/evb_rk3399/evb-rk3399.c
@@ -21,6 +21,7 @@ int dram_init(void)
 
 void dram_init_banksize(void)
 {
-   gd->bd->bi_dram[0].start = 0;
+   /* Reserve 0x20 for trust word */
+   gd->bd->bi_dram[0].start = 0x20;
gd->bd->bi_dram[0].size = 0x8000;
 }
-- 
1.9.1


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