public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* Re: [edk2-devel] [edk2-platforms][PATCH V1 00/15] Platform: Add Loongson support
       [not found] <16D883EAD686EB00.30493@groups.io>
@ 2022-03-08  1:48 ` xianglai
  0 siblings, 0 replies; only message in thread
From: xianglai @ 2022-03-08  1:48 UTC (permalink / raw)
  To: devel; +Cc: leif, michael.d.kinney, 毛碧波

ping for reply.
  I submitted the code to edk2-platform to support loongson platform.But I haven't heard back,Is there something wrong with me?
edk2 related code has been submitted by lichao@loongson.cn.
  You can also view the code through the Loongson community.
  The edk2 code in Loongson community:
  https://github.com/loongson/edk2/tree/LoongArch
  The edk2-platform code in Loonson community:
  https://github.com/loongson/edk2-platforms
  The qemu code in Loongson community:
  https://github.com/loongson/qemu/tree/tcg-dev
  The LoongArch Documentation in Loongson community:
  https://github.com/loongson/LoongArch-Documentation/tree/main/docs
If there is a problem with my submission process, please provide some suggestions.
Thank you very much.
xianglai li.

&gt; -----原始邮件-----
&gt; 发件人: xianglai <lixianglai@loongson.cn>
&gt; 发送时间: 2022-03-02 16:44:32 (星期三)
&gt; 收件人: devel@edk2.groups.io
&gt; 抄送: 
&gt; 主题: [edk2-devel] [edk2-platforms][PATCH V1 00/15] Platform: Add Loongson support
&gt; 
&gt; The uploaded code generates firmware to support Linux launching on the LoongArch platform under qemu,
&gt; So it will run in a virtual machine.
&gt; 
&gt;  LoongArch is the general processor architecture of Loongson.
&gt;  You can get the latest LoongArch documents or LoongArch tools at https://github.com/loongson/.
&gt; 
&gt; xianglai li (15):
&gt;   Platform/Loongson: Add Serial Port library
&gt;   Platform/Loongson: Support SEC And Add Readme.md
&gt;   Platform/Loongson: Add PeiServicesTablePointerLib.
&gt;   Platform/Loongson: Add QemuFwCfgLib.
&gt;   Platform/Loongson: Add BpiLib.
&gt;   Platform/Loongson: Add MmuLib.
&gt;   Platform/Loongson: Add StableTimerLib.
&gt;   Platform/Loongson: Support PEI phase.
&gt;   Platform/Loongson: Add CPU DXE driver.
&gt;   Platform/Loongson: Add PciCpuIoDxe driver.
&gt;   Platform/Loongson:  Add timer Dxe driver.
&gt;   Platform/Loongson: Add RealTime Clock lib.
&gt;   Platform/Loongson: Add Platform Boot Manager Lib.
&gt;   Platform/Loongson: Add Reset System Lib.
&gt;   Platform/Loongson: Support Dxe
&gt; 
&gt;  .../LoongArchQemuPkg/Drivers/CpuDxe/CpuDxe.c  | 382 +++++++++
&gt;  .../LoongArchQemuPkg/Drivers/CpuDxe/CpuDxe.h  | 153 ++++
&gt;  .../Drivers/CpuDxe/CpuDxe.inf                 |  56 ++
&gt;  .../Drivers/CpuDxe/LoongArch64/Exception.c    | 337 ++++++++
&gt;  .../Drivers/CpuDxe/LoongArch64/Fpu.S          |  67 ++
&gt;  .../Drivers/CpuDxe/LoongArch64/LoongArch.S    | 288 +++++++
&gt;  .../Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.c       | 548 ++++++++++++
&gt;  .../Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.h       | 219 +++++
&gt;  .../Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.inf     |  40 +
&gt;  .../Drivers/StableTimerDxe/Timer.c            | 405 +++++++++
&gt;  .../Drivers/StableTimerDxe/Timer.h            | 166 ++++
&gt;  .../Drivers/StableTimerDxe/TimerDxe.inf       |  40 +
&gt;  .../Include/IndustryStandard/QemuFwCfg.h      |  95 +++
&gt;  .../LoongArchQemuPkg/Include/Library/Bpi.h    |  77 ++
&gt;  .../LoongArchQemuPkg/Include/Library/Cpu.h    | 344 ++++++++
&gt;  .../LoongArchQemuPkg/Include/Library/MmuLib.h |  85 ++
&gt;  .../Include/Library/QemuFwCfgLib.h            | 179 ++++
&gt;  .../Include/Library/StableTimer.h             |  42 +
&gt;  .../Include/LoongArchAsmMacro.h               |  23 +
&gt;  .../Include/LoongArchQemuPlatform.h           | 103 +++
&gt;  .../LoongArchQemuPkg/Library/BpiLib/Bpi.c     | 492 +++++++++++
&gt;  .../Library/BpiLib/BpiLib.inf                 |  38 +
&gt;  .../LsRealTimeClockLib/LsRealTimeClock.h      |  41 +
&gt;  .../LsRealTimeClockLib/LsRealTimeClockLib.c   | 343 ++++++++
&gt;  .../LsRealTimeClockLib/LsRealTimeClockLib.inf |  41 +
&gt;  .../LoongArchQemuPkg/Library/MmuLib/Mmu.S     |  35 +
&gt;  .../Library/MmuLib/MmuBaseLib.inf             |  35 +
&gt;  .../Library/MmuLib/MmuBaseLibPei.inf          |  45 +
&gt;  .../Library/MmuLib/MmuLibCore.c               | 790 ++++++++++++++++++
&gt;  .../Library/MmuLib/MmuLibCore.h               |  39 +
&gt;  .../Library/MmuLib/MmuLibCorePei.c            | 237 ++++++
&gt;  .../LoongArchQemuPkg/Library/MmuLib/mmu.h     | 101 +++
&gt;  .../LoongArchQemuPkg/Library/MmuLib/page.h    | 267 ++++++
&gt;  .../LoongArchQemuPkg/Library/MmuLib/pte.h     |  57 ++
&gt;  .../PeiServicesTablePointer.c                 |  78 ++
&gt;  .../PeiServicesTablePointerLib.inf            |  32 +
&gt;  .../PlatformBootManagerLib/PlatformBm.c       | 761 +++++++++++++++++
&gt;  .../PlatformBootManagerLib/PlatformBm.h       | 126 +++
&gt;  .../PlatformBootManagerLib.inf                |  78 ++
&gt;  .../PlatformBootManagerLib/QemuKernel.c       | 449 ++++++++++
&gt;  .../Library/QemuFwCfgLib/QemuFwCfg.c          | 119 +++
&gt;  .../Library/QemuFwCfgLib/QemuFwCfgLib.c       | 477 +++++++++++
&gt;  .../Library/QemuFwCfgLib/QemuFwCfgLib.inf     |  44 +
&gt;  .../QemuFwCfgLib/QemuFwCfgLibInternal.h       |  64 ++
&gt;  .../Library/ResetSystemLib/ResetSystemLib.c   | 155 ++++
&gt;  .../Library/ResetSystemLib/ResetSystemLib.inf |  40 +
&gt;  .../Library/SerialPortLib/SerialPortLib.c     | 614 ++++++++++++++
&gt;  .../Library/SerialPortLib/SerialPortLib.inf   |  36 +
&gt;  .../Library/StableTimerLib/Count.S            |  26 +
&gt;  .../Library/StableTimerLib/TimerLib.c         | 262 ++++++
&gt;  .../Library/StableTimerLib/TimerLib.inf       |  28 +
&gt;  .../Loongson/LoongArchQemuPkg/Loongson.dec    |  72 ++
&gt;  .../Loongson/LoongArchQemuPkg/Loongson.dsc    | 578 +++++++++++++
&gt;  .../Loongson/LoongArchQemuPkg/Loongson.fdf    | 345 ++++++++
&gt;  .../LoongArchQemuPkg/Loongson.fdf.inc         |  62 ++
&gt;  .../LoongArchQemuPkg/PlatformPei/Fv.c         |  61 ++
&gt;  .../LoongArchQemuPkg/PlatformPei/MemDetect.c  | 116 +++
&gt;  .../LoongArchQemuPkg/PlatformPei/Platform.c   | 264 ++++++
&gt;  .../LoongArchQemuPkg/PlatformPei/Platform.h   |  87 ++
&gt;  .../PlatformPei/PlatformPei.inf               |  72 ++
&gt;  Platform/Loongson/LoongArchQemuPkg/Readme.md  |  53 ++
&gt;  .../LoongArchQemuPkg/Sec/LoongArch64/Start.S  |  76 ++
&gt;  .../Loongson/LoongArchQemuPkg/Sec/SecMain.c   | 510 +++++++++++
&gt;  .../Loongson/LoongArchQemuPkg/Sec/SecMain.inf |  49 ++
&gt;  .../LoongArchQemuPkg/VarStore.fdf.inc         |  64 ++
&gt;  Readme.md                                     |   9 +
&gt;  66 files changed, 12017 insertions(+)
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/CpuDxe.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/CpuDxe.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/CpuDxe.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/LoongArch64/Exception.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/LoongArch64/Fpu.S
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/CpuDxe/LoongArch64/LoongArch.S
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/PciCpuIo2Dxe/PciCpuIo2Dxe.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/StableTimerDxe/Timer.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/StableTimerDxe/Timer.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Drivers/StableTimerDxe/TimerDxe.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/IndustryStandard/QemuFwCfg.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/Library/Bpi.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/Library/Cpu.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/Library/MmuLib.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/Library/QemuFwCfgLib.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/Library/StableTimer.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/LoongArchAsmMacro.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Include/LoongArchQemuPlatform.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/BpiLib/Bpi.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/BpiLib/BpiLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/LsRealTimeClockLib/LsRealTimeClock.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/LsRealTimeClockLib/LsRealTimeClockLib.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/LsRealTimeClockLib/LsRealTimeClockLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/Mmu.S
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/MmuBaseLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/MmuBaseLibPei.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/MmuLibCore.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/MmuLibCore.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/MmuLibCorePei.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/mmu.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/page.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/MmuLib/pte.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PlatformBootManagerLib/PlatformBm.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PlatformBootManagerLib/PlatformBm.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/PlatformBootManagerLib/QemuKernel.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/QemuFwCfgLib/QemuFwCfg.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/QemuFwCfgLib/QemuFwCfgLib.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/QemuFwCfgLib/QemuFwCfgLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/QemuFwCfgLib/QemuFwCfgLibInternal.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/ResetSystemLib/ResetSystemLib.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/ResetSystemLib/ResetSystemLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/SerialPortLib/SerialPortLib.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/SerialPortLib/SerialPortLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/StableTimerLib/Count.S
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/StableTimerLib/TimerLib.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Library/StableTimerLib/TimerLib.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Loongson.dec
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Loongson.dsc
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Loongson.fdf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Loongson.fdf.inc
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/PlatformPei/Fv.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/PlatformPei/MemDetect.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/PlatformPei/Platform.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/PlatformPei/Platform.h
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/PlatformPei/PlatformPei.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Readme.md
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Sec/LoongArch64/Start.S
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Sec/SecMain.c
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/Sec/SecMain.inf
&gt;  create mode 100644 Platform/Loongson/LoongArchQemuPkg/VarStore.fdf.inc
&gt; 
&gt; -- 
&gt; 2.27.0
&gt; 
&gt; 
&gt; 
&gt; 
&gt; 
</lixianglai@loongson.cn>

本邮件及其附件含有龙芯中科的商业秘密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制或散发)本邮件及其附件中的信息。如果您错收本邮件,请您立即电话或邮件通知发件人并删除本邮件。 
This email and its attachments contain confidential information from Loongson Technology , which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this email in error, please notify the sender by phone or email immediately and delete it. 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-08  1:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <16D883EAD686EB00.30493@groups.io>
2022-03-08  1:48 ` [edk2-devel] [edk2-platforms][PATCH V1 00/15] Platform: Add Loongson support xianglai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox