Message ID | 20230529162034.20481-2-alexandre.torgue@foss.st.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add STM32MP25 support | expand |
On Mon, May 29, 2023 at 06:20:24PM +0200, Alexandre Torgue wrote: > Add support for st,stm32mp257-pinctrl and st,stm32mp257-z-pinctrl. > Add packages AI, AK and AL (values : 0x100, 0x400 and 0x800) > > Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com> Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Thanks, Conor. > > diff --git a/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml > index 1ab0f8dde477..2120ef71a78d 100644 > --- a/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml > +++ b/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml > @@ -27,6 +27,8 @@ properties: > - st,stm32mp135-pinctrl > - st,stm32mp157-pinctrl > - st,stm32mp157-z-pinctrl > + - st,stm32mp257-pinctrl > + - st,stm32mp257-z-pinctrl > > '#address-cells': > const: 1 > @@ -56,7 +58,7 @@ properties: > Indicates the SOC package used. > More details in include/dt-bindings/pinctrl/stm32-pinfunc.h > $ref: /schemas/types.yaml#/definitions/uint32 > - enum: [1, 2, 4, 8] > + enum: [0x1, 0x2, 0x4, 0x8, 0x100, 0x400, 0x800] > > patternProperties: > '^gpio@[0-9a-f]*$': > diff --git a/include/dt-bindings/pinctrl/stm32-pinfunc.h b/include/dt-bindings/pinctrl/stm32-pinfunc.h > index e6fb8ada3f4d..28ad0235086a 100644 > --- a/include/dt-bindings/pinctrl/stm32-pinfunc.h > +++ b/include/dt-bindings/pinctrl/stm32-pinfunc.h > @@ -37,6 +37,9 @@ > #define STM32MP_PKG_AB 0x2 > #define STM32MP_PKG_AC 0x4 > #define STM32MP_PKG_AD 0x8 > +#define STM32MP_PKG_AI 0x100 > +#define STM32MP_PKG_AK 0x400 > +#define STM32MP_PKG_AL 0x800 > > #endif /* _DT_BINDINGS_STM32_PINFUNC_H */ > > -- > 2.17.1 >
diff --git a/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml index 1ab0f8dde477..2120ef71a78d 100644 --- a/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml +++ b/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml @@ -27,6 +27,8 @@ properties: - st,stm32mp135-pinctrl - st,stm32mp157-pinctrl - st,stm32mp157-z-pinctrl + - st,stm32mp257-pinctrl + - st,stm32mp257-z-pinctrl '#address-cells': const: 1 @@ -56,7 +58,7 @@ properties: Indicates the SOC package used. More details in include/dt-bindings/pinctrl/stm32-pinfunc.h $ref: /schemas/types.yaml#/definitions/uint32 - enum: [1, 2, 4, 8] + enum: [0x1, 0x2, 0x4, 0x8, 0x100, 0x400, 0x800] patternProperties: '^gpio@[0-9a-f]*$': diff --git a/include/dt-bindings/pinctrl/stm32-pinfunc.h b/include/dt-bindings/pinctrl/stm32-pinfunc.h index e6fb8ada3f4d..28ad0235086a 100644 --- a/include/dt-bindings/pinctrl/stm32-pinfunc.h +++ b/include/dt-bindings/pinctrl/stm32-pinfunc.h @@ -37,6 +37,9 @@ #define STM32MP_PKG_AB 0x2 #define STM32MP_PKG_AC 0x4 #define STM32MP_PKG_AD 0x8 +#define STM32MP_PKG_AI 0x100 +#define STM32MP_PKG_AK 0x400 +#define STM32MP_PKG_AL 0x800 #endif /* _DT_BINDINGS_STM32_PINFUNC_H */
Add support for st,stm32mp257-pinctrl and st,stm32mp257-z-pinctrl. Add packages AI, AK and AL (values : 0x100, 0x400 and 0x800) Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>