mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-25 07:41:40 +02:00
imx: mx7: fix potential overflow in imx_ddr_size()
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 <marcel.ziswiler@toradex.com> Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
This commit is contained in:
parent
780e31e93f
commit
2cea8d74dc
@ -196,5 +196,9 @@ unsigned int imx_ddr_size(void)
|
|||||||
if (field_val <= 29)
|
if (field_val <= 29)
|
||||||
bits++;
|
bits++;
|
||||||
|
|
||||||
|
/* cap to max 2 GB */
|
||||||
|
if (bits > 31)
|
||||||
|
bits = 31;
|
||||||
|
|
||||||
return 1 << bits;
|
return 1 << bits;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user