Re: [PATCH 1/9] dt-bindings: pinctrl: stm32: Add HDP includes for stm32mp platforms
From: Clement LE GOFFIC <hidden>
Date: 2025-02-25 17:07:17
Also in:
linux-devicetree, linux-gpio, lkml
On 2/25/25 14:01, Krzysztof Kozlowski wrote:
On 25/02/2025 09:48, Clément Le Goffic wrote:quoted
Each file introduces helpers to choose the signal to monitor through the HDP pin. Signals are different for each platforms: stm32mp13, stm32mp15, stm32mp25.Headers are part of bindings commit, assuming this stays...
Ok will squash with the next patch
quoted
Signed-off-by: Clément Le Goffic <redacted> --- include/dt-bindings/pinctrl/stm32mp13-hdp.h | 130 +++++++++++++++++++++++++ include/dt-bindings/pinctrl/stm32mp15-hdp.h | 116 ++++++++++++++++++++++ include/dt-bindings/pinctrl/stm32mp25-hdp.h | 144 ++++++++++++++++++++++++++++ 3 files changed, 390 insertions(+)diff --git a/include/dt-bindings/pinctrl/stm32mp13-hdp.h b/include/dt-bindings/pinctrl/stm32mp13-hdp.h new file mode 100644 index 000000000000..a3487e700143 --- /dev/null +++ b/include/dt-bindings/pinctrl/stm32mp13-hdp.h@@ -0,0 +1,130 @@ +/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */ +/* + * Copyright (C) STMicroelectronics 2025 - All Rights Reserved + * Author: Clément Le Goffic <clement.legoffic@foss.st.com> for STMicroelectronics. + */ + +#ifndef _DT_BINDINGS_STM32MP13_HDP_H +#define _DT_BINDINGS_STM32MP13_HDP_H + +/* define a macro for each function a HDP pin can transmit */ +#define HDP0_PWR_PWRWAKE_SYS "0"Why this is a string not a number? Where is it used? I don't see usage in the driver, so this does not look like binding (and DTS is not a driver).
Those files are helpers for the devicetrees and may be included in stm32mp*-pinctrl.dtsi files. It is a string because it is an helper for the `function` property of `pinmux-node.yaml` which is a string. I understand that having a number as a string is not easily understandable. I'll consider it in a V2 by trying to use the `pinmux` property.
Best regards, Krzysztof
Best regards, Clément