imx: mx6dlarm2: Add support for i.MX6DL arm2 DDR3 board

This patch adds the i.MX6DL arm2 board support. The i.MX6DL ARM2
shared the same board with i.MX6Q ARM2 board since the i.MX6DL is
pin-pin compatible with i.MX6Q.

The patch also support the DDR 32-BIT mode option. Please define
CONFIG_DDR_32BIT in the board configure file to enable DDR 32-BIT
mode.But due to the board design, it's 64bit DDR buswidth physically,
so, if you CONFIG_DDR_32BIT, the DDR memory size will be half of it.

Signed-off-by: Ye.Li <B37916@freescale.com>
This commit is contained in:
Ye.Li
2014-09-29 23:26:28 +08:00
committed by Stefano Babic
parent febae49a2b
commit b357503f1c
6 changed files with 157 additions and 2 deletions

View File

@@ -10,7 +10,6 @@
#define __CONFIG_H
#define CONFIG_MX6
#define CONFIG_MX6Q
#include "mx6_common.h"
@@ -169,7 +168,11 @@
/* Physical Memory Map */
#define CONFIG_NR_DRAM_BANKS 1
#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
#ifdef CONFIG_DDR_32BIT
#define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024)
#else
#define PHYS_SDRAM_SIZE (2u * 1024 * 1024 * 1024)
#endif
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR