1 // SPDX-License-Identifier: GPL-2.0+
3 * gpiolib support for Wolfson WM835x PMICs
5 * Copyright 2009 Wolfson Microelectronics PLC.
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
11 #include <linux/gpio/driver.h>
12 #include <linux/kernel.h>
13 #include <linux/mfd/core.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
18 #include <linux/mfd/wm8350/core.h>
19 #include <linux/mfd/wm8350/gpio.h>
21 struct wm8350_gpio_data {
22 struct wm8350 *wm8350;
23 struct gpio_chip gpio_chip;
26 static int wm8350_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
28 struct wm8350_gpio_data *wm8350_gpio = gpiochip_get_data(chip);
29 struct wm8350 *wm8350 = wm8350_gpio->wm8350;
31 return wm8350_set_bits(wm8350, WM8350_GPIO_CONFIGURATION_I_O,
35 static int wm8350_gpio_get(struct gpio_chip *chip, unsigned offset)
37 struct wm8350_gpio_data *wm8350_gpio = gpiochip_get_data(chip);
38 struct wm8350 *wm8350 = wm8350_gpio->wm8350;
41 ret = wm8350_reg_read(wm8350, WM8350_GPIO_LEVEL);
45 if (ret & (1 << offset))
51 static void wm8350_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
53 struct wm8350_gpio_data *wm8350_gpio = gpiochip_get_data(chip);
54 struct wm8350 *wm8350 = wm8350_gpio->wm8350;
57 wm8350_set_bits(wm8350, WM8350_GPIO_LEVEL, 1 << offset);
59 wm8350_clear_bits(wm8350, WM8350_GPIO_LEVEL, 1 << offset);
62 static int wm8350_gpio_direction_out(struct gpio_chip *chip,
63 unsigned offset, int value)
65 struct wm8350_gpio_data *wm8350_gpio = gpiochip_get_data(chip);
66 struct wm8350 *wm8350 = wm8350_gpio->wm8350;
69 ret = wm8350_clear_bits(wm8350, WM8350_GPIO_CONFIGURATION_I_O,
74 /* Don't have an atomic direction/value setup */
75 wm8350_gpio_set(chip, offset, value);
80 static int wm8350_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
82 struct wm8350_gpio_data *wm8350_gpio = gpiochip_get_data(chip);
83 struct wm8350 *wm8350 = wm8350_gpio->wm8350;
85 if (!wm8350->irq_base)
88 return wm8350->irq_base + WM8350_IRQ_GPIO(offset);
91 static const struct gpio_chip template_chip = {
94 .direction_input = wm8350_gpio_direction_in,
95 .get = wm8350_gpio_get,
96 .direction_output = wm8350_gpio_direction_out,
97 .set = wm8350_gpio_set,
98 .to_irq = wm8350_gpio_to_irq,
102 static int wm8350_gpio_probe(struct platform_device *pdev)
104 struct wm8350 *wm8350 = dev_get_drvdata(pdev->dev.parent);
105 struct wm8350_platform_data *pdata = dev_get_platdata(wm8350->dev);
106 struct wm8350_gpio_data *wm8350_gpio;
108 wm8350_gpio = devm_kzalloc(&pdev->dev, sizeof(*wm8350_gpio),
110 if (wm8350_gpio == NULL)
113 wm8350_gpio->wm8350 = wm8350;
114 wm8350_gpio->gpio_chip = template_chip;
115 wm8350_gpio->gpio_chip.ngpio = 13;
116 wm8350_gpio->gpio_chip.parent = &pdev->dev;
117 if (pdata && pdata->gpio_base)
118 wm8350_gpio->gpio_chip.base = pdata->gpio_base;
120 wm8350_gpio->gpio_chip.base = -1;
122 return devm_gpiochip_add_data(&pdev->dev, &wm8350_gpio->gpio_chip, wm8350_gpio);
125 static struct platform_driver wm8350_gpio_driver = {
126 .driver.name = "wm8350-gpio",
127 .probe = wm8350_gpio_probe,
130 static int __init wm8350_gpio_init(void)
132 return platform_driver_register(&wm8350_gpio_driver);
134 subsys_initcall(wm8350_gpio_init);
136 static void __exit wm8350_gpio_exit(void)
138 platform_driver_unregister(&wm8350_gpio_driver);
140 module_exit(wm8350_gpio_exit);
142 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
143 MODULE_DESCRIPTION("GPIO interface for WM8350 PMICs");
144 MODULE_LICENSE("GPL");
145 MODULE_ALIAS("platform:wm8350-gpio");