From patchwork Thu Dec 9 19:19:26 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Abdellatif El Khlifi X-Patchwork-Id: 23 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id A0188C433EF for ; Thu, 9 Dec 2021 19:19:49 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.16240.1639077588050319137 for ; Thu, 09 Dec 2021 11:19:48 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: abdellatif.elkhlifi@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 C5BA6D6E; Thu, 9 Dec 2021 11:19:45 -0800 (PST) Received: from e121910.arm.com (unknown [10.57.6.225]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id BCF533F73B; Thu, 9 Dec 2021 11:19:44 -0800 (PST) From: abdellatif.elkhlifi@arm.com To: meta-arm@lists.yoctoproject.org, Ross.Burton@arm.com Cc: nd@arm.com, Abdellatif El Khlifi Subject: [PATCH 0/9] corstone1000: secure partitions patchset Date: Thu, 9 Dec 2021 19:19:26 +0000 Message-Id: <20211209191935.26017-1-abdellatif.elkhlifi@arm.com> X-Mailer: git-send-email 2.17.1 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 09 Dec 2021 19:19:49 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/2590 From: Abdellatif El Khlifi Adding new features to the following components: u-boot trusted-firmware-m optee-os secure-partitions Abdellatif El Khlifi (2): arm-bsp/u-boot: corstone1000: setting the boot console output arm-bsp/u-boot: corstone1000: remove the use of fdt_addr_r Satish Kumar (1): arm-bsp/trusted-firmware-m: corstone1000: Aligning with TF-M master Vishnu Banavath (6): arm-bsp/secure-partitions: add openamp rpc caller arm-bsp/optee-os: add openamp-virtio arm-bsp/secure-partitions: Add psa client definitions for ff-m arm-bsp/secure-partitions: add common service component to ipc support arm-bsp/secure-partitions: add secure storage ipc backend arm-bsp/secure-partitions: Use secure storage ipc and openamp for se_proxy .../trusted-firmware-m-corstone1000.inc | 24 +- ...-dts-setting-the-boot-console-output.patch | 33 + ...000-dts-remove-the-use-of-fdt_addr_r.patch | 34 + .../recipes-bsp/u-boot/u-boot_%.bbappend | 2 + .../corstone1000/sp_manifest_combined_se.dts | 6 + .../0009-Add-openamp-rpc-caller.patch | 1178 +++++++++++++++++ ...-add-psa-client-definitions-for-ff-m.patch | 294 ++++ ...mon-service-component-to-ipc-support.patch | 287 ++++ .../0012-Add-secure-storage-ipc-backend.patch | 514 +++++++ ...storage-ipc-and-openamp-for-se_proxy.patch | 61 + .../trusted-services/ts-corstone1000.inc | 7 +- 11 files changed, 2418 insertions(+), 22 deletions(-) create mode 100644 meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/0033-corstone1000-dts-setting-the-boot-console-output.patch create mode 100644 meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/0034-corstone1000-dts-remove-the-use-of-fdt_addr_r.patch create mode 100644 meta-arm-bsp/recipes-security/trusted-services/secure-partitions/0009-Add-openamp-rpc-caller.patch create mode 100644 meta-arm-bsp/recipes-security/trusted-services/secure-partitions/0010-add-psa-client-definitions-for-ff-m.patch create mode 100644 meta-arm-bsp/recipes-security/trusted-services/secure-partitions/0011-Add-common-service-component-to-ipc-support.patch create mode 100644 meta-arm-bsp/recipes-security/trusted-services/secure-partitions/0012-Add-secure-storage-ipc-backend.patch create mode 100644 meta-arm-bsp/recipes-security/trusted-services/secure-partitions/0013-Use-secure-storage-ipc-and-openamp-for-se_proxy.patch