summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Dessenne <[email protected]>2026-02-05 09:07:49 +0100
committerPatrice Chotard <[email protected]>2026-02-24 14:09:45 +0100
commit7accb716c10c231e3785b47d02929919b3c5cd86 (patch)
treeb75a88e1277cde1cd93f35269a670a8db4596105
parent4f70106beafe30df8b0528a3d8b2543cd48fe241 (diff)
gpio: stm32-gpio: prevent the use of the secure protected pins
The hardware denies any access from the U-Boot non-secure world to the secure-protected pins. Hence, prevent any driver to request such a pin. Signed-off-by: Fabien Dessenne <[email protected]> Signed-off-by: Patrice Chotard <[email protected]> Reviewed-by: Patrick Delaunay <[email protected]>
-rw-r--r--drivers/gpio/stm32_gpio.c25
-rw-r--r--drivers/gpio/stm32_gpio_priv.h5
2 files changed, 30 insertions, 0 deletions
diff --git a/drivers/gpio/stm32_gpio.c b/drivers/gpio/stm32_gpio.c
index b8eb55465d3..e354a4148ca 100644
--- a/drivers/gpio/stm32_gpio.c
+++ b/drivers/gpio/stm32_gpio.c
@@ -32,6 +32,9 @@
#define OTYPE_BITS(gpio_pin) (gpio_pin)
#define OTYPE_MSK 1
+#define SECCFG_BITS(gpio_pin) (gpio_pin)
+#define SECCFG_MSK 1
+
static void stm32_gpio_set_moder(struct stm32_gpio_regs *regs,
int idx,
int mode)
@@ -89,6 +92,27 @@ static bool stm32_gpio_is_mapped(struct udevice *dev, int offset)
return !!(priv->gpio_range & BIT(offset));
}
+static int stm32_gpio_request(struct udevice *dev, unsigned int offset, const char *label)
+{
+ struct stm32_gpio_priv *priv = dev_get_priv(dev);
+ struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
+ struct stm32_gpio_regs *regs = priv->regs;
+ ulong drv_data = dev_get_driver_data(dev);
+
+ if (!stm32_gpio_is_mapped(dev, offset))
+ return -ENXIO;
+
+ /* Deny request access if IO is secured */
+ if ((drv_data & STM32_GPIO_FLAG_SEC_CTRL) &&
+ ((readl(&regs->seccfgr) >> SECCFG_BITS(offset)) & SECCFG_MSK)) {
+ dev_err(dev, "Failed to get secure IO %s %d @ %p\n",
+ uc_priv->bank_name, offset, regs);
+ return -EACCES;
+ }
+
+ return 0;
+}
+
static int stm32_gpio_direction_input(struct udevice *dev, unsigned offset)
{
struct stm32_gpio_priv *priv = dev_get_priv(dev);
@@ -238,6 +262,7 @@ static int stm32_gpio_get_flags(struct udevice *dev, unsigned int offset,
}
static const struct dm_gpio_ops gpio_stm32_ops = {
+ .request = stm32_gpio_request,
.direction_input = stm32_gpio_direction_input,
.direction_output = stm32_gpio_direction_output,
.get_value = stm32_gpio_get_value,
diff --git a/drivers/gpio/stm32_gpio_priv.h b/drivers/gpio/stm32_gpio_priv.h
index 662a000fe73..d89e9b8ed60 100644
--- a/drivers/gpio/stm32_gpio_priv.h
+++ b/drivers/gpio/stm32_gpio_priv.h
@@ -51,6 +51,8 @@ enum stm32_gpio_af {
STM32_GPIO_AF15
};
+#define STM32_GPIO_FLAG_SEC_CTRL BIT(0)
+
struct stm32_gpio_dsc {
u8 port;
u8 pin;
@@ -74,6 +76,9 @@ struct stm32_gpio_regs {
u32 bsrr; /* GPIO port bit set/reset */
u32 lckr; /* GPIO port configuration lock */
u32 afr[2]; /* GPIO alternate function */
+ u32 brr; /* GPIO port bit reset */
+ u32 rfu; /* Reserved */
+ u32 seccfgr; /* GPIO secure configuration */
};
struct stm32_gpio_priv {