[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Minios-devel] [UNIKRAFT PATCH V4 0/6] Enable solo5 platform support


  • To: Felipe Huici <Felipe.Huici@xxxxxxxxx>, "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: "Haibo Xu (Arm Technology China)" <Haibo.Xu@xxxxxxx>
  • Date: Mon, 26 Aug 2019 23:46:43 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=F8+bwD/9U2YCtwrpXJ6+4aQxgpu5zFV17LsBA7x1MZw=; b=DZavnyC52cKRfK3HkrZhbQ6TqH4BvBfOOVqP+WF2fOZ/wVFyda03TUFJZ9WII0QE9nKuvQKhRT2BgGFqZlk0XyaG4Z9O/ZLzpgpwKxSWVfl5nr56fGyGsHgqAewESk3vWoi1ewOQdEq1SSaae/aOy2rJZQxnNUaZID3iM4biNdjMK6hvrr/Nm9/9SOJy6HWleJXVDXMjC2OjURGAV6MpbSdEzgbCzyBB5n2CW3awOyaZ+PD5KocI/rbOAa8AAD/J76bEKhhGYKjB7GkvGQ4Gr94QvpC7ad0SRQ2Ap80VR31y5kHynjgWV+0+PP5Eek8zJTxAmudvBepxVS9rfhr8oQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Qg08AxNV01l5oocW4BfGiw2eM8eQi1/0yTeyaDxPAqhghL13uP2/LF1fm3QkXMftD4rb0Rs89WrriWgWpxf/c+9ilaSxT0MxJwZrjt9IQocPNaKCctjRVgxh/tu2pFaEhI4SI6ppi2VpXVLcEpOfjHCV7QoTUrmrkSN30B/8mGHIFf46HFy1c7UBc9851ZqS51L9AU3Tsh/Euh8u848Cq+DRSsiqLpvBNIAJxmGy4o/fDmuj6sWjr2c6G1kxZxjprep9ptxk2extoodCIi3CH/qucfWGpRlZF65yvqZtL6tFSOCXAVxvySWNFoBEX7gtYbhB84wbtJhSSnT5XPalFw==
  • Authentication-results: spf=temperror (sender IP is 63.35.35.123) smtp.mailfrom=arm.com; lists.xen.org; dkim=pass (signature was verified) header.d=armh.onmicrosoft.com;lists.xen.org; dmarc=temperror action=none header.from=arm.com;
  • Authentication-results-original: spf=none (sender IP is ) smtp.mailfrom=Haibo.Xu@xxxxxxx;
  • Cc: Simon Kuenzer <simon.kuenzer@xxxxxxxxx>
  • Delivery-date: Mon, 26 Aug 2019 23:47:03 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Original-authentication-results: spf=none (sender IP is ) smtp.mailfrom=Haibo.Xu@xxxxxxx;
  • Thread-index: AQHVW+49/5EOvdxhsUSqa1VKcebUiqcNjOaAgACMO4A=
  • Thread-topic: [UNIKRAFT PATCH V4 0/6] Enable solo5 platform support

Thanks!

On 2019/8/26 23:24, Felipe Huici wrote:
> Hi Haibo,
>
> This series looks good. I'll likely fix a few typos on upstream and push it 
> today/tomorrow.
>
> Thanks again for providing solo5 support!
>
> -- Felipe
>
> On 26.08.19, 11:11, "Haibo Xu" <haibo.xu@xxxxxxx> wrote:
>
>     Hi,
>
>     As discussed with Simon and Ricardo in the email loop,
>     Solo5(formerly known as ukvm) would make most sense as
>     another and new platform library for the unikraft, this
>     patch set will try to enable the solo5 platform support.
>
>     Currently, the implementation has been tested with the
>     hello-world application on both x86-64 and arm64 machine.
>
>     v1->v2:
>             - add a menu option to solo5 platform that enable
>               build of solo5 monitor;
>             - change the solo5 src codes download method, and
>               use the unikraft build system "fetch" and "extract"
>               method.
>     v2->v3:
>             - put the solo5 as an external platform.
>     v3->v4:
>             - fix typo in the document;
>             - trigger a Make error when LIBUKSCHED is selected.
>
>     Regards,
>
>     Haibo
>
>     Haibo Xu (6):
>       external plat: Add basic documentations.
>       external plat: Add the solo5 API declaration in solo5.h
>       external plat: Add solo5 platform Config.uk file
>       external plat: Add solo5 platform link files.
>       external plat: Add solo5 platform Makefile.uk
>       external plat: Add platform interface implementation
>
>      CODING_STYLE.md       |   4 +
>      CONTRIBUTING.md       |   4 +
>      COPYING.md            |  46 +++++++
>      Config.uk             |  17 +++
>      Linker.uk             |  61 +++++++++
>      MAINTAINERS.md        |  12 ++
>      Makefile.uk           |  61 +++++++++
>      README.md             |  51 ++++++++
>      console.c             |  45 +++++++
>      include/solo5/setup.h |  49 ++++++++
>      include/solo5/solo5.h | 280 ++++++++++++++++++++++++++++++++++++++++++
>      io.c                  |  41 +++++++
>      irq.c                 |  28 +++++
>      lcpu.c                |  75 +++++++++++
>      link64.lds            | 119 ++++++++++++++++++
>      memory.c              |  81 ++++++++++++
>      setup.c               |  42 +++++++
>      shutdown.c            |  37 ++++++
>      time.c                |  56 +++++++++
>      19 files changed, 1109 insertions(+)
>      create mode 100644 CODING_STYLE.md
>      create mode 100644 CONTRIBUTING.md
>      create mode 100644 COPYING.md
>      create mode 100644 Config.uk
>      create mode 100644 Linker.uk
>      create mode 100644 MAINTAINERS.md
>      create mode 100644 Makefile.uk
>      create mode 100644 README.md
>      create mode 100644 console.c
>      create mode 100644 include/solo5/setup.h
>      create mode 100644 include/solo5/solo5.h
>      create mode 100644 io.c
>      create mode 100644 irq.c
>      create mode 100644 lcpu.c
>      create mode 100644 link64.lds
>      create mode 100644 memory.c
>      create mode 100644 setup.c
>      create mode 100644 shutdown.c
>      create mode 100644 time.c
>
>     --
>     2.17.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.
_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.