diff mbox series

[1/5] gpio: of: Support SPI nonstandard GPIO properties

Message ID 20180101133749.29567-2-linus.walleij@linaro.org
State New
Headers show
Series Rewrite GPIO SPI to use descriptors | expand

Commit Message

Linus Walleij Jan. 1, 2018, 1:37 p.m. UTC
Before it was clearly established that all GPIO properties in the
device tree shall be named "foo-gpios" (with the deprecated variant
"foo-gpio" for single lines) we unfortunately merged a few bindings
which named the lines "gpio-foo" instead.

This is most prominent in the GPIO SPI driver in Linux which names
the lines "gpio-sck", "gpio-mosi" and "gpio-miso".

As we want to switch the GPIO SPI driver to using descriptors, we
need devm_gpiod_get() to return something reasonable when looking
up these in the device tree.

Put in a special #ifdef:ed kludge to do this special lookup only
for the SPI case and gets compiled out if we're not enabling SPI.
If we have more oddly defined legacy GPIOs like this, they can be
handled in a similar manner.

Cc: Rob Herring <robh@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

---
 drivers/gpio/gpiolib-of.c | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

-- 
2.14.3

--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Mark Brown Jan. 3, 2018, 3:04 p.m. UTC | #1
On Mon, Jan 01, 2018 at 02:37:45PM +0100, Linus Walleij wrote:

> Before it was clearly established that all GPIO properties in the

> device tree shall be named "foo-gpios" (with the deprecated variant

> "foo-gpio" for single lines) we unfortunately merged a few bindings

> which named the lines "gpio-foo" instead.


Can we get this merged during the upcoming merge window to make the rest
of the series easier to handle please?
Rob Herring Jan. 3, 2018, 3:23 p.m. UTC | #2
On Mon, Jan 1, 2018 at 7:37 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> Before it was clearly established that all GPIO properties in the

> device tree shall be named "foo-gpios" (with the deprecated variant

> "foo-gpio" for single lines) we unfortunately merged a few bindings

> which named the lines "gpio-foo" instead.

>

> This is most prominent in the GPIO SPI driver in Linux which names

> the lines "gpio-sck", "gpio-mosi" and "gpio-miso".

>

> As we want to switch the GPIO SPI driver to using descriptors, we

> need devm_gpiod_get() to return something reasonable when looking

> up these in the device tree.

>

> Put in a special #ifdef:ed kludge to do this special lookup only

> for the SPI case and gets compiled out if we're not enabling SPI.

> If we have more oddly defined legacy GPIOs like this, they can be

> handled in a similar manner.

>

> Cc: Rob Herring <robh@kernel.org>

> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

> ---

>  drivers/gpio/gpiolib-of.c | 36 ++++++++++++++++++++++++++++++++++++

>  1 file changed, 36 insertions(+)

>

> diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c

> index e0d59e61b52f..0f2d096c78a3 100644

> --- a/drivers/gpio/gpiolib-of.c

> +++ b/drivers/gpio/gpiolib-of.c

> @@ -117,6 +117,37 @@ int of_get_named_gpio_flags(struct device_node *np, const char *list_name,

>  }

>  EXPORT_SYMBOL(of_get_named_gpio_flags);

>

> +/*

> + * The SPI GPIO bindings happened before we managed to establish that GPIO

> + * properties should be named "foo-gpios" so we have this special kludge for

> + * them.

> + */

> +#ifdef CONFIG_SPI_MASTER

> +static struct gpio_desc *of_find_spi_gpio(struct device *dev, const char *con_id,

> +                                         enum of_gpio_flags *of_flags)

> +{

> +       char prop_name[32]; /* 32 is max size of property name */

> +       struct device_node *np = dev->of_node;

> +       struct gpio_desc *desc;


Instead of the ifdef:

if (!IS_ENABLED(CONFIG_SPI_MASTER))
  return ERR_PTR(-ENOENT);

Or merge the condition with the if below.

> +

> +       /* Allow this specifically for "spi-gpio" devices */

> +       if (!of_device_is_compatible(np, "spi-gpio") || !con_id)

> +               return ERR_PTR(-ENOENT);

> +

> +       /* Will be "gpio-sck", "gpio-mosi" or "gpio-miso" */

> +       snprintf(prop_name, sizeof(prop_name), "%s-%s", "gpio", con_id);

> +

> +       desc = of_get_named_gpiod_flags(np, prop_name, 0, of_flags);

> +       return desc;

> +}

> +#else

> +static struct gpio_desc *of_find_spi_gpio(struct device *dev, const char *con_id,

> +                                         enum of_gpio_flags *of_flags)

> +{

> +       return ERR_PTR(-ENOENT);

> +}

> +#endif

> +

--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Linus Walleij Jan. 4, 2018, 8:24 p.m. UTC | #3
On Wed, Jan 3, 2018 at 4:23 PM, Rob Herring <robh@kernel.org> wrote:
> On Mon, Jan 1, 2018 at 7:37 AM, Linus Walleij <linus.walleij@linaro.org> wrote:


>> +/*

>> + * The SPI GPIO bindings happened before we managed to establish that GPIO

>> + * properties should be named "foo-gpios" so we have this special kludge for

>> + * them.

>> + */

>> +#ifdef CONFIG_SPI_MASTER

>> +static struct gpio_desc *of_find_spi_gpio(struct device *dev, const char *con_id,

>> +                                         enum of_gpio_flags *of_flags)

>> +{

>> +       char prop_name[32]; /* 32 is max size of property name */

>> +       struct device_node *np = dev->of_node;

>> +       struct gpio_desc *desc;

>

> Instead of the ifdef:

>

> if (!IS_ENABLED(CONFIG_SPI_MASTER))

>   return ERR_PTR(-ENOENT);

>

> Or merge the condition with the if below.


I was consciously exploting the fact the CONFIG_SPI_MASTER is bool,
but I guess that can be fragile if someone decides to modularize it so, OK.

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Andy Shevchenko Jan. 5, 2018, 10:21 a.m. UTC | #4
On Thu, Jan 4, 2018 at 10:24 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Wed, Jan 3, 2018 at 4:23 PM, Rob Herring <robh@kernel.org> wrote:


>> Instead of the ifdef:

>>

>> if (!IS_ENABLED(CONFIG_SPI_MASTER))

>>   return ERR_PTR(-ENOENT);

>>

>> Or merge the condition with the if below.

>

> I was consciously exploting the fact the CONFIG_SPI_MASTER is bool,

> but I guess that can be fragile if someone decides to modularize it so, OK.


Just a side note, we have IS_BUILTIN() for booleans.

-- 
With Best Regards,
Andy Shevchenko
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index e0d59e61b52f..0f2d096c78a3 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -117,6 +117,37 @@  int of_get_named_gpio_flags(struct device_node *np, const char *list_name,
 }
 EXPORT_SYMBOL(of_get_named_gpio_flags);
 
+/*
+ * The SPI GPIO bindings happened before we managed to establish that GPIO
+ * properties should be named "foo-gpios" so we have this special kludge for
+ * them.
+ */
+#ifdef CONFIG_SPI_MASTER
+static struct gpio_desc *of_find_spi_gpio(struct device *dev, const char *con_id,
+					  enum of_gpio_flags *of_flags)
+{
+	char prop_name[32]; /* 32 is max size of property name */
+	struct device_node *np = dev->of_node;
+	struct gpio_desc *desc;
+
+	/* Allow this specifically for "spi-gpio" devices */
+	if (!of_device_is_compatible(np, "spi-gpio") || !con_id)
+		return ERR_PTR(-ENOENT);
+
+	/* Will be "gpio-sck", "gpio-mosi" or "gpio-miso" */
+	snprintf(prop_name, sizeof(prop_name), "%s-%s", "gpio", con_id);
+
+	desc = of_get_named_gpiod_flags(np, prop_name, 0, of_flags);
+	return desc;
+}
+#else
+static struct gpio_desc *of_find_spi_gpio(struct device *dev, const char *con_id,
+					  enum of_gpio_flags *of_flags)
+{
+	return ERR_PTR(-ENOENT);
+}
+#endif
+
 struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
 			       unsigned int idx,
 			       enum gpio_lookup_flags *flags)
@@ -126,6 +157,7 @@  struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
 	struct gpio_desc *desc;
 	unsigned int i;
 
+	/* Try GPIO property "foo-gpios" and "foo-gpio" */
 	for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
 		if (con_id)
 			snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id,
@@ -140,6 +172,10 @@  struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
 			break;
 	}
 
+	/* Special handling for SPI GPIOs if used */
+	if (IS_ERR(desc))
+		desc = of_find_spi_gpio(dev, con_id, &of_flags);
+
 	if (IS_ERR(desc))
 		return desc;