From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.33297.1623052469012689606 for ; Mon, 07 Jun 2021 00:54:29 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: sunny.wang@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 959A631B; Mon, 7 Jun 2021 00:54:28 -0700 (PDT) Received: from localhost.localdomain (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id C290B3F719; Mon, 7 Jun 2021 00:54:26 -0700 (PDT) From: "Sunny Wang" To: devel@edk2.groups.io Cc: Sunny Wang , Samer El-Haj-Mahmoud , Sami Mujawar , Jeremy Linton , Pete Batard , Ard Biesheuvel , Mario Balanica Subject: [PATCH v4 0/3] Dynamically build UARTs info in ACPI Date: Mon, 7 Jun 2021 15:53:36 +0800 Message-Id: <20210607075339.342-1-Sunny.Wang@arm.com> X-Mailer: git-send-email 2.31.0.windows.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable In v4: Address comments given by Mario on v3. In v3: Address comments given by Jeremy, Mario, and Pete 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=20 Cc: Samer El-Haj-Mahmoud Cc: Sami Mujawar Cc: Jeremy Linton Cc: Pete Batard Cc: Ard Biesheuvel Cc: Mario Balanica Sunny Wang (3): Platform/RaspberryPi: Dynamically build UARTs info in ACPI Silicon/Broadcom/Bcm283x: Clean up GpioPinSet function Platform/RaspberryPi: Enable Bluetooth and UART in Windows OS .../RaspberryPi/AcpiTables/AcpiTables.inf | 8 +- .../RaspberryPi/AcpiTables/Dbg2MiniUart.aslc | 81 +++++++++ .../AcpiTables/{Dbg2.aslc =3D> Dbg2Pl011.aslc} | 30 +--- .../RaspberryPi/AcpiTables/SpcrMiniUart.aslc | 91 ++++++++++ .../AcpiTables/{Spcr.aslc =3D> SpcrPl011.aslc} | 10 +- Platform/RaspberryPi/AcpiTables/Uart.asl | 155 ++++++++++++------ .../RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c | 70 +++++++- .../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 + .../Bcm283x/Include/Library/GpioLib.h | 10 +- .../Bcm283x/Library/GpioLib/GpioLib.c | 9 +- 15 files changed, 436 insertions(+), 99 deletions(-) create mode 100644 Platform/RaspberryPi/AcpiTables/Dbg2MiniUart.aslc rename Platform/RaspberryPi/AcpiTables/{Dbg2.aslc =3D> Dbg2Pl011.aslc} (= 72%) create mode 100644 Platform/RaspberryPi/AcpiTables/SpcrMiniUart.aslc rename Platform/RaspberryPi/AcpiTables/{Spcr.aslc =3D> SpcrPl011.aslc} (= 87%) create mode 100644 Platform/RaspberryPi/Include/IndustryStandard/RpiDebu= gPort2Table.h create mode 100644 Platform/RaspberryPi/Include/UartSelection.h --=20 2.31.0.windows.1