]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/commitdiff
AM64x_evm: add pull up for mmc1 lines
authorVishal Mahaveer <vishalm@ti.com>
Fri, 4 Dec 2020 05:49:47 +0000 (23:49 -0600)
committerSivaraj R <sivaraj@ti.com>
Fri, 4 Dec 2020 05:58:36 +0000 (23:58 -0600)
Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
packages/ti/board/src/am64x_evm/AM64x_pinmux_data.c

index d6d4d14939679f357d61d28e38329558ef4846a6..d558398e84d5d7b69f901a90f73fb78a9bd2d4f1 100755 (executable)
@@ -421,7 +421,7 @@ static pinmuxPerCfg_t gMmc11PinCfg[] =
     /* MyMMC11 -> MMC1_CMD -> J19 */\r
     {\r
         PIN_MMC1_CMD, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     /* MyMMC11 -> MMC1_CLK -> L20 */\r
     {\r
@@ -436,27 +436,27 @@ static pinmuxPerCfg_t gMmc11PinCfg[] =
     /* MyMMC11 -> MMC1_DAT0 -> K21 */\r
     {\r
         PIN_MMC1_DAT0, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     /* MyMMC11 -> MMC1_DAT1 -> L21 */\r
     {\r
         PIN_MMC1_DAT1, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     /* MyMMC11 -> MMC1_DAT2 -> K19 */\r
     {\r
         PIN_MMC1_DAT2, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     /* MyMMC11 -> MMC1_DAT3 -> K18 */\r
     {\r
         PIN_MMC1_DAT3, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     /* MyMMC11 -> MMC1_SDCD -> D19 */\r
     {\r
         PIN_MMC1_SDCD, PIN_MODE(0) | \\r
-        ((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))\r
+        ((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))\r
     },\r
     {PINMUX_END}\r
 };\r