[edk2-devel] [PATCH v3 0/2] Dynamically build UARTs info in ACPI

Sunny Wang posted 2 patches 2 years, 11 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
.../RaspberryPi/AcpiTables/AcpiTables.inf     |   8 +-
.../RaspberryPi/AcpiTables/Dbg2MiniUart.aslc  |  81 +++++++++
.../AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc}  |  30 +---
.../RaspberryPi/AcpiTables/SpcrMiniUart.aslc  |  91 ++++++++++
.../AcpiTables/{Spcr.aslc => SpcrPl011.aslc}  |  10 +-
Platform/RaspberryPi/AcpiTables/Uart.asl      | 158 +++++++++++++-----
.../RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c |  48 +++++-
.../Drivers/ConfigDxe/ConfigDxe.inf           |   1 +
.../IndustryStandard/RpiDebugPort2Table.h     |  33 ++++
Platform/RaspberryPi/Include/UartSelection.h  |  20 +++
Platform/RaspberryPi/RPi3/RPi3.dsc            |   8 +
Platform/RaspberryPi/RPi4/RPi4.dsc            |   8 +
Platform/RaspberryPi/RaspberryPi.dec          |   1 +
13 files changed, 413 insertions(+), 84 deletions(-)
create mode 100644 Platform/RaspberryPi/AcpiTables/Dbg2MiniUart.aslc
rename Platform/RaspberryPi/AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc} (72%)
create mode 100644 Platform/RaspberryPi/AcpiTables/SpcrMiniUart.aslc
rename Platform/RaspberryPi/AcpiTables/{Spcr.aslc => SpcrPl011.aslc} (87%)
create mode 100644 Platform/RaspberryPi/Include/IndustryStandard/RpiDebugPort2Table.h
create mode 100644 Platform/RaspberryPi/Include/UartSelection.h
[edk2-devel] [PATCH v3 0/2] Dynamically build UARTs info in ACPI
Posted by Sunny Wang 2 years, 11 months ago
In v3: Address comments given by Jeremy and Matio on v2.
In v2: Address comments given by Pete on v1.

Dynamically build UARTs info in ACPI so that it can match the UART
related settings defined in config.txt 

Sunny Wang (2):
  Platform/RaspberryPi: Dynamically build UARTs info in ACPI
  Platform/RaspberryPi: Enable Bluetooth and UART in Windows OS

 .../RaspberryPi/AcpiTables/AcpiTables.inf     |   8 +-
 .../RaspberryPi/AcpiTables/Dbg2MiniUart.aslc  |  81 +++++++++
 .../AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc}  |  30 +---
 .../RaspberryPi/AcpiTables/SpcrMiniUart.aslc  |  91 ++++++++++
 .../AcpiTables/{Spcr.aslc => SpcrPl011.aslc}  |  10 +-
 Platform/RaspberryPi/AcpiTables/Uart.asl      | 158 +++++++++++++-----
 .../RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c |  48 +++++-
 .../Drivers/ConfigDxe/ConfigDxe.inf           |   1 +
 .../IndustryStandard/RpiDebugPort2Table.h     |  33 ++++
 Platform/RaspberryPi/Include/UartSelection.h  |  20 +++
 Platform/RaspberryPi/RPi3/RPi3.dsc            |   8 +
 Platform/RaspberryPi/RPi4/RPi4.dsc            |   8 +
 Platform/RaspberryPi/RaspberryPi.dec          |   1 +
 13 files changed, 413 insertions(+), 84 deletions(-)
 create mode 100644 Platform/RaspberryPi/AcpiTables/Dbg2MiniUart.aslc
 rename Platform/RaspberryPi/AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc} (72%)
 create mode 100644 Platform/RaspberryPi/AcpiTables/SpcrMiniUart.aslc
 rename Platform/RaspberryPi/AcpiTables/{Spcr.aslc => SpcrPl011.aslc} (87%)
 create mode 100644 Platform/RaspberryPi/Include/IndustryStandard/RpiDebugPort2Table.h
 create mode 100644 Platform/RaspberryPi/Include/UartSelection.h

-- 
2.31.0.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#75866): https://edk2.groups.io/g/devel/message/75866
Mute This Topic: https://groups.io/mt/83205743/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [edk2-devel] [PATCH v3 0/2] Dynamically build UARTs info in ACPI
Posted by Samer El-Haj-Mahmoud 2 years, 11 months ago
CCing the maintainers and reviewers

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Sunny
> Wang via groups.io
> Sent: Monday, May 31, 2021 4:23 AM
> To: devel@edk2.groups.io
> Cc: Sunny Wang <Sunny.Wang@arm.com>
> Subject: [edk2-devel] [PATCH v3 0/2] Dynamically build UARTs info in ACPI
>
> In v3: Address comments given by Jeremy and Matio on v2.
> In v2: Address comments given by Pete on v1.
>
> Dynamically build UARTs info in ACPI so that it can match the UART
> related settings defined in config.txt
>
> Sunny Wang (2):
>   Platform/RaspberryPi: Dynamically build UARTs info in ACPI
>   Platform/RaspberryPi: Enable Bluetooth and UART in Windows OS
>
>  .../RaspberryPi/AcpiTables/AcpiTables.inf     |   8 +-
>  .../RaspberryPi/AcpiTables/Dbg2MiniUart.aslc  |  81 +++++++++
>  .../AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc}  |  30 +---
>  .../RaspberryPi/AcpiTables/SpcrMiniUart.aslc  |  91 ++++++++++
>  .../AcpiTables/{Spcr.aslc => SpcrPl011.aslc}  |  10 +-
>  Platform/RaspberryPi/AcpiTables/Uart.asl      | 158 +++++++++++++-----
>  .../RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c |  48 +++++-
>  .../Drivers/ConfigDxe/ConfigDxe.inf           |   1 +
>  .../IndustryStandard/RpiDebugPort2Table.h     |  33 ++++
>  Platform/RaspberryPi/Include/UartSelection.h  |  20 +++
>  Platform/RaspberryPi/RPi3/RPi3.dsc            |   8 +
>  Platform/RaspberryPi/RPi4/RPi4.dsc            |   8 +
>  Platform/RaspberryPi/RaspberryPi.dec          |   1 +
>  13 files changed, 413 insertions(+), 84 deletions(-)
>  create mode 100644 Platform/RaspberryPi/AcpiTables/Dbg2MiniUart.aslc
>  rename Platform/RaspberryPi/AcpiTables/{Dbg2.aslc => Dbg2Pl011.aslc}
> (72%)
>  create mode 100644 Platform/RaspberryPi/AcpiTables/SpcrMiniUart.aslc
>  rename Platform/RaspberryPi/AcpiTables/{Spcr.aslc => SpcrPl011.aslc} (87%)
>  create mode 100644
> Platform/RaspberryPi/Include/IndustryStandard/RpiDebugPort2Table.h
>  create mode 100644 Platform/RaspberryPi/Include/UartSelection.h
>
> --
> 2.31.0.windows.1
>
>
>
> 
>

IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#75967): https://edk2.groups.io/g/devel/message/75967
Mute This Topic: https://groups.io/mt/83205743/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-