From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: hpe.com, ip: 148.163.143.35, mailfrom: prvs=01695bccdc=abner.chang@hpe.com) Received: from mx0b-002e3701.pphosted.com (mx0b-002e3701.pphosted.com [148.163.143.35]) by groups.io with SMTP; Sun, 22 Sep 2019 18:02:34 -0700 Received: from pps.filterd (m0134423.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x8N116jO017331 for ; Mon, 23 Sep 2019 01:02:34 GMT Received: from g9t5009.houston.hpe.com (g9t5009.houston.hpe.com [15.241.48.73]) by mx0b-002e3701.pphosted.com with ESMTP id 2v5sxd7gvn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Mon, 23 Sep 2019 01:02:33 +0000 Received: from g4t3433.houston.hpecorp.net (g4t3433.houston.hpecorp.net [16.208.49.245]) by g9t5009.houston.hpe.com (Postfix) with ESMTP id 540575C for ; Mon, 23 Sep 2019 01:02:33 +0000 (UTC) Received: from UB16Abner.asiapacific.hpqcorp.net (ub16abner.asiapacific.hpqcorp.net [15.119.209.44]) by g4t3433.houston.hpecorp.net (Postfix) with ESMTP id 39AD345; Mon, 23 Sep 2019 01:02:32 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: abner.chang@hpe.com Subject: [edk2-staging/RISC-V-V2 PATCH v2 01/29] RiscVPkg: RISC-V processor package. Date: Mon, 23 Sep 2019 08:31:26 +0800 Message-Id: <1569198715-31552-2-git-send-email-abner.chang@hpe.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1569198715-31552-1-git-send-email-abner.chang@hpe.com> References: <1569198715-31552-1-git-send-email-abner.chang@hpe.com> X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-22_09:2019-09-20,2019-09-22 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 lowpriorityscore=0 adultscore=0 bulkscore=0 suspectscore=1 spamscore=0 malwarescore=0 mlxlogscore=714 clxscore=1015 phishscore=0 impostorscore=0 mlxscore=0 priorityscore=1501 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-1908290000 definitions=main-1909230006 - Add RiscVPkg package which provides RISC-V processor related drivers and libraries. - Support RISC-V OpenSBI and RISC-V platforms Signed-off-by: Abner Chang --- RiscVPkg/RiscVPkg.dec | 27 +++++++++++++++++++++++++++ RiscVPkg/RiscVPkg.uni | 13 +++++++++++++ RiscVPkg/RiscVPkgExtra.uni | 13 +++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 RiscVPkg/RiscVPkg.dec create mode 100644 RiscVPkg/RiscVPkg.uni create mode 100644 RiscVPkg/RiscVPkgExtra.uni diff --git a/RiscVPkg/RiscVPkg.dec b/RiscVPkg/RiscVPkg.dec new file mode 100644 index 0000000..74314e8 --- /dev/null +++ b/RiscVPkg/RiscVPkg.dec @@ -0,0 +1,27 @@ +## @file RiscVPkg.dec +# This Package provides UEFI RISC-V modules and libraries. +# +# Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +[Defines] + DEC_SPECIFICATION = 0x0001001b + PACKAGE_NAME = RiscVPkg + PACKAGE_UNI_FILE = RiscVPkg.uni + PACKAGE_GUID = 993C7CAC-C87C-4F08-A2CF-AD3AABA859D1 + PACKAGE_VERSION = 1.0 + +[Includes] + Include + opensbi # OpebSBI header file reference ("include/sbi/...") + opensbi/include # Header file reference from opensbi files, ("sbi/...") + opensbi/lib/utils/libfdt + +[Guids] + gUefiRiscVPkgTokenSpaceGuid = { 0x4261e9c8, 0x52c0, 0x4b34, { 0x85, 0x3d, 0x48, 0x46, 0xea, 0xd3, 0xb7, 0x2c}} + +[UserExtensions.TianoCore."ExtraFiles"] + RiscVPkgExtra.uni diff --git a/RiscVPkg/RiscVPkg.uni b/RiscVPkg/RiscVPkg.uni new file mode 100644 index 0000000..5ec7a99 --- /dev/null +++ b/RiscVPkg/RiscVPkg.uni @@ -0,0 +1,13 @@ +// /** @file +// RISC-V Package Localized Strings and Content. +// +// Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
+// +// SPDX-License-Identifier: BSD-2-Clause-Patent +// +// **/ + +#string STR_PACKAGE_ABSTRACT #language en-US "Provides UEFI compatible RISC-V modules and libraries" + +#string STR_PACKAGE_DESCRIPTION #language en-US "This Package provides UEFI compatible RISC-V modules and libraries." + diff --git a/RiscVPkg/RiscVPkgExtra.uni b/RiscVPkg/RiscVPkgExtra.uni new file mode 100644 index 0000000..b50a6b4 --- /dev/null +++ b/RiscVPkg/RiscVPkgExtra.uni @@ -0,0 +1,13 @@ +// /** @file +// RISC-V Package Localized Strings and Content. +// +// Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
+// +// SPDX-License-Identifier: BSD-2-Clause-Patent +// +// **/ + +#string STR_PROPERTIES_PACKAGE_NAME +#language en-US +"RiscV package" + -- 2.7.4