Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-12-05 Thread sjg
Hi Andy, On Wed, 5 Dec 2018 at 07:01, Andy Shevchenko wrote: > > On Wed, Dec 05, 2018 at 05:55:37AM -0700, Simon Glass wrote: > > On Tue, 27 Nov 2018 at 09:03, Andy Shevchenko > > wrote: > > > On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > > > > The rest of similar functions are

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-12-05 Thread Simon Glass
Hi Andy, On Wed, 5 Dec 2018 at 07:01, Andy Shevchenko wrote: > > On Wed, Dec 05, 2018 at 05:55:37AM -0700, Simon Glass wrote: > > On Tue, 27 Nov 2018 at 09:03, Andy Shevchenko > > wrote: > > > On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > > > > The rest of similar functions are

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-12-05 Thread Andy Shevchenko
On Wed, Dec 05, 2018 at 05:55:37AM -0700, Simon Glass wrote: > On Tue, 27 Nov 2018 at 09:03, Andy Shevchenko > wrote: > > On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > > The rest of similar functions are operate on top of current console device > > and > > do not have such param

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-12-05 Thread Simon Glass
HI Andy, On Tue, 27 Nov 2018 at 09:03, Andy Shevchenko wrote: > > On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > > Hi Andy, > > > > On Tue, 20 Nov 2018 at 14:52, Andy Shevchenko > > wrote: > > > > > > In some cases it would be good to know the settings, such as parity, > > > of c

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-12-03 Thread Andy Shevchenko
On Tue, Nov 27, 2018 at 06:02:54PM +0200, Andy Shevchenko wrote: > On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > > On Tue, 20 Nov 2018 at 14:52, Andy Shevchenko > > wrote: > > > > > > In some cases it would be good to know the settings, such as parity, > > > of current serial cons

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-11-27 Thread Andy Shevchenko
On Mon, Nov 26, 2018 at 06:02:28PM -0700, Simon Glass wrote: > Hi Andy, > > On Tue, 20 Nov 2018 at 14:52, Andy Shevchenko > wrote: > > > > In some cases it would be good to know the settings, such as parity, > > of current serial console. One example might be an ACPI SPCR table > > to generate us

Re: [U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-11-26 Thread Simon Glass
Hi Andy, On Tue, 20 Nov 2018 at 14:52, Andy Shevchenko wrote: > > In some cases it would be good to know the settings, such as parity, > of current serial console. One example might be an ACPI SPCR table > to generate using these parameters. > > Signed-off-by: Andy Shevchenko > --- > drivers/se

[U-Boot] [PATCH v3 1/7] dm: serial: Add ->getconfig() callback

2018-11-20 Thread Andy Shevchenko
In some cases it would be good to know the settings, such as parity, of current serial console. One example might be an ACPI SPCR table to generate using these parameters. Signed-off-by: Andy Shevchenko --- drivers/serial/sandbox.c | 13 + drivers/serial/serial-uclass.c | 16 ++