aboutsummaryrefslogtreecommitdiff
path: root/board/liebherr
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2020-12-26 01:09:00 +0100
committerTom Rini <trini@konsulko.com>2021-01-08 08:41:50 -0500
commita062d8e610bf71525f4243638f1864e8d1309adb (patch)
treec84af53f89d7a6ef2a90757be58d9f50b64ea7c4 /board/liebherr
parent92cb207af110855ee9ae132c638b3d289a53d930 (diff)
downloadu-boot-a062d8e610bf71525f4243638f1864e8d1309adb.zip
u-boot-a062d8e610bf71525f4243638f1864e8d1309adb.tar.gz
u-boot-a062d8e610bf71525f4243638f1864e8d1309adb.tar.bz2
xea: spl: Disable pull UP for GPIO0_2{35}
On the imx287 pin GPMI_WRN (GPIO0_25) no PullUP is available that can be enabled. To get the same behavior for both boot select pins (i.e. GPIO0_2{35}) disable pull UPs on both. Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'board/liebherr')
-rw-r--r--board/liebherr/xea/spl_xea.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/liebherr/xea/spl_xea.c b/board/liebherr/xea/spl_xea.c
index d88b75b..192f68f 100644
--- a/board/liebherr/xea/spl_xea.c
+++ b/board/liebherr/xea/spl_xea.c
@@ -20,7 +20,7 @@
#include <asm/arch/sys_proto.h>
#define MUX_CONFIG_LCD (MXS_PAD_3V3 | MXS_PAD_4MA | MXS_PAD_NOPULL)
-#define MUX_CONFIG_BOOT (MXS_PAD_3V3 | MXS_PAD_PULLUP)
+#define MUX_CONFIG_BOOT (MXS_PAD_3V3)
#define MUX_CONFIG_TSC (MXS_PAD_3V3 | MXS_PAD_8MA | MXS_PAD_PULLUP)
#define MUX_CONFIG_SSP0 (MXS_PAD_3V3 | MXS_PAD_12MA | MXS_PAD_PULLUP)
#define MUX_CONFIG_SSP2 (MXS_PAD_3V3 | MXS_PAD_4MA | MXS_PAD_PULLUP)