summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManoj Sai <[email protected]>2022-11-28 17:15:31 +0530
committerStefano Babic <[email protected]>2023-01-31 19:44:23 +0100
commit945c118409a40bfa18fa65bf7fc0afa04634e6dd (patch)
tree460096fb5abcc7348934fb411677091d203b6fee /include
parenta437d14fc8b2d935c9071082cd3e820d5d033251 (diff)
configs: imx8mp_evk: revert to old ram settings
The 'commit 864ac2cf383e ("board: imx8mp: Add Engicam i.Core MX8M Plus EDIMM2.2 Starter Kit")' has changed the imx8mp evk ram settings from 6GB ram to 2GB. This changeset reverts the above change. Signed-off-by: Manoj Sai <[email protected]> Reported-by : Peter Bergin <[email protected]> Reviewed-by: Peng Fan <[email protected]> Reviewed-by: Fabio Estevam <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/imx8mp_evk.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/configs/imx8mp_evk.h b/include/configs/imx8mp_evk.h
index 1fea5b72deb..1759318fdd3 100644
--- a/include/configs/imx8mp_evk.h
+++ b/include/configs/imx8mp_evk.h
@@ -46,9 +46,11 @@
#define CFG_SYS_INIT_RAM_SIZE 0x80000
-/* Totally 2GB DDR */
+/* Totally 6GB DDR */
#define CFG_SYS_SDRAM_BASE 0x40000000
#define PHYS_SDRAM 0x40000000
-#define PHYS_SDRAM_SIZE 0x80000000
+#define PHYS_SDRAM_SIZE 0xC0000000 /* 3 GB */
+#define PHYS_SDRAM_2 0x100000000
+#define PHYS_SDRAM_2_SIZE 0xC0000000 /* 3 GB */
#endif