[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 0/3] Enable R52 support for the first chunk of MPU support
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>
- Date: Thu, 19 Jun 2025 12:31:49 +0100
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=HooSTqeLCbJkoAt7mZmcyMQ5aEtx66wS1a/XY63qipo=; b=dWSzOC+Dv1xXi93ESJZjD9wWZp7MFpq2iclRwo2O9sDuK0nz6rroHuiLdFa5PGK7JJig5zvFp7Tu+2OdssRbC/0NQ4VULIhAf/17icvH2rZ30MsJs2dtiYFHIT3ujU8MUgOs6636+Kw04BHHXhNzT0c8XZhQhD1HmR5yDBEQU6Dnse64UZW3OLgTH24AQZjNhLC9rZQ76NjocOlMSMtu3fgPK9642IQdU6dhH3bqPPj/jP9WS4WpdgqtCWMyh+ezeLzM55305yllObTI3HUBfBgcez/Z4MBfF72weRnOhpdNLEkZhPgw9707a2nsP38/7sLKM+fGvkPq9mjZ+NHQ8w==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=A0UZHZf2gAPbF96u4ixmErxzCZ45bh0YEyHASc1j5hOym2RjGuIU1lZY1sRI2iFYROPaBOF/MIjdurnJI5v+EJI+sPsG2wB/clYYjAelBEKsjywjLoLUB3MslUgE9epGBE3yOvwAHz12O7xRWV1Ks7oCyeB4HpTcRJG8qAwmRtmjCZNLiD9C7hlYq+DeqgigAhg/DknxDssYjB2hfp7s4FS69rkaYg9CV0LOJcuTEPu9zVMAjyiholNn1aPYeqiHgmmMtMKCl1oVceUhYPY5Q9IKvslYuwgj4QnM03ogQ16aq2X20X34w+M+g5kqjxOIZJQBcYWwUz7JrM8176kmTg==
- Cc: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, "Volodymyr Babchuk" <Volodymyr_Babchuk@xxxxxxxx>
- Delivery-date: Thu, 19 Jun 2025 11:32:06 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Hi all,
This patch serie enables R52 support based on Luca's series.
"[PATCH v6 0/6] First chunk for Arm R82 and MPU support".
Changes from :-
v1 - Changes mentioned in individual patches
v2 - Split "arm/mpu: Provide access to the MPU region from the C code"
into 4 patches.
v3 - Patches 1,2 are merged. Patch 3 is dropped.
v4 - Add R-b, A-b, T-b tags to the individual patches.
Ayan Kumar Halder (3):
arm/mpu: Move the functions to arm64 specific files
arm/mpu: Define arm32 system registers
arm/mpu: Enable read/write to protection regions for arm32
xen/arch/arm/include/asm/mpu.h | 2 -
xen/arch/arm/include/asm/mpu/cpregs.h | 68 ++++++++++-
xen/arch/arm/mpu/Makefile | 2 +
xen/arch/arm/mpu/arm32/Makefile | 1 +
xen/arch/arm/mpu/arm32/mm.c | 164 ++++++++++++++++++++++++++
xen/arch/arm/mpu/arm64/Makefile | 1 +
xen/arch/arm/mpu/arm64/mm.c | 130 ++++++++++++++++++++
xen/arch/arm/mpu/mm.c | 119 -------------------
8 files changed, 365 insertions(+), 122 deletions(-)
create mode 100644 xen/arch/arm/mpu/arm32/Makefile
create mode 100644 xen/arch/arm/mpu/arm32/mm.c
create mode 100644 xen/arch/arm/mpu/arm64/Makefile
create mode 100644 xen/arch/arm/mpu/arm64/mm.c
--
2.25.1
|