Re: [U-Boot] [PATCH 24/30] riscv: save hart ID and device tree passed by prior boot stage

2018-10-23 Thread Rick Chen
> > > > > > Store the hart ID and device tree passed by the prior boot stage (in > > > a0 and a1) in registers s0 and s1. Replace one use of s1 in start.S to > > > avoid overwriting it. > > > > > > The device tree is also stored in memory to make it available to > > > u-boot > > > > nits: U-Boot >

Re: [U-Boot] [PATCH 24/30] riscv: save hart ID and device tree passed by prior boot stage

2018-10-22 Thread Bin Meng
On Sat, Oct 20, 2018 at 6:11 AM Lukas Auer wrote: > > Store the hart ID and device tree passed by the prior boot stage (in a0 > and a1) in registers s0 and s1. Replace one use of s1 in start.S to > avoid overwriting it. > > The device tree is also stored in memory to make it available to u-boot

[U-Boot] [PATCH 24/30] riscv: save hart ID and device tree passed by prior boot stage

2018-10-19 Thread Lukas Auer
Store the hart ID and device tree passed by the prior boot stage (in a0 and a1) in registers s0 and s1. Replace one use of s1 in start.S to avoid overwriting it. The device tree is also stored in memory to make it available to u-boot with the configuration CONFIG_OF_PRIOR_STAGE. Signed-off-by: