Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-26 Thread Lukasz Majewski
Hi Tom, Simon, > On Wed, Sep 25, 2019 at 02:42:03PM -0600, Simon Glass wrote: > > Hi Lukasz, > > > > On Tue, 17 Sep 2019 at 15:06, Lukasz Majewski > > wrote: > > > > > > On Tue, 17 Sep 2019 14:19:33 -0500 > > > Adam Ford wrote: > > > > > > > On Tue, Sep 17, 2019 at 1:34 PM Simon Glass > >

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-25 Thread Tom Rini
On Wed, Sep 25, 2019 at 02:42:03PM -0600, Simon Glass wrote: > Hi Lukasz, > > On Tue, 17 Sep 2019 at 15:06, Lukasz Majewski wrote: > > > > On Tue, 17 Sep 2019 14:19:33 -0500 > > Adam Ford wrote: > > > > > On Tue, Sep 17, 2019 at 1:34 PM Simon Glass wrote: > > > > > > > > Hi Lukasz, > > > > > >

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-25 Thread Simon Glass
Hi Lukasz, On Tue, 17 Sep 2019 at 15:06, Lukasz Majewski wrote: > > On Tue, 17 Sep 2019 14:19:33 -0500 > Adam Ford wrote: > > > On Tue, Sep 17, 2019 at 1:34 PM Simon Glass wrote: > > > > > > Hi Lukasz, > > > > > > On Tue, 17 Sep 2019 at 00:22, Lukasz Majewski > > > wrote: > > > > > > > > Hi

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-17 Thread Lukasz Majewski
On Tue, 17 Sep 2019 14:19:33 -0500 Adam Ford wrote: > On Tue, Sep 17, 2019 at 1:34 PM Simon Glass wrote: > > > > Hi Lukasz, > > > > On Tue, 17 Sep 2019 at 00:22, Lukasz Majewski > > wrote: > > > > > > Hi Simon, > > > > > > > On Sun, 18 Aug 2019 at 19:30, Peng Fan > > > > wrote: > > > >

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-17 Thread Lukasz Majewski
Hi Simon, > Hi Lukasz, > > On Tue, 17 Sep 2019 at 00:22, Lukasz Majewski wrote: > > > > Hi Simon, > > > > > On Sun, 18 Aug 2019 at 19:30, Peng Fan wrote: > > > > > > > > > Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig > > > > > define > > > > > > > > > > This define

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-17 Thread Adam Ford
On Tue, Sep 17, 2019 at 1:34 PM Simon Glass wrote: > > Hi Lukasz, > > On Tue, 17 Sep 2019 at 00:22, Lukasz Majewski wrote: > > > > Hi Simon, > > > > > On Sun, 18 Aug 2019 at 19:30, Peng Fan wrote: > > > > > > > > > Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define > > > > > > >

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-17 Thread Simon Glass
Hi Lukasz, On Tue, 17 Sep 2019 at 00:22, Lukasz Majewski wrote: > > Hi Simon, > > > On Sun, 18 Aug 2019 at 19:30, Peng Fan wrote: > > > > > > > Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define > > > > > > > > This define indicates if DM_GPIO shall be supported in SPL. This > >

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-17 Thread Lukasz Majewski
Hi Simon, > On Sun, 18 Aug 2019 at 19:30, Peng Fan wrote: > > > > > Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define > > > > > > This define indicates if DM_GPIO shall be supported in SPL. This > > > allows proper operation of DM converted GPIO drivers in SPL, > > > which use

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-09-16 Thread Simon Glass
On Sun, 18 Aug 2019 at 19:30, Peng Fan wrote: > > > Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define > > > > This define indicates if DM_GPIO shall be supported in SPL. This allows > > proper > > operation of DM converted GPIO drivers in SPL, which use > > #if

Re: [U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-08-18 Thread Peng Fan
> Subject: [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define > > This define indicates if DM_GPIO shall be supported in SPL. This allows proper > operation of DM converted GPIO drivers in SPL, which use > #if !CONFIG_IS_ENABLED(DM_GPIO) to also support not yet DM/DTS > converted boards. >

[U-Boot] [PATCH v2 8/9] spl: Introduce SPL_DM_GPIO Kconfig define

2019-08-18 Thread Lukasz Majewski
This define indicates if DM_GPIO shall be supported in SPL. This allows proper operation of DM converted GPIO drivers in SPL, which use #if !CONFIG_IS_ENABLED(DM_GPIO) to also support not yet DM/DTS converted boards. Signed-off-by: Lukasz Majewski --- Changes in v2: - New patch