From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 03/11] pinctrl: stm32: implement generic struct gpio_ops::set_config
Date: Fri, 9 Aug 2024 16:23:57 +0200 [thread overview]
Message-ID: <20240809142405.315244-4-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20240809142405.315244-1-a.fatoum@pengutronix.de>
To enable use with the newly added gpiod_set_config API,
implement the operation for the STM32.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
drivers/pinctrl/Kconfig | 1 +
drivers/pinctrl/pinctrl-stm32.c | 41 +++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig
index 2ff99a39c877..ee15acdcdb35 100644
--- a/drivers/pinctrl/Kconfig
+++ b/drivers/pinctrl/Kconfig
@@ -103,6 +103,7 @@ config PINCTRL_VF610
config PINCTRL_STM32
bool "STM32 pinctrl support" if COMPILE_TEST
default y if ARCH_STM32
+ select HAVE_GPIO_PINCONF
help
Pinmux and GPIO controller found on STM32 family
endif
diff --git a/drivers/pinctrl/pinctrl-stm32.c b/drivers/pinctrl/pinctrl-stm32.c
index 4a4b03ac0ea7..e2fd12117095 100644
--- a/drivers/pinctrl/pinctrl-stm32.c
+++ b/drivers/pinctrl/pinctrl-stm32.c
@@ -15,6 +15,7 @@
#include <hwspinlock.h>
#include <malloc.h>
#include <linux/clk.h>
+#include <linux/pinctrl/pinconf-generic.h>
#include <soc/stm32/gpio.h>
#define STM32_PIN_NO(x) ((x) << 8)
@@ -258,12 +259,52 @@ static int stm32_gpio_direction_output(struct gpio_chip *chip,
return 0;
}
+static int stm32_gpio_set_config(struct gpio_chip *chip,
+ unsigned int gpio, unsigned long config)
+{
+ struct stm32_gpio_bank *bank = to_stm32_gpio_bank(chip);
+ enum pin_config_param param;
+ u32 arg;
+
+ param = pinconf_to_config_param(config);
+ arg = pinconf_to_config_argument(config);
+
+ switch (param) {
+ case PIN_CONFIG_DRIVE_PUSH_PULL:
+ __stm32_pmx_set_output_type(bank->base, gpio, STM32_PIN_OUT_PUSHPULL);
+ break;
+ case PIN_CONFIG_DRIVE_OPEN_DRAIN:
+ __stm32_pmx_set_output_type(bank->base, gpio, STM32_PIN_OUT_OPENDRAIN);
+ break;
+ case PIN_CONFIG_SLEW_RATE:
+ __stm32_pmx_set_speed(bank->base, gpio, arg);
+ break;
+ case PIN_CONFIG_BIAS_DISABLE:
+ __stm32_pmx_set_bias(bank->base, gpio, STM32_PIN_NO_BIAS);
+ break;
+ case PIN_CONFIG_BIAS_PULL_UP:
+ __stm32_pmx_set_bias(bank->base, gpio, STM32_PIN_PULL_UP);
+ break;
+ case PIN_CONFIG_BIAS_PULL_DOWN:
+ __stm32_pmx_set_bias(bank->base, gpio, STM32_PIN_PULL_DOWN);
+ break;
+ case PIN_CONFIG_OUTPUT:
+ __stm32_pmx_gpio_output(bank->base, gpio, arg);
+ break;
+ default:
+ return -ENOTSUPP;
+ }
+
+ return 0;
+}
+
static struct gpio_ops stm32_gpio_ops = {
.direction_input = stm32_gpio_direction_input,
.direction_output = stm32_gpio_direction_output,
.get_direction = stm32_gpio_get_direction,
.get = stm32_gpio_get,
.set = stm32_gpio_set,
+ .set_config = IS_ENABLED(CONFIG_GPIO_PINCONF) ? stm32_gpio_set_config : NULL,
};
static int stm32_gpiochip_add(struct stm32_gpio_bank *bank,
--
2.39.2
next prev parent reply other threads:[~2024-08-09 14:24 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-09 14:23 [PATCH 00/11] gpiolib: add support for OF GPIO configuration binding Ahmad Fatoum
2024-08-09 14:23 ` [PATCH 01/11] gpio: make gpio.h header self-contained Ahmad Fatoum
2024-08-09 14:23 ` [PATCH 02/11] gpiolib: permit GPIO drivers to implement struct gpio_ops::set_config Ahmad Fatoum
2024-08-09 14:23 ` Ahmad Fatoum [this message]
2024-08-09 14:23 ` [PATCH 04/11] gpiolib: turn request/active_low into bit flags Ahmad Fatoum
2024-08-09 14:23 ` [PATCH 05/11] gpiolib: don't use GPIO number API in of_hog_gpio Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 06/11] gpiolib: store all OF flags into GPIO descriptor Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 07/11] gpiolib: add support for OF GPIO configuration binding Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 08/11] gpiolib: use dev_gpiod_get_index device node argument throughout Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 09/11] gpiolib: export function to get struct gpio_desc from index Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 10/11] input: gpio_keys: switch to GPIO descriptor API Ahmad Fatoum
2024-08-09 14:24 ` [PATCH 11/11] input: gpio-keys: request with label in DT if available Ahmad Fatoum
2024-08-14 11:00 ` [PATCH 00/11] gpiolib: add support for OF GPIO configuration binding Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240809142405.315244-4-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox