Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-21 Thread Michal Simek
čt 21. 3. 2024 v 8:55 odesílatel Lukas Funke < lukas.funke-...@weidmueller.com> napsal: > On 20.03.2024 16:49, Andre Przywara wrote: > > On Wed, 20 Mar 2024 11:33:16 -0400 > > Tom Rini wrote: > > > > Hi, > > > >> On Wed, Mar 20, 2024 at 08:52:30PM +0530, Devarsh Thakkar wrote: > >>> Hi Tom,

Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-21 Thread Lukas Funke
On 20.03.2024 16:49, Andre Przywara wrote: On Wed, 20 Mar 2024 11:33:16 -0400 Tom Rini wrote: Hi, On Wed, Mar 20, 2024 at 08:52:30PM +0530, Devarsh Thakkar wrote: Hi Tom, Lukas, Thanks for the patch Lukas. On 20/03/24 20:00, Tom Rini wrote: On Wed, Mar 20, 2024 at 02:19:26PM +0100,

Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-20 Thread Andre Przywara
On Wed, 20 Mar 2024 11:33:16 -0400 Tom Rini wrote: Hi, > On Wed, Mar 20, 2024 at 08:52:30PM +0530, Devarsh Thakkar wrote: > > Hi Tom, Lukas, > > > > Thanks for the patch Lukas. > > > > On 20/03/24 20:00, Tom Rini wrote: > > > On Wed, Mar 20, 2024 at 02:19:26PM +0100,

Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-20 Thread Tom Rini
On Wed, Mar 20, 2024 at 08:52:30PM +0530, Devarsh Thakkar wrote: > Hi Tom, Lukas, > > Thanks for the patch Lukas. > > On 20/03/24 20:00, Tom Rini wrote: > > On Wed, Mar 20, 2024 at 02:19:26PM +0100, lukas.funke-...@weidmueller.com > > wrote: > > > >> From: Lukas Funke > >> > >> Some

Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-20 Thread Devarsh Thakkar
Hi Tom, Lukas, Thanks for the patch Lukas. On 20/03/24 20:00, Tom Rini wrote: > On Wed, Mar 20, 2024 at 02:19:26PM +0100, lukas.funke-...@weidmueller.com > wrote: > >> From: Lukas Funke >> >> Some architectures use spl_board_init() in their architecture specific >> implementation. Board

Re: [PATCH 1/2] spl: Introduce architecture specific init function

2024-03-20 Thread Tom Rini
On Wed, Mar 20, 2024 at 02:19:26PM +0100, lukas.funke-...@weidmueller.com wrote: > From: Lukas Funke > > Some architectures use spl_board_init() in their architecture specific > implementation. Board developers should be able to add board specific > implementation via spl_board_init(). Hence,

[PATCH 1/2] spl: Introduce architecture specific init function

2024-03-20 Thread lukas . funke-oss
From: Lukas Funke Some architectures use spl_board_init() in their architecture specific implementation. Board developers should be able to add board specific implementation via spl_board_init(). Hence, introduce a spl_arch_init() method which is called right before spl_board_init() for