summaryrefslogtreecommitdiff
path: root/include/configs/tqma6.h
diff options
context:
space:
mode:
authorMarkus Niebel <Markus.Niebel@tq-group.com>2017-02-28 15:37:33 (GMT)
committerStefano Babic <sbabic@denx.de>2017-03-17 08:27:08 (GMT)
commit468fb1e4dfa805a86ff46b3875d9f6a08b34dbf8 (patch)
tree6aa5ee9d15c821f77a9452dff1c7a0a123986214 /include/configs/tqma6.h
parentd4b349e41ba3f7ade9cde6b9fd96a735c29bfcca (diff)
downloadu-boot-468fb1e4dfa805a86ff46b3875d9f6a08b34dbf8.tar.xz
arm: imx6: tqma6: add support for TQMa6DL variant
This adds support for TQMa6DL using i.MX6DL and 1GiB DRAM Since The module will use the same devicetree, we patch the ram size in ft_board_setup. Signed-off-by: Markus Niebel <Markus.Niebel@tq-group.com>
Diffstat (limited to 'include/configs/tqma6.h')
-rw-r--r--include/configs/tqma6.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/configs/tqma6.h b/include/configs/tqma6.h
index 2a63686..e72332c 100644
--- a/include/configs/tqma6.h
+++ b/include/configs/tqma6.h
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2013, 2014 Markus Niebel <Markus.Niebel@tq-group.com>
+ * Copyright (C) 2013, 2014, 2017 Markus Niebel <Markus.Niebel@tq-group.com>
*
- * Configuration settings for the TQ Systems TQMa6<Q,S> module.
+ * Configuration settings for the TQ Systems TQMa6<Q,D,DL,S> module.
*
* SPDX-License-Identifier: GPL-2.0+
*/
@@ -20,7 +20,7 @@
/* place code in last 4 MiB of RAM */
#if defined(CONFIG_TQMA6S)
#define CONFIG_SYS_TEXT_BASE 0x2fc00000
-#elif defined(CONFIG_TQMA6Q)
+#elif defined(CONFIG_TQMA6Q) || defined(CONFIG_TQMA6DL)
#define CONFIG_SYS_TEXT_BASE 0x4fc00000
#endif
@@ -28,8 +28,10 @@
#if defined(CONFIG_TQMA6S)
#define PHYS_SDRAM_SIZE (512u * SZ_1M)
+#elif defined(CONFIG_TQMA6DL)
+#define PHYS_SDRAM_SIZE (SZ_1G)
#elif defined(CONFIG_TQMA6Q)
-#define PHYS_SDRAM_SIZE (1024u * SZ_1M)
+#define PHYS_SDRAM_SIZE (SZ_1G)
#endif
#define CONFIG_MXC_UART