Re: [U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-08-09 Thread Simon Glass
Applied to u-boot-dm/master. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-07-28 Thread Simon Glass
Hi Albert, On 23 July 2014 14:31, Tom Rini wrote: > On Wed, Jul 23, 2014 at 06:16:52AM -0600, Simon Glass wrote: >> +Albert, Tom >> >> Hi Albert, >> >> On 11 July 2014 11:44, Jeroen Hofstee wrote: >> > Hello Simon, >> > >> > >> > On 11-07-14 06:23, Simon Glass wrote: >> >> >> >> At present arm d

Re: [U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-07-23 Thread Tom Rini
On Wed, Jul 23, 2014 at 06:16:52AM -0600, Simon Glass wrote: > +Albert, Tom > > Hi Albert, > > On 11 July 2014 11:44, Jeroen Hofstee wrote: > > Hello Simon, > > > > > > On 11-07-14 06:23, Simon Glass wrote: > >> > >> At present arm defines CONFIG_SYS_GENERIC_GLOBAL_DATA, meaning that > >> the gl

Re: [U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-07-23 Thread Simon Glass
+Albert, Tom Hi Albert, On 11 July 2014 11:44, Jeroen Hofstee wrote: > Hello Simon, > > > On 11-07-14 06:23, Simon Glass wrote: >> >> At present arm defines CONFIG_SYS_GENERIC_GLOBAL_DATA, meaning that >> the global_data pointer is set up in board_init_f(). However it is >> actually set up befor

Re: [U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-07-11 Thread Jeroen Hofstee
Hello Simon, On 11-07-14 06:23, Simon Glass wrote: At present arm defines CONFIG_SYS_GENERIC_GLOBAL_DATA, meaning that the global_data pointer is set up in board_init_f(). However it is actually set up before this, it just isn't zeroed. If we zero the global data before calling board_init_f() t

[U-Boot] [PATCH v3 2/9] arm: Set up global data before board_init_f()

2014-07-10 Thread Simon Glass
At present arm defines CONFIG_SYS_GENERIC_GLOBAL_DATA, meaning that the global_data pointer is set up in board_init_f(). However it is actually set up before this, it just isn't zeroed. If we zero the global data before calling board_init_f() then we don't need to define CONFIG_SYS_GENERIC_GLOBAL_