From: Sascha Hauer <sha@pengutronix.de>
To: Lucas Stach <l.stach@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/3] ARM: i.MX8M: esdctl: limit i.MX8MP early memory size
Date: Wed, 8 Feb 2023 09:26:22 +0100 [thread overview]
Message-ID: <20230208082622.GL10447@pengutronix.de> (raw)
In-Reply-To: <20230208082015.GJ10447@pengutronix.de>
On Wed, Feb 08, 2023 at 09:20:15AM +0100, Sascha Hauer wrote:
> On Mon, Feb 06, 2023 at 10:00:02PM +0100, Lucas Stach wrote:
> > Limit detected early memory size to 1GB on i.MX8MP, as the default DT
> > has a reserved memory region at 0x92400000, which will conflict with
> > our malloc area in some configurations. Until we can properly parse
> > and exclude the reserved memory regions in the PBL, just avoid getting
> > near that DRAM address by limiting the detected size.
>
> The memory region reserved at 0x92400000 belongs to an audio processing
> DSP. This is unused for sure in barebox, so do we really need to handle
> this case here?
>
> Besides, who had that glorious of hardcoding that RAM area in the dtsi
^idea
> file?? Is this address dictated by the hardware? That would mean the DSP
> is not usable on machines with only 1GiB of RAM. If it's not dictated
> by the hardware, why is it in the dtsi file?
>
> This smells fishy.
>
> Sascha
>
> >
> > Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
> > ---
> > arch/arm/mach-imx/esdctl.c | 12 +++++++++++-
> > 1 file changed, 11 insertions(+), 1 deletion(-)
> >
> > diff --git a/arch/arm/mach-imx/esdctl.c b/arch/arm/mach-imx/esdctl.c
> > index a704250297bb..043de477a77d 100644
> > --- a/arch/arm/mach-imx/esdctl.c
> > +++ b/arch/arm/mach-imx/esdctl.c
> > @@ -947,7 +947,17 @@ void __noreturn imx8mn_barebox_entry(void *boarddata)
> >
> > void __noreturn imx8mp_barebox_entry(void *boarddata)
> > {
> > - imx8m_barebox_entry(boarddata, 32);
> > + /*
> > + * Limit detected early memory size to 1GB on i.MX8MP, as the default
> > + * DT has a reserved memory region at 0x92400000, which will conflict
> > + * with our malloc area in some configurations. Until we can properly
> > + * parse and exclude the reserved memory regions in the PBL, just avoid
> > + * getting near that DRAM address by limiting the detected size.
> > + */
> > + barebox_arm_entry(MX8M_DDR_CSD1_BASE_ADDR,
> > + min_t(resource_size_t, SZ_1G,
> > + imx8m_barebox_earlymem_size(32)),
> > + boarddata);
> > }
> >
> > void __noreturn imx8mq_barebox_entry(void *boarddata)
> > --
> > 2.39.1
> >
> >
> >
>
> --
> Pengutronix e.K. | |
> Steuerwalder Str. 21 | http://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
prev parent reply other threads:[~2023-02-08 8:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-06 21:00 Lucas Stach
2023-02-06 21:00 ` [PATCH 2/3] ARM: i.MX8M: esdctl: use common compatible to detect i.MX8M* DDRC Lucas Stach
2023-02-07 10:24 ` Marco Felsch
2023-02-07 10:31 ` Lucas Stach
2023-02-06 21:00 ` [PATCH 3/3] ARM: dts: i.MX8MP: add DDRC compatibles Lucas Stach
2023-02-08 8:20 ` [PATCH 1/3] ARM: i.MX8M: esdctl: limit i.MX8MP early memory size Sascha Hauer
2023-02-08 8:26 ` Sascha Hauer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230208082622.GL10447@pengutronix.de \
--to=sha@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=l.stach@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox