diff options
| author | Emanuele Ghidoli <[email protected]> | 2024-05-28 11:59:38 +0200 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2024-06-03 12:13:22 -0300 |
| commit | 2884e5df697b49c98b8766b5f1964d6573eadfe5 (patch) | |
| tree | aa4e56db12b0c0d144880d09630e90d4298888ec /include | |
| parent | 3ca48ec85d15759d875d42cc318c3e8ae8cde514 (diff) | |
board: toradex: verdin-imx8mm: increase maximum addressable ram to 4GB
Add support for SKUs with higher memory sizes.
Actual memory size is auto-detected.
Signed-off-by: Emanuele Ghidoli <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/verdin-imx8mm.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/configs/verdin-imx8mm.h b/include/configs/verdin-imx8mm.h index 34238d3b505..12d2b682305 100644 --- a/include/configs/verdin-imx8mm.h +++ b/include/configs/verdin-imx8mm.h @@ -58,8 +58,10 @@ #define CFG_SYS_SDRAM_BASE 0x40000000 /* SDRAM configuration */ -#define PHYS_SDRAM 0x40000000 -#define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */ +#define PHYS_SDRAM 0x40000000 +#define PHYS_SDRAM_SIZE (long)(SZ_2G + SZ_1G) +#define PHYS_SDRAM_2 0x100000000 +#define PHYS_SDRAM_2_SIZE (long)(SZ_1G) /* USB Configs */ #define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
