Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-11-02 Thread Wolfgang Denk
Dear Vabhav, In message you wrote: > > > "enable" means we have all required information needed to initialize them, > > if we need them. The need arises only when someone wants to transfer > > data over that UART. If nobody uses the UArt, there is no need to ever > > initialize it. > On

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-25 Thread Bin Meng
Hi Simon, On Fri, Oct 19, 2018 at 11:26 AM Simon Glass wrote: > > Hi Bin, > > On 15 October 2018 at 06:28, Bin Meng wrote: > > On Mon, Oct 15, 2018 at 8:15 PM Vabhav Sharma wrote: > >> > >> Serial subsystem search and probe only one first serial > >> device and unable to use remaining

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-25 Thread Vabhav Sharma
> -Original Message- > From: s...@google.com On Behalf Of Simon Glass > Sent: Friday, October 19, 2018 8:56 AM > To: Bin Meng > Cc: Vabhav Sharma ; U-Boot Mailing List b...@lists.denx.de>; u-boot...@lists.denx.de; Andreas Dannenberg > ; Masahiro Yamada > ; Stefan Roese > Subject: Re:

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-18 Thread Simon Glass
Hi Bin, On 15 October 2018 at 06:28, Bin Meng wrote: > On Mon, Oct 15, 2018 at 8:15 PM Vabhav Sharma wrote: >> >> Serial subsystem search and probe only one first serial >> device and unable to use remaining available UART devices >> >> This patch changes the logic to probe all available serial

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-16 Thread Vabhav Sharma
> -Original Message- > From: Bin Meng > Sent: Monday, October 15, 2018 5:58 PM > To: Vabhav Sharma > Cc: U-Boot Mailing List ; u-boot...@lists.denx.de; > Simon Glass ; dannenb...@ti.com; Masahiro Yamada > ; Stefan Roese > Subject: Re: [PATCH] drivers: serial: probe all serial devices

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-15 Thread Bin Meng
On Mon, Oct 15, 2018 at 8:15 PM Vabhav Sharma wrote: > > Serial subsystem search and probe only one first serial > device and unable to use remaining available UART devices > > This patch changes the logic to probe all available serial devices > using platform data or device tree in DM model in

[U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-15 Thread Vabhav Sharma
Serial subsystem search and probe only one first serial device and unable to use remaining available UART devices This patch changes the logic to probe all available serial devices using platform data or device tree in DM model in order to use all UART devices Signed-off-by: Vabhav Sharma ---