Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1396442
| From | Joachim Eastwood <manabian@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs |
| Date | 2016-05-08 19:20 +0200 |
| Message-ID | <rwAx3-2D7-1@gated-at.bofh.it> (permalink) |
| References | <rwwD7-7FI-1@gated-at.bofh.it> <rwwD8-7FI-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Christian,
On 8 May 2016 at 15:08, Christian Lamparter <chunkeey@googlemail.com> wrote:
> From: Álvaro Fernández Rojas <noltari@gmail.com>
>
> This patch adds support for defining memory-mapped GPIOs which
> are compatible with the existing gpio-mmio interface. The generic
> library provides support for many memory-mapped GPIO controllers
> that are found in various on-board FPGA and ASIC solutions that
> are used to control board's switches, LEDs, chip-selects,
> Ethernet/USB PHY power, etc.
>
> For setting GPIO's there are three configurations:
> 1. single input/output register resource (named "dat"),
> 2. set/clear pair (named "set" and "clr"),
> 3. single output register resource and single input resource
> ("set" and dat").
>
> The configuration is detected by which resources are present.
> For the single output register, this drives a 1 by setting a bit
> and a zero by clearing a bit. For the set clr pair, this drives
> a 1 by setting a bit in the set register and clears it by setting
> a bit in the clear register. The configuration is detected by
> which resources are present.
>
> For setting the GPIO direction, there are three configurations:
> a. simple bidirectional GPIOs that requires no configuration.
> b. an output direction register (named "dirout")
> where a 1 bit indicates the GPIO is an output.
> c. an input direction register (named "dirin")
> where a 1 bit indicates the GPIO is an input.
>
> The first user for this binding is "wd,mbl-gpio".
>
> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
> Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
> ---
> +#define ADD(_name, _func) { .compatible = _name, .data = _func }
I don't see the point in having a macro for such a simple data
structure, but since this v8 and Linus hasn't complained I guess it's
fine.
Using a macro here makes it impossible to grep for 'compatible'. Doing
'git grep compatible drivers/gpio/' is sometimes very useful to see
which hardware the driver actually supports.
> +static const struct of_device_id bgpio_of_match[] = {
> + ADD("wd,mbl-gpio", bgpio_basic_mmio_parse_dt),
> + { }
> +};
> +#undef ADD
> +MODULE_DEVICE_TABLE(of, bgpio_of_match);
> +
> +static struct bgpio_pdata *bgpio_parse_dt(struct platform_device *pdev,
> + unsigned long *flags)
> +{
> + const int (*parse_dt)(struct platform_device *,
> + struct bgpio_pdata *, unsigned long *);
> + const struct device_node *node = pdev->dev.of_node;
> + const struct of_device_id *of_id;
> + struct bgpio_pdata *pdata;
> + int err = -ENODEV;
> +
> + of_id = of_match_node(bgpio_of_match, node);
> + if (!of_id)
> + return NULL;
> +
> + pdata = devm_kzalloc(&pdev->dev, sizeof(struct bgpio_pdata),
> + GFP_KERNEL);
> + if (!pdata)
> + return ERR_PTR(-ENOMEM);
> +
> + parse_dt = (const void *)of_id->data;
You can retrieve OF match data using of_device_get_match_data(). Saves
you a couple of lines and better explains what your doing.
> + if (parse_dt)
> + err = parse_dt(pdev, pdata, flags);
> + if (err)
> + return ERR_PTR(err);
> +
> + return pdata;
> +}
regards,
Joachim Eastwood
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v8 0/3] gpio: add DT support for memory-mapped GPIOs Christian Lamparter <chunkeey@googlemail.com> - 2016-05-08 15:10 +0200
[PATCH v8 1/3] gpio: dt-bindings: add wd,mbl-gpio bindings Christian Lamparter <chunkeey@googlemail.com> - 2016-05-08 15:10 +0200
Re: [PATCH v8 1/3] gpio: dt-bindings: add wd,mbl-gpio bindings Linus Walleij <linus.walleij@linaro.org> - 2016-05-10 14:00 +0200
[PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs Christian Lamparter <chunkeey@googlemail.com> - 2016-05-08 15:10 +0200
Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs Joachim Eastwood <manabian@gmail.com> - 2016-05-08 19:20 +0200
Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs Christian Lamparter <chunkeey@googlemail.com> - 2016-05-08 20:30 +0200
Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs Linus Walleij <linus.walleij@linaro.org> - 2016-05-10 14:10 +0200
Re: [PATCH v8 2/3] gpio: mmio: add DT support for memory-mapped GPIOs Christian Lamparter <chunkeey@googlemail.com> - 2016-05-10 22:00 +0200
[PATCH v8 3/3] gpio: move clps711x, moxart, ts4800 and gpio-ge into gpio-mmio Christian Lamparter <chunkeey@googlemail.com> - 2016-05-08 15:10 +0200
Re: [PATCH v8 0/3] gpio: add DT support for memory-mapped GPIOs Andy Shevchenko <andy.shevchenko@gmail.com> - 2016-05-08 15:20 +0200
csiph-web