Re: [U-Boot] [PATCH v3] common: Display >=4GiB memory bank size

2015-08-08 Thread Simon Glass
On 7 August 2015 at 13:20, Simon Glass wrote: > On 6 August 2015 at 02:31, Bin Meng wrote: >> bd->bi_dram[] has both start address and size defined as 32-bit, >> which is not the case on some platforms where >=4GiB memory bank >> is used. Change them to support such memory banks. >> >> Signed-off

Re: [U-Boot] [PATCH v3] common: Display >=4GiB memory bank size

2015-08-07 Thread Simon Glass
On 6 August 2015 at 02:31, Bin Meng wrote: > bd->bi_dram[] has both start address and size defined as 32-bit, > which is not the case on some platforms where >=4GiB memory bank > is used. Change them to support such memory banks. > > Signed-off-by: Bin Meng > > --- > > Changes in v3: > - Use %llx

[U-Boot] [PATCH v3] common: Display >=4GiB memory bank size

2015-08-06 Thread Bin Meng
bd->bi_dram[] has both start address and size defined as 32-bit, which is not the case on some platforms where >=4GiB memory bank is used. Change them to support such memory banks. Signed-off-by: Bin Meng --- Changes in v3: - Use %llx to print the dram start address Changes in v2: - Drop patch