All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] x86: serial: Use NS16550_DYNAMIC in Slim Bootloader
@ 2019-12-18  5:56 Park, Aiden
  2020-02-04  3:02 ` Bin Meng
  0 siblings, 1 reply; 3+ messages in thread
From: Park, Aiden @ 2019-12-18  5:56 UTC (permalink / raw)
  To: u-boot

Slim Bootloader provides serial port info in its HOB to support
both IO or MMIO serial ports, but it's controlled by SYS_NS16550_MEM32
or SYS_NS16550_PORT_MAPPED in U-Boot.
To support both serial port configurations dynamically at runtime,
Slim Bootloader serial driver leverages NS16550_DYNAMIC.

Aiden Park (2):
  x86: serial: Use NS16550_DYNAMIC in Slim Bootloader driver
  doc: intel: Update serial driver changes in slimbootloader.rst

 arch/x86/cpu/slimbootloader/serial.c |  5 ++++
 doc/board/intel/slimbootloader.rst   | 35 +++++++---------------------
 include/configs/slimbootloader.h     | 13 -----------
 3 files changed, 13 insertions(+), 40 deletions(-)

-- 
2.20.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 0/2] x86: serial: Use NS16550_DYNAMIC in Slim Bootloader
  2019-12-18  5:56 [PATCH 0/2] x86: serial: Use NS16550_DYNAMIC in Slim Bootloader Park, Aiden
@ 2020-02-04  3:02 ` Bin Meng
  2020-02-04  3:13   ` Park, Aiden
  0 siblings, 1 reply; 3+ messages in thread
From: Bin Meng @ 2020-02-04  3:02 UTC (permalink / raw)
  To: u-boot

Hi Aiden,

On Wed, Dec 18, 2019 at 1:56 PM Park, Aiden <aiden.park@intel.com> wrote:
>
> Slim Bootloader provides serial port info in its HOB to support
> both IO or MMIO serial ports, but it's controlled by SYS_NS16550_MEM32
> or SYS_NS16550_PORT_MAPPED in U-Boot.
> To support both serial port configurations dynamically at runtime,
> Slim Bootloader serial driver leverages NS16550_DYNAMIC.
>
> Aiden Park (2):
>   x86: serial: Use NS16550_DYNAMIC in Slim Bootloader driver
>   doc: intel: Update serial driver changes in slimbootloader.rst
>
>  arch/x86/cpu/slimbootloader/serial.c |  5 ++++
>  doc/board/intel/slimbootloader.rst   | 35 +++++++---------------------
>  include/configs/slimbootloader.h     | 13 -----------
>  3 files changed, 13 insertions(+), 40 deletions(-)

One issue that needs your attention.

It seems you have configured git email to send from different name
other than that in your SoB tag:

See the following git log:
commit a6302b7085ce12cb967234e19f2ac2c2320528f1
Author: Park, Aiden <aiden.park@intel.com>
Date:   Wed Dec 18 05:56:29 2019 +0000

    doc: intel: Update serial driver changes in slimbootloader.rst

    Now, Slim Bootloader uses NS16550_DYNAMIC to support serial port
    configuration at runtime, so no more code change is required.
    Therefore, remove unnecessary steps and fix minor typo.

    Signed-off-by: Aiden Park <aiden.park@intel.com>

checkpatch complains that:
WARNING: Missing Signed-off-by: line by nominal patch author 'Park,
Aiden <aiden.park@intel.com>'

Could you please fix your GIT settings so that both are "Aiden Park
<aiden.park@intel.com>"?

Regards,
Bin

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 0/2] x86: serial: Use NS16550_DYNAMIC in Slim Bootloader
  2020-02-04  3:02 ` Bin Meng
@ 2020-02-04  3:13   ` Park, Aiden
  0 siblings, 0 replies; 3+ messages in thread
From: Park, Aiden @ 2020-02-04  3:13 UTC (permalink / raw)
  To: u-boot

Hi Bin,

> On Feb 3, 2020, at 7:03 PM, Bin Meng <bmeng.cn@gmail.com> wrote:
> 
> Hi Aiden,
> 
>> On Wed, Dec 18, 2019 at 1:56 PM Park, Aiden <aiden.park@intel.com> wrote:
>> 
>> Slim Bootloader provides serial port info in its HOB to support
>> both IO or MMIO serial ports, but it's controlled by SYS_NS16550_MEM32
>> or SYS_NS16550_PORT_MAPPED in U-Boot.
>> To support both serial port configurations dynamically at runtime,
>> Slim Bootloader serial driver leverages NS16550_DYNAMIC.
>> 
>> Aiden Park (2):
>>  x86: serial: Use NS16550_DYNAMIC in Slim Bootloader driver
>>  doc: intel: Update serial driver changes in slimbootloader.rst
>> 
>> arch/x86/cpu/slimbootloader/serial.c |  5 ++++
>> doc/board/intel/slimbootloader.rst   | 35 +++++++---------------------
>> include/configs/slimbootloader.h     | 13 -----------
>> 3 files changed, 13 insertions(+), 40 deletions(-)
> 
> One issue that needs your attention.
> 
> It seems you have configured git email to send from different name
> other than that in your SoB tag:
> 
> See the following git log:
> commit a6302b7085ce12cb967234e19f2ac2c2320528f1
> Author: Park, Aiden <aiden.park@intel.com>
> Date:   Wed Dec 18 05:56:29 2019 +0000
> 
>    doc: intel: Update serial driver changes in slimbootloader.rst
> 
>    Now, Slim Bootloader uses NS16550_DYNAMIC to support serial port
>    configuration at runtime, so no more code change is required.
>    Therefore, remove unnecessary steps and fix minor typo.
> 
>    Signed-off-by: Aiden Park <aiden.park@intel.com>
> 
> checkpatch complains that:
> WARNING: Missing Signed-off-by: line by nominal patch author 'Park,
> Aiden <aiden.park@intel.com>'
> 
> Could you please fix your GIT settings so that both are "Aiden Park
> <aiden.park@intel.com>"?
> 
Thanks for giving me heads-up. Let me double check my configuration for further commits. Thanks again.

> Regards,
> Bin

Best Regards,
Aiden

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-02-04  3:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18  5:56 [PATCH 0/2] x86: serial: Use NS16550_DYNAMIC in Slim Bootloader Park, Aiden
2020-02-04  3:02 ` Bin Meng
2020-02-04  3:13   ` Park, Aiden

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.