From 7e93b1a0eb40192627d7402be3f6b5eaa7e607b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Thu, 14 Aug 2014 14:52:22 +0200 Subject: [PATCH] karo: tx53: fix DDR_SEL value The current value is inappropriate for DDR3. When adding support for the HW rev. 3 of the TX53 module that has DDR3 instead of DDR2 memory, the values for both memory type were erroneously swapped, so that after removing DDR2 support lateron, the wrong value was kept. --- packages/hal/arm/mx53/karo/v1_0/include/hal_platform_setup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hal/arm/mx53/karo/v1_0/include/hal_platform_setup.h b/packages/hal/arm/mx53/karo/v1_0/include/hal_platform_setup.h index 5785c815..34be254c 100644 --- a/packages/hal/arm/mx53/karo/v1_0/include/hal_platform_setup.h +++ b/packages/hal/arm/mx53/karo/v1_0/include/hal_platform_setup.h @@ -820,7 +820,7 @@ dcd_hdr: #endif MXC_DCD_ITEM(0x53fd4018, 0x00016154) /* CBCMR */ -#define DDR_SEL_VAL 2 +#define DDR_SEL_VAL 0 #define DSE_VAL 5 #define ODT_VAL 2 -- 2.39.2