[PATCH v1 0/3] Enable R52 support for the first chunk of MPU support

Ayan Kumar Halder posted 3 patches 4 months, 4 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20250604174311.754899-1-ayan.kumar.halder@amd.com
There is a newer version of this series
xen/arch/arm/arm32/asm-offsets.c         |  6 ++
xen/arch/arm/arm32/mpu/head.S            | 57 +++++++++++++++++++
xen/arch/arm/include/asm/arm32/mpu.h     | 30 ++++++++--
xen/arch/arm/include/asm/arm64/mpu.h     |  6 --
xen/arch/arm/include/asm/mpu.h           |  8 ++-
xen/arch/arm/include/asm/mpu/cpregs.h    | 72 +++++++++++++++++++++++-
xen/arch/arm/include/asm/mpu/regions.inc |  8 ++-
xen/arch/arm/mpu/mm.c                    | 33 +++++++++--
8 files changed, 201 insertions(+), 19 deletions(-)
[PATCH v1 0/3] Enable R52 support for the first chunk of MPU support
Posted by Ayan Kumar Halder 4 months, 4 weeks ago
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".

Ayan Kumar Halder (3):
  arm/mpu: Introduce MPU memory region map structure
  arm/mpu: Provide and populate MPU C data structures
  arm/mpu: Provide access to the MPU region from the C code

 xen/arch/arm/arm32/asm-offsets.c         |  6 ++
 xen/arch/arm/arm32/mpu/head.S            | 57 +++++++++++++++++++
 xen/arch/arm/include/asm/arm32/mpu.h     | 30 ++++++++--
 xen/arch/arm/include/asm/arm64/mpu.h     |  6 --
 xen/arch/arm/include/asm/mpu.h           |  8 ++-
 xen/arch/arm/include/asm/mpu/cpregs.h    | 72 +++++++++++++++++++++++-
 xen/arch/arm/include/asm/mpu/regions.inc |  8 ++-
 xen/arch/arm/mpu/mm.c                    | 33 +++++++++--
 8 files changed, 201 insertions(+), 19 deletions(-)

-- 
2.25.1
Re: [PATCH v1 0/3] Enable R52 support for the first chunk of MPU support
Posted by Ayan Kumar Halder 4 months, 3 weeks ago
Hi,

On 04/06/2025 18:43, Ayan Kumar Halder wrote:
> 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".

I have submitted a v2 "[PATCH v2 0/3] Enable R52 support for the first 
chunk of MPU support" with all the comments addressed.

- Ayan