Message ID | 20230828013224.669433-3-Henry.Wang@arm.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show
Return-Path: <xen-devel-bounces@lists.xenproject.org> 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 14F15C83F11 for <xen-devel@archiver.kernel.org>; Mon, 28 Aug 2023 01:33:04 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.591208.923593 (Exim 4.92) (envelope-from <xen-devel-bounces@lists.xenproject.org>) id 1qaR7X-0001EB-Hs; Mon, 28 Aug 2023 01:32:47 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 591208.923593; Mon, 28 Aug 2023 01:32:47 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from <xen-devel-bounces@lists.xenproject.org>) id 1qaR7X-0001E1-Ed; Mon, 28 Aug 2023 01:32:47 +0000 Received: by outflank-mailman (input) for mailman id 591208; Mon, 28 Aug 2023 01:32:45 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from <SRS0=nwb3=EN=arm.com=Henry.Wang@srs-se1.protection.inumbo.net>) id 1qaR7V-0000xW-S6 for xen-devel@lists.xenproject.org; Mon, 28 Aug 2023 01:32:45 +0000 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by se1-gles-flk1.inumbo.com (Halon) with ESMTP id c921712e-4542-11ee-9b0c-b553b5be7939; Mon, 28 Aug 2023 03:32:44 +0200 (CEST) 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 DFDFD2F4; Sun, 27 Aug 2023 18:33:23 -0700 (PDT) Received: from a015966.shanghai.arm.com (a015966.shanghai.arm.com [10.169.190.5]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 840BD3F740; Sun, 27 Aug 2023 18:32:40 -0700 (PDT) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion <xen-devel.lists.xenproject.org> List-Unsubscribe: <https://lists.xenproject.org/mailman/options/xen-devel>, <mailto:xen-devel-request@lists.xenproject.org?subject=unsubscribe> List-Post: <mailto:xen-devel@lists.xenproject.org> List-Help: <mailto:xen-devel-request@lists.xenproject.org?subject=help> List-Subscribe: <https://lists.xenproject.org/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xenproject.org?subject=subscribe> Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" <xen-devel-bounces@lists.xenproject.org> X-Inumbo-ID: c921712e-4542-11ee-9b0c-b553b5be7939 From: Henry Wang <Henry.Wang@arm.com> To: xen-devel@lists.xenproject.org Cc: Henry Wang <Henry.Wang@arm.com>, Stefano Stabellini <sstabellini@kernel.org>, Julien Grall <julien@xen.org>, Bertrand Marquis <bertrand.marquis@arm.com>, Wei Chen <wei.chen@arm.com>, Penny Zheng <penny.zheng@arm.com>, Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>, Julien Grall <jgrall@amazon.com> Subject: [PATCH v6 02/13] xen/arm: Introduce CONFIG_MMU Kconfig option Date: Mon, 28 Aug 2023 09:32:13 +0800 Message-Id: <20230828013224.669433-3-Henry.Wang@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230828013224.669433-1-Henry.Wang@arm.com> References: <20230828013224.669433-1-Henry.Wang@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit |
Series |
xen/arm: Split MMU code as the prepration of MPU work
|
expand
|
diff --git a/xen/arch/arm/Kconfig b/xen/arch/arm/Kconfig index 57bd1d01d7..eb0413336b 100644 --- a/xen/arch/arm/Kconfig +++ b/xen/arch/arm/Kconfig @@ -59,6 +59,9 @@ config PADDR_BITS default 40 if ARM_PA_BITS_40 default 48 if ARM_64 +config MMU + def_bool y + source "arch/Kconfig" config ACPI