From: Lukasz Majewski Date: Sat, 26 Dec 2020 00:09:00 +0000 (+0100) Subject: xea: spl: Disable pull UP for GPIO0_2{35} X-Git-Tag: v2021.10~381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a062d8e610bf71525f4243638f1864e8d1309adb;p=platform%2Fkernel%2Fu-boot.git 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 --- 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 #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)