Re: [U-Boot] [PATCH 18/39] x86: Save the BIST value on reset

2014-11-08 Thread Simon Glass
On 7 November 2014 03:21, Bin Meng bmeng...@gmail.com wrote: On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: The built in self test value is available in register eax on start-up. Save it so that it can be accessed later. Unfortunately we must wait until the global_data is

Re: [U-Boot] [PATCH 18/39] x86: Save the BIST value on reset

2014-11-07 Thread Bin Meng
On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: The built in self test value is available in register eax on start-up. Save it so that it can be accessed later. Unfortunately we must wait until the global_data is available before we can do this, so there is a little bit of

[U-Boot] [PATCH 18/39] x86: Save the BIST value on reset

2014-11-06 Thread Simon Glass
The built in self test value is available in register eax on start-up. Save it so that it can be accessed later. Unfortunately we must wait until the global_data is available before we can do this, so there is a little bit of shuffling to keep it around. Signed-off-by: Simon Glass