dt-bindings: pinctrl: stm32: add new entry for package information
authorAlexandre Torgue <alexandre.torgue@st.com>
Wed, 10 Apr 2019 11:30:20 +0000 (13:30 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 23 Apr 2019 08:46:37 +0000 (10:46 +0200)
Add "st,package" entry. Possibles values are:
-STM32MP_PKG_AA for LFBGA448 (18*18) package
-STM32MP_PKG_AB for LFBGA354 (16*16) package
-STM32MP_PKG_AC for TFBGA361 (12*12) package
-STM32MP_PKG_AD for TFBGA257 (10*10) package

Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.txt
include/dt-bindings/pinctrl/stm32-pinfunc.h

index 48df30a36b01423fb59e6081dae3afee53fb6f7f..00169255e48c5e7b0847615ed0b9cb9c61275796 100644 (file)
@@ -57,6 +57,8 @@ Optional properties:
  - st,bank-ioport: should correspond to the EXTI IOport selection (EXTI line
    used to select GPIOs as interrupts).
  - hwlocks: reference to a phandle of a hardware spinlock provider node.
+ - st,package: Indicates the SOC package used.
+   More details in include/dt-bindings/pinctrl/stm32-pinfunc.h
 
 Example 1:
 #include <dt-bindings/pinctrl/stm32f429-pinfunc.h>
index b5a2174a63868160f2d711d262bfb95c684d6586..e6fb8ada3f4d395184a33b900a43c2566cc6cc76 100644 (file)
 
 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
 
+/*  package information */
+#define STM32MP_PKG_AA 0x1
+#define STM32MP_PKG_AB 0x2
+#define STM32MP_PKG_AC 0x4
+#define STM32MP_PKG_AD 0x8
+
 #endif /* _DT_BINDINGS_STM32_PINFUNC_H */