From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcel Ziswiler Date: Tue, 16 Oct 2018 08:25:13 +0000 Subject: [U-Boot] [RESEND PATCH v2 1/2] imx: mx7: fix potential overflow in imx_ddr_size() In-Reply-To: <930fe677-7f1e-3789-2f0e-4be5fd772b28@denx.de> References: <20181016064636.11692-1-marcel@ziswiler.com> <930fe677-7f1e-3789-2f0e-4be5fd772b28@denx.de> Message-ID: <1539678311.6233.3.camel@toradex.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Stefano On Tue, 2018-10-16 at 10:06 +0200, Stefano Babic wrote: > Hi Marcel, > > On 16/10/2018 08:46, Marcel Ziswiler wrote: > > From: Marcel Ziswiler > > > > The imx_ddr_size() function may overflow as it is possible to kind > > of > > over provision the DDR controller. Fix this by capping it to 2 GB > > which > > is the maximum allowed size as per reference manual. > > > > Signed-off-by: Marcel Ziswiler > > Reviewed-by: Fabio Estevam > > > > --- > > > > Changes in v2: None > > > > arch/arm/mach-imx/mx7/ddr.c | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/arch/arm/mach-imx/mx7/ddr.c b/arch/arm/mach- > > imx/mx7/ddr.c > > index f19aeb8042..9713835bf2 100644 > > --- a/arch/arm/mach-imx/mx7/ddr.c > > +++ b/arch/arm/mach-imx/mx7/ddr.c > > @@ -196,5 +196,9 @@ unsigned int imx_ddr_size(void) > > if (field_val <= 29) > > bits++; > > > > + /* cap to max 2 GB */ > > + if (bits > 31) > > + bits = 31; > > + > > return 1 << bits; > > } > > > > This is a good catch, thanks for it ! The two patches in V2 (the > second > for colibri) are already in my list. Does this mean that you want I > drop > "colibri_imx7: prime get_ram_size() using imx_ddr_size() " ? No, no. I just resent both as I did not see any activity on it but if you already have them queued that's completely fine. Thanks! > Thanks, > Stefano Cheers Marcel