On Wed, 19 Nov 2025 at 13:00, Gaurav Sharma <[email protected]> wrote: > > Implemented CPUs, RAM, UARTs and Interrupt Controller > Other peripherals are represented as TYPE_UNIMPLEMENTED_DEVICE > Complete memory map of the SoC is provided. > > Signed-off-by: Gaurav Sharma <[email protected]> > --- > docs/system/arm/imx8mm-evk.rst | 68 ++++++ > docs/system/target-arm.rst | 1 + > hw/arm/Kconfig | 12 ++ > hw/arm/fsl-imx8mm.c | 363 +++++++++++++++++++++++++++++++++ > hw/arm/imx8mm-evk.c | 109 ++++++++++ > hw/arm/meson.build | 2 + > include/hw/arm/fsl-imx8mm.h | 156 ++++++++++++++
Could you also add a section to MAINTAINERS for this new board, please? > diff --git a/hw/arm/fsl-imx8mm.c b/hw/arm/fsl-imx8mm.c > new file mode 100644 > index 0000000000..0c658141cf > --- /dev/null > +++ b/hw/arm/fsl-imx8mm.c > @@ -0,0 +1,363 @@ > +/* > + * i.MX 8MM SoC Implementation > + * > + * Based on hw/arm/fsl-imx6.c > + * > + * Copyright (c) 2025, Gaurav Sharma <[email protected]> Are these files really Copyright you personally, rather than NXP ? > + * > + * SPDX-License-Identifier: GPL-2.0-or-later > + */ Is there a URL for a reference manual for this SoC that we could give here ? thanks -- PMM
