]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dt-bindings: pinctrl: k3: Introduce pinmux definitions for J721S2
authorAswath Govindraju <a-govindraju@ti.com>
Tue, 25 Jan 2022 15:26:39 +0000 (20:56 +0530)
committerTom Rini <trini@konsulko.com>
Tue, 8 Feb 2022 14:41:27 +0000 (09:41 -0500)
Add pinctrl macros for J721S2 SoC. These macro definitions are
similar to that of J721E, but adding new definitions to avoid
any naming confusions in the soc dts files.

checkpatch insists the following error exists:
ERROR: Macros with complex values should be enclosed in parentheses

However, we do not need parentheses enclosing the values for this
macro as we do intend it to generate two separate values as has been
done for other similar platforms.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
include/dt-bindings/pinctrl/k3.h

index e085f102b2839a0c7b45678b1f10bead1ba21a26..63e038e36ca3c88f15b0557501ac0647339829f6 100644 (file)
@@ -38,4 +38,7 @@
 #define AM64X_IOPAD(pa, val, muxmode)          (((pa) & 0x1fff)) ((val) | (muxmode))
 #define AM64X_MCU_IOPAD(pa, val, muxmode)      (((pa) & 0x1fff)) ((val) | (muxmode))
 
+#define J721S2_IOPAD(pa, val, muxmode)         (((pa) & 0x1fff)) ((val) | (muxmode))
+#define J721S2_WKUP_IOPAD(pa, val, muxmode)    (((pa) & 0x1fff)) ((val) | (muxmode))
+
 #endif