Re: [U-Boot] [PATCH v2 5/5] x86: Switch to using generic global_data setup

2015-08-11 Thread Bin Meng
On Tue, Aug 11, 2015 at 10:44 AM, Simon Glass s...@chromium.org wrote: There is quite a bit of assembler code that can be removed if we use the generic global_data setup. Less arch-specific code makes it easier to add new features and maintain the start-up code. Drop the unneeded code and

Re: [U-Boot] [PATCH v2 5/5] x86: Switch to using generic global_data setup

2015-08-11 Thread Simon Glass
On 11 August 2015 at 00:28, Bin Meng bmeng...@gmail.com wrote: On Tue, Aug 11, 2015 at 10:44 AM, Simon Glass s...@chromium.org wrote: There is quite a bit of assembler code that can be removed if we use the generic global_data setup. Less arch-specific code makes it easier to add new features

[U-Boot] [PATCH v2 5/5] x86: Switch to using generic global_data setup

2015-08-10 Thread Simon Glass
There is quite a bit of assembler code that can be removed if we use the generic global_data setup. Less arch-specific code makes it easier to add new features and maintain the start-up code. Drop the unneeded code and adjust the hooks in board_f.c to cope. Signed-off-by: Simon Glass