gpio: mmio: add MyBook Live GPIO support
authorChristian Lamparter <chunkeey@googlemail.com>
Fri, 13 May 2016 21:07:12 +0000 (23:07 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 8 Jun 2016 09:16:50 +0000 (11:16 +0200)
This patch adds support for the Western Digital's
MyBook Live memory-mapped GPIO controllers.

The GPIOs will be supported by the generic driver
for memory-mapped GPIO controllers.

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Acked-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-mmio.c

index af583bee86d049d9da1db0a6cdcc30ff68ac6acd..6ec144baeb11f1d124586b53ba353db7da7adab9 100644 (file)
@@ -573,6 +573,7 @@ static void __iomem *bgpio_map(struct platform_device *pdev,
 
 #ifdef CONFIG_OF
 static const struct of_device_id bgpio_of_match[] = {
+       { .compatible = "wd,mbl-gpio" },
        { }
 };
 MODULE_DEVICE_TABLE(of, bgpio_of_match);
@@ -592,6 +593,9 @@ static struct bgpio_pdata *bgpio_parse_dt(struct platform_device *pdev,
 
        pdata->base = -1;
 
+       if (of_property_read_bool(pdev->dev.of_node, "no-output"))
+               *flags |= BGPIOF_NO_OUTPUT;
+
        return pdata;
 }
 #else
This page took 0.025829 seconds and 5 git commands to generate.