From patchwork Mon Mar 20 06:27:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiamei Xie X-Patchwork-Id: 13180753 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 lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9361FC7618A for ; Mon, 20 Mar 2023 06:28:10 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.511722.790890 (Exim 4.92) (envelope-from ) id 1pe8zj-0001AP-JO; Mon, 20 Mar 2023 06:27:47 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 511722.790890; Mon, 20 Mar 2023 06:27:47 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1pe8zj-0001AI-Gn; Mon, 20 Mar 2023 06:27:47 +0000 Received: by outflank-mailman (input) for mailman id 511722; Mon, 20 Mar 2023 06:27:45 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1pe8zh-0001AC-Fz for xen-devel@lists.xenproject.org; Mon, 20 Mar 2023 06:27:45 +0000 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by se1-gles-sth1.inumbo.com (Halon) with ESMTP id 50998608-c6e8-11ed-87f5-c1b5be75604c; Mon, 20 Mar 2023 07:27:42 +0100 (CET) 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 4A5C1FEC; Sun, 19 Mar 2023 23:28:24 -0700 (PDT) Received: from comhpcalt.shanghai.arm.com (comhpcalt.shanghai.arm.com [10.169.190.22]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id B43F63F885; Sun, 19 Mar 2023 23:27:38 -0700 (PDT) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 50998608-c6e8-11ed-87f5-c1b5be75604c From: "jiamei.xie" To: xen-devel@lists.xenproject.org Cc: wei.chen@arm.com, jiamei.xie@arm.com, sstabellini@kernel.org Subject: [ImageBuilder][PATCH v3 0/2] uboot-script-gen: Add support for static heap and shared memory Date: Mon, 20 Mar 2023 06:27:16 +0000 Message-Id: <20230320062718.365896-1-jiamei.xie@arm.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Hi all, This patch series is to enable to set the device tree for static heap and static shared memory by uboot-script-gen Changes from v2: - Remove "domid" parameter - Use lower capital letters for local variables - add Reviewed-by and Acked-by in XEN_STATIC_HEAP commit message Changes from v1: - Rather than two separate properties and just use one like follows: Change DOMU_SHARED_MEM[0]="0x50000000 0x6000000 0x10000000" DOMU_SHARED_MEM_ID[0]="my-shared-mem-0" to DOMU_SHARED_MEM[0]="my-shared-mem-0 0x50000000 0x6000000 0x10000000" - Use split_value function instead of opencoding it. jiamei Xie (1): uboot-script-gen: Add XEN_STATIC_HEAP jiamei.xie (1): uboot-script-gen: add support for static shared memory README.md | 21 ++++++++++++++++++ scripts/uboot-script-gen | 46 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+)