[U-Boot] [PATCH v2 20/50] x86: Add support for starting from SPL/TPL

2019-04-25 Thread Simon Glass
When a previous phase of U-Boot has run we need to adjust the init of subsequent states to avoid messing up the CPU state. Add a new version of the start logic for SPL, when it boots from TPL (start_from tpl.c) and a new version for U-Boot when it boots from SPL. Signed-off-by: Simon Glass ---

Re: [U-Boot] [PATCH v2 20/50] x86: Add support for starting from SPL/TPL

2019-05-01 Thread Bin Meng
On Fri, Apr 26, 2019 at 12:00 PM Simon Glass wrote: > > When a previous phase of U-Boot has run we need to adjust the init of > subsequent states to avoid messing up the CPU state. > > Add a new version of the start logic for SPL, when it boots from TPL > (start_from tpl.c) and a new version for U

Re: [U-Boot] [PATCH v2 20/50] x86: Add support for starting from SPL/TPL

2019-05-01 Thread Bin Meng
On Wed, May 1, 2019 at 9:03 PM Bin Meng wrote: > > On Fri, Apr 26, 2019 at 12:00 PM Simon Glass wrote: > > > > When a previous phase of U-Boot has run we need to adjust the init of > > subsequent states to avoid messing up the CPU state. > > > > Add a new version of the start logic for SPL, when