Re: [U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-12-10 Thread Simon Glass
Hi Simon, On Thu, 29 Nov 2018 at 13:40, Simon Goldschmidt wrote: > > On 27.11.2018 06:40, Simon Goldschmidt wrote: > > On Tue, Nov 27, 2018 at 2:02 AM Simon Glass wrote: > >> Hi Simon, > >> > >> On Sat, 17 Nov 2018 at 02:18, Simon Goldschmidt > >> wrote: > >>> boot_fdt_add_mem_rsv_regions()

Re: [U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-11-29 Thread Simon Goldschmidt
On 27.11.2018 06:40, Simon Goldschmidt wrote: On Tue, Nov 27, 2018 at 2:02 AM Simon Glass wrote: Hi Simon, On Sat, 17 Nov 2018 at 02:18, Simon Goldschmidt wrote: boot_fdt_add_mem_rsv_regions() adds reserved memory sections to an lmb struct. Currently, it only parses regions described by

Re: [U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-11-26 Thread Simon Goldschmidt
On Tue, Nov 27, 2018 at 2:02 AM Simon Glass wrote: > > Hi Simon, > > On Sat, 17 Nov 2018 at 02:18, Simon Goldschmidt > wrote: > > > > boot_fdt_add_mem_rsv_regions() adds reserved memory sections to an lmb > > struct. Currently, it only parses regions described by /memreserve/ > > entries. > > >

Re: [U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-11-26 Thread Simon Glass
Hi Simon, On Sat, 17 Nov 2018 at 02:18, Simon Goldschmidt wrote: > > boot_fdt_add_mem_rsv_regions() adds reserved memory sections to an lmb > struct. Currently, it only parses regions described by /memreserve/ > entries. > > Extend this to the more commonly used scheme of the "reserved-memory" >

[U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-11-17 Thread Simon Goldschmidt
boot_fdt_add_mem_rsv_regions() adds reserved memory sections to an lmb struct. Currently, it only parses regions described by /memreserve/ entries. Extend this to the more commonly used scheme of the "reserved-memory" node. Signed-off-by: Simon Goldschmidt --- Changes in v2: - this patch is

[U-Boot] [PATCH v2 2/8] fdt: parse "reserved-memory" for memory reservation

2018-11-17 Thread Simon Goldschmidt
boot_fdt_add_mem_rsv_regions() adds reserved memory sections to an lmb struct. Currently, it only parses regions described by /memreserve/ entries. Extend this to the more commonly used scheme of the "reserved-memory" node. Signed-off-by: Simon Goldschmidt --- Changes in v2: - this patch is