Re: [U-Boot] [PATCH v2 1/8] POST/arm: adaptations needed for POST on ARM to work

2011-09-02 Thread Valentin Longchamp
On 09/02/2011 12:11 AM, Mike Frysinger wrote: > On Thursday, September 01, 2011 11:39:20 Valentin Longchamp wrote: >> arch/arm/include/asm/global_data.h |4 >> arch/arm/lib/board.c |2 ++ > > these two are fine for arm > >> include/post.h |8 +++

Re: [U-Boot] [PATCH v2 1/8] POST/arm: adaptations needed for POST on ARM to work

2011-09-01 Thread Mike Frysinger
On Thursday, September 01, 2011 11:39:20 Valentin Longchamp wrote: > arch/arm/include/asm/global_data.h |4 > arch/arm/lib/board.c |2 ++ these two are fine for arm > include/post.h |8 but this looks like a board-specific issue and not

[U-Boot] [PATCH v2 1/8] POST/arm: adaptations needed for POST on ARM to work

2011-09-01 Thread Valentin Longchamp
For post to run on ARM, 3 things are needed: - post_log_word to be defined in gd - a post.h include in arch/arm/lib/board.c - most ARM boards will set POST_WORD in RAM, so we introduce a way to define post_word_load/store as externs in post.h that then can be defined in board specific files. This