> -----Original Message----- > From: Peter Maydell <[email protected]> > Sent: 02 December 2025 15:30 > To: Gaurav Sharma <[email protected]> > Cc: [email protected]; [email protected] > Subject: [EXT] Re: [PATCHv3 01/13] hw/arm: Add the i.MX 8MM > EVK(Evaluation Kit) board > > Caution: This is an external email. Please take care when clicking links or > opening attachments. When in doubt, report the message using the 'Report > this email' button > > > 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?
I was going through this https://www.qemu.org/docs/master/devel/maintainers.html. It implies that the contributors are generally people who have been actively contributing to the community for a while. Since this is my first contribution to the community, whose name will go up as a Maintainer ? > > 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 ? This will be with NXP. I will update it. > > + * > > + * SPDX-License-Identifier: GPL-2.0-or-later */ > > Is there a URL for a reference manual for this SoC that we could give here ? > yes, will add the link of the reference manual.
