Skip to content
Snippets Groups Projects
Commit aca0b8b4 authored by Lars Poeschel's avatar Lars Poeschel Committed by Tom Rini
Browse files

am33xx: add a pulldown macro to pinmux config


Signed-off-by: default avatarLars Poeschel <poeschel@lemonage.de>
parent d70f5480
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,8 @@
/* PAD Control Fields */
#define SLEWCTRL (0x1 << 6)
#define RXACTIVE (0x1 << 5)
#define PULLUP_EN (0x1 << 4) /* Pull UP Selection */
#define PULLDOWN_EN (0x0 << 4) /* Pull Down Selection */
#define PULLUP_EN (0x1 << 4) /* Pull Up Selection */
#define PULLUDEN (0x0 << 3) /* Pull up enabled */
#define PULLUDDIS (0x1 << 3) /* Pull up disabled */
#define MODE(val) val /* used for Readability */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment