Commit c0d30ecf authored by Christian Lamparter's avatar Christian Lamparter Committed by Linus Walleij

gpio: mmio: add MyBook Live GPIO support

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: default avatarChristian Lamparter <chunkeey@googlemail.com>
Acked-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e698613a
...@@ -573,6 +573,7 @@ static void __iomem *bgpio_map(struct platform_device *pdev, ...@@ -573,6 +573,7 @@ static void __iomem *bgpio_map(struct platform_device *pdev,
#ifdef CONFIG_OF #ifdef CONFIG_OF
static const struct of_device_id bgpio_of_match[] = { static const struct of_device_id bgpio_of_match[] = {
{ .compatible = "wd,mbl-gpio" },
{ } { }
}; };
MODULE_DEVICE_TABLE(of, bgpio_of_match); MODULE_DEVICE_TABLE(of, bgpio_of_match);
...@@ -592,6 +593,9 @@ static struct bgpio_pdata *bgpio_parse_dt(struct platform_device *pdev, ...@@ -592,6 +593,9 @@ static struct bgpio_pdata *bgpio_parse_dt(struct platform_device *pdev,
pdata->base = -1; pdata->base = -1;
if (of_property_read_bool(pdev->dev.of_node, "no-output"))
*flags |= BGPIOF_NO_OUTPUT;
return pdata; return pdata;
} }
#else #else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment