Re: [PATCH v1 1/3] dm: serial: Add clock member to struct serial_device_info

2020-04-15 Thread Bin Meng
On Wed, Apr 15, 2020 at 10:19 PM Bin Meng wrote: > > On Fri, Feb 28, 2020 at 7:41 AM Simon Glass wrote: > > > > On Thu, 27 Feb 2020 at 07:22, Andy Shevchenko > > wrote: > > > > > > Some callers of serial_getinfo() would like to know the UART base > > > clock speed in order to make decision what

Re: [PATCH v1 1/3] dm: serial: Add clock member to struct serial_device_info

2020-04-15 Thread Bin Meng
On Fri, Feb 28, 2020 at 7:41 AM Simon Glass wrote: > > On Thu, 27 Feb 2020 at 07:22, Andy Shevchenko > wrote: > > > > Some callers of serial_getinfo() would like to know the UART base > > clock speed in order to make decision what to pass to OS in some > > cases. In particular, ACPI SPCR table

Re: [PATCH v1 1/3] dm: serial: Add clock member to struct serial_device_info

2020-02-27 Thread Simon Glass
On Thu, 27 Feb 2020 at 07:22, Andy Shevchenko wrote: > > Some callers of serial_getinfo() would like to know the UART base > clock speed in order to make decision what to pass to OS in some > cases. In particular, ACPI SPCR table expects only certain base > clock speed and thus we have to act

[PATCH v1 1/3] dm: serial: Add clock member to struct serial_device_info

2020-02-27 Thread Andy Shevchenko
Some callers of serial_getinfo() would like to know the UART base clock speed in order to make decision what to pass to OS in some cases. In particular, ACPI SPCR table expects only certain base clock speed and thus we have to act accordingly. Signed-off-by: Andy Shevchenko ---