<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p><font size="2">Hi Maintainers,</font></p>
    <p><font size="2">Could you help review this patch set?</font><br>
    </p>
    <div class="moz-signature"
      signature-switch-id="2e88f073-5b99-463d-b3d6-5fcd484ef10f">
      <div style="color:grey;font-size:11px">Thanks,<br>
        Chao<br>
        --------</div>
    </div>
    <div class="moz-cite-prefix">在 2022/12/14 16:36, Chao Li 写道:<br>
    </div>
    <blockquote type="cite" cite="mid:17309C0C24BFB374.23954@groups.io">
      <pre class="moz-quote-pre" wrap="">LoongArch64 support was merged into edk2 and edk2-platforms, enable it
in edk2-test now.

BZ: <a class="moz-txt-link-freetext" href="https://bugzilla.tianocore.org/show_bug.cgi?id=4192">https://bugzilla.tianocore.org/show_bug.cgi?id=4192</a>

Cc: G Edhaya Chandran <a class="moz-txt-link-rfc2396E" href="mailto:Edhaya.Chandran@arm.com"><Edhaya.Chandran@arm.com></a>
Cc: Barton Gao <a class="moz-txt-link-rfc2396E" href="mailto:gaojie@byosoft.com.cn"><gaojie@byosoft.com.cn></a>
Cc: Carolyn Gjertsen <a class="moz-txt-link-rfc2396E" href="mailto:Carolyn.Gjertsen@amd.com"><Carolyn.Gjertsen@amd.com></a>
Cc: Samer El-Haj-Mahmoud <a class="moz-txt-link-rfc2396E" href="mailto:Samer.El-Haj-Mahmoud@arm.com"><Samer.El-Haj-Mahmoud@arm.com></a>
Cc: Eric Jin <a class="moz-txt-link-rfc2396E" href="mailto:eric.jin@intel.com"><eric.jin@intel.com></a>
Cc: Supreeth Venkatesh <a class="moz-txt-link-rfc2396E" href="mailto:Supreeth.Venkatesh@amd.com"><Supreeth.Venkatesh@amd.com></a>
Signed-off-by: Chao Li <a class="moz-txt-link-rfc2396E" href="mailto:lichao@loongson.cn"><lichao@loongson.cn></a>

Chao Li (2):
  uefi-sct/SctPkg: Add LoongArch64 platform support
  uefi-sct/SctPkg: Enable LoongArch64 building

 .../Application/InstallSct/InstallSctDef.h    |   4 +
 .../Library/SctLib/LoongArch64/SctLibPlat.h   |  32 ++
 .../Library/SctLib/LoongArch64/initplat.c     |  45 +++
 uefi-sct/SctPkg/Library/SctLib/SctLib.inf     |   6 +
 .../SCRT/SCRTApp/LoongArch64/GoVirtual.S      |  41 +++
 .../SCRT/SCRTApp/LoongArch64/VirtualMemory.c  | 177 ++++++++++++
 uefi-sct/SctPkg/SCRT/SCRTApp/SCRTApp.inf      |   5 +
 .../SCRT/SCRTDriver/LoongArch64/Debug.c       |  81 ++++++
 .../SctPkg/SCRT/SCRTDriver/LoongArch64/Dump.c |  68 +++++
 .../SctPkg/SCRT/SCRTDriver/LoongArch64/Io.c   | 136 +++++++++
 .../SctPkg/SCRT/SCRTDriver/SCRTDriver.inf     |   6 +
 .../BlackBoxTest/DebugSupportBBTest.inf       |   6 +
 .../DebugSupportBBTestCacheFunction.c         | 136 +++++++++
 ...ugSupportBBTestExceptionCallbackFunction.c | 273 ++++++++++++++++++
 .../BlackBoxTest/LoongArch64/PlatformIsa.c    |  29 ++
 .../Usb2Hc/BlackBoxTest/Usb2HcTest.inf        |   4 +
 .../BlackBoxTest/LoongArch64/TimerInterrupt.c |  38 +++
 .../Protocol/UsbHc/BlackBoxTest/UsbHcTest.inf |   4 +
 .../SCT/Framework/ENTS/EasLib/EntsLib.inf     |   5 +
 .../ENTS/EasLib/LoongArch64/EntsLibPlat.h     |  56 ++++
 .../ENTS/EasLib/LoongArch64/InitPlat.c        |  55 ++++
 .../SctPkg/Tools/Source/GenBin/GNUmakefile    |   4 +
 uefi-sct/SctPkg/UEFI/IHV_SCT.dsc              |  12 +-
 uefi-sct/SctPkg/UEFI/Protocol/DebugSupport.h  | 101 ++++++-
 uefi-sct/SctPkg/UEFI/UEFI_SCT.dsc             |  15 +-
 uefi-sct/SctPkg/build.sh                      |  10 +-
 26 files changed, 1343 insertions(+), 6 deletions(-)
 create mode 100644 uefi-sct/SctPkg/Library/SctLib/LoongArch64/SctLibPlat.h
 create mode 100644 uefi-sct/SctPkg/Library/SctLib/LoongArch64/initplat.c
 create mode 100644 uefi-sct/SctPkg/SCRT/SCRTApp/LoongArch64/GoVirtual.S
 create mode 100644 uefi-sct/SctPkg/SCRT/SCRTApp/LoongArch64/VirtualMemory.c
 create mode 100644 uefi-sct/SctPkg/SCRT/SCRTDriver/LoongArch64/Debug.c
 create mode 100644 uefi-sct/SctPkg/SCRT/SCRTDriver/LoongArch64/Dump.c
 create mode 100644 uefi-sct/SctPkg/SCRT/SCRTDriver/LoongArch64/Io.c
 create mode 100644 uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DebugSupport/BlackBoxTest/LoongArch64/DebugSupportBBTestCacheFunction.c
 create mode 100644 uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DebugSupport/BlackBoxTest/LoongArch64/DebugSupportBBTestExceptionCallbackFunction.c
 create mode 100644 uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DebugSupport/BlackBoxTest/LoongArch64/PlatformIsa.c
 create mode 100644 uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/UsbHc/BlackBoxTest/LoongArch64/TimerInterrupt.c
 create mode 100644 uefi-sct/SctPkg/TestInfrastructure/SCT/Framework/ENTS/EasLib/LoongArch64/EntsLibPlat.h
 create mode 100644 uefi-sct/SctPkg/TestInfrastructure/SCT/Framework/ENTS/EasLib/LoongArch64/InitPlat.c

</pre>
    </blockquote>
  </body>
</html>


<div width="1" style="color:white;clear:both">_._,_._,_</div>
<hr>


Groups.io Links:<p>


  
    You receive all messages sent to this group.
  
  


<p>
<a target="_blank" href="https://edk2.groups.io/g/devel/message/97966">View/Reply Online (#97966)</a> |


  

|

  <a target="_blank" href="https://groups.io/mt/95662762/1813853">Mute This Topic</a>

| <a href="https://edk2.groups.io/g/devel/post">New Topic</a><br>




<a href="https://edk2.groups.io/g/devel/editsub/1813853">Your Subscription</a> |
<a href="mailto:devel+owner@edk2.groups.io">Contact Group Owner</a> |

<a href="https://edk2.groups.io/g/devel/unsub">Unsubscribe</a>

 [edk2-devel-archive@redhat.com]<br>
<div width="1" style="color:white;clear:both">_._,_._,_</div>