Skip to content

Commit 4fd669f

Browse files
tmlindgregkh
authored andcommitted
ARM: dts: Fix omap3 off mode pull defines
[ Upstream commit d97556c8012015901a3ce77f46960078139cd79d ] We need to also have OFFPULLUDENABLE bit set to use the off mode pull values. Otherwise the line is pulled down internally if no external pull exists. This is has some documentation at: http://processors.wiki.ti.com/index.php/Optimizing_OMAP35x_and_AM/DM37x_OFF_mode_PAD_configuration Note that the value is still glitchy during off mode transitions as documented in spz319f.pdf "Advisory 1.45". It's best to use external pulls instead of relying on the internal ones for off mode and even then anything pulled up will get driven down momentarily on off mode restore for GPIO banks other than bank1. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 955840e commit 4fd669f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • include/dt-bindings/pinctrl

include/dt-bindings/pinctrl/omap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
#define PIN_OFF_NONE 0
4646
#define PIN_OFF_OUTPUT_HIGH (OFF_EN | OFFOUT_EN | OFFOUT_VAL)
4747
#define PIN_OFF_OUTPUT_LOW (OFF_EN | OFFOUT_EN)
48-
#define PIN_OFF_INPUT_PULLUP (OFF_EN | OFF_PULL_EN | OFF_PULL_UP)
49-
#define PIN_OFF_INPUT_PULLDOWN (OFF_EN | OFF_PULL_EN)
48+
#define PIN_OFF_INPUT_PULLUP (OFF_EN | OFFOUT_EN | OFF_PULL_EN | OFF_PULL_UP)
49+
#define PIN_OFF_INPUT_PULLDOWN (OFF_EN | OFFOUT_EN | OFF_PULL_EN)
5050
#define PIN_OFF_WAKEUPENABLE WAKEUP_EN
5151

5252
/*

0 commit comments

Comments
 (0)