From nobody Thu May 2 23:21:53 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=arm.com ARC-Seal: i=1; a=rsa-sha256; t=1615212024; cv=none; d=zohomail.com; s=zohoarc; b=KNc+iutcUgq2TW/vM5GaCZaMPRsAyvO0wm7EPh/OERR889doM+p6myCCk9Y8UR9LoXMrhKZvMyPOdkvyubbOxCUVwGw0aJRWl3wyJPcupvAGjsUXeYgVCi60uSveNBAJ5GLSzigtHj1WbE+GrVPm+osHwtLryFUXbE05AxbaLxs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1615212024; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=3MPBh9cKyQnAXr+EUS0RjiVT4zeP+5G9cMw3yUeb6uE=; b=TZd6x4QXp+4rbyUR/fv8bBL7aKZvZwEMryTcEibBfBUcLh/UvqImfKw9qz9v9LxOKPUu1xlLjKJrTD3nL75y3dsFtfVDJAHwxgUTM0L/DmxigH5UlUURzb6r1QghfSiNHjP2djLXBjt7SE9xDvt/KKPoHan7aeDQwZsz2IvjeKw= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1615212024728875.9009620267657; Mon, 8 Mar 2021 06:00:24 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.94956.179012 (Exim 4.92) (envelope-from ) id 1lJGQL-0007Lw-3Y; Mon, 08 Mar 2021 13:59:53 +0000 Received: by outflank-mailman (output) from mailman id 94956.179012; Mon, 08 Mar 2021 13:59:53 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1lJGQL-0007Lp-0n; Mon, 08 Mar 2021 13:59:53 +0000 Received: by outflank-mailman (input) for mailman id 94956; Mon, 08 Mar 2021 13:59:51 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1lJGQJ-0007Lk-FW for xen-devel@lists.xenproject.org; Mon, 08 Mar 2021 13:59:51 +0000 Received: from foss.arm.com (unknown [217.140.110.172]) by us1-rack-iad1.inumbo.com (Halon) with ESMTP id 020ac16d-6d52-4705-8f07-7b6e38ae5686; Mon, 08 Mar 2021 13:59:50 +0000 (UTC) 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 F40F231B; Mon, 8 Mar 2021 05:59:49 -0800 (PST) Received: from e123311-lin.arm.com (unknown [10.57.16.174]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4D2563F73C; Mon, 8 Mar 2021 05:59:47 -0800 (PST) X-Outflank-Mailman: Message body and most headers restored to incoming version 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: 020ac16d-6d52-4705-8f07-7b6e38ae5686 From: Michal Orzel To: xen-devel@lists.xenproject.org Cc: Stefano Stabellini , Julien Grall , Volodymyr Babchuk , Andrew Cooper , George Dunlap , Ian Jackson , Jan Beulich , Wei Liu , bertrand.marquis@arm.com Subject: [PATCH v2] arm: Add Kconfig entry to select CONFIG_DTB_FILE Date: Mon, 8 Mar 2021 14:59:37 +0100 Message-Id: <20210308135937.1692-1-michal.orzel@arm.com> X-Mailer: git-send-email 2.29.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Currently in order to link existing DTB into Xen image we need to either specify option CONFIG_DTB_FILE on the command line or manually add it into .config. Add Kconfig entry: CONFIG_DTB_FILE to be able to provide the path to DTB we want to embed into Xen image. If no path provided - the dtb will not be embedded. Signed-off-by: Michal Orzel --- xen/arch/arm/Makefile | 4 +--- xen/common/Kconfig | 8 ++++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/xen/arch/arm/Makefile b/xen/arch/arm/Makefile index 16e6523e2c..0f3e99d075 100644 --- a/xen/arch/arm/Makefile +++ b/xen/arch/arm/Makefile @@ -68,7 +68,7 @@ extra-y +=3D $(TARGET_SUBARCH)/head.o =20 #obj-bin-y +=3D ....o =20 -ifdef CONFIG_DTB_FILE +ifneq ($(CONFIG_DTB_FILE),"") obj-y +=3D dtb.o AFLAGS-y +=3D -DCONFIG_DTB_FILE=3D\"$(CONFIG_DTB_FILE)\" endif @@ -137,8 +137,6 @@ asm-offsets.s: $(TARGET_SUBARCH)/asm-offsets.c xen.lds: xen.lds.S $(CPP) -P $(a_flags) -MQ $@ -o $@ $< =20 -dtb.o: $(CONFIG_DTB_FILE) - .PHONY: clean clean:: rm -f asm-offsets.s xen.lds diff --git a/xen/common/Kconfig b/xen/common/Kconfig index eb953d171e..a4c8d09edf 100644 --- a/xen/common/Kconfig +++ b/xen/common/Kconfig @@ -400,6 +400,14 @@ config DOM0_MEM =20 Leave empty if you are not sure what to specify. =20 +config DTB_FILE + string "Absolute path to device tree blob" + depends on ARM + ---help--- + When using a bootloader that has no device tree support or when there + is no bootloader at all, use this option to specify the absolute path + to a device tree that will be linked directly inside Xen binary. + config TRACEBUFFER bool "Enable tracing infrastructure" if EXPERT default y --=20 2.29.0