Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1569831
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/8] pinctrl: stm32: use gpio-ranges to declare bank range |
| Date | 2017-01-30 16:30 +0100 |
| Message-ID | <t5m42-5BN-33@gated-at.bofh.it> (permalink) |
| References | <t4hpM-6ni-13@gated-at.bofh.it> <t4hpM-6ni-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, Jan 27, 2017 at 5:15 PM, Alexandre TORGUE
<alexandre.torgue@st.com> wrote:
> Use device tree entries to declare gpio range. It will allow to use
> no contiguous gpio bank and holes inside a bank.
>
> Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
(...)
> + of_property_read_string(np, "st,bank-name", &bank->gpio_chip.label);
> +
> + if (!of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, 0, &args))
> + bank_nr = args.args[1] / STM32_GPIO_PINS_PER_BANK;
> + else {
> + range->name = bank->gpio_chip.label;
> + range->id = bank_nr;
> + range->pin_base = range->id * STM32_GPIO_PINS_PER_BANK;
> + range->base = range->id * STM32_GPIO_PINS_PER_BANK;
> + range->npins = npins;
> + range->gc = &bank->gpio_chip;
> + pinctrl_add_gpio_range(pctl->pctl_dev,
> + &pctl->banks[bank_nr].range);
> + }
Why are you doing this?
There is already code in drivers/gpio/gpiolib-of.c to pick ranges
from the device tree and add when you're adding the GPIO chips.
Please use that or figure out what is needed to make it work for
you instead of reimplementing it.
Yours,
Linus Walleij
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 2/8] pinctrl: stm32: use gpio-ranges to declare bank range Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-27 17:20 +0100
Re: [PATCH 2/8] pinctrl: stm32: use gpio-ranges to declare bank range Linus Walleij <linus.walleij@linaro.org> - 2017-01-30 16:30 +0100
Re: [PATCH 2/8] pinctrl: stm32: use gpio-ranges to declare bank range Alexandre Torgue <alexandre.torgue@st.com> - 2017-01-30 17:40 +0100
Re: [PATCH 2/8] pinctrl: stm32: use gpio-ranges to declare bank range Linus Walleij <linus.walleij@linaro.org> - 2017-02-01 16:10 +0100
csiph-web