1 // SPDX-License-Identifier: GPL-2.0-only
3 * GPIO driver for Exar XR17V35X chip
7 #include <linux/bitops.h>
8 #include <linux/device.h>
9 #include <linux/gpio/driver.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/pci.h>
14 #include <linux/platform_device.h>
16 #define EXAR_OFFSET_MPIOLVL_LO 0x90
17 #define EXAR_OFFSET_MPIOSEL_LO 0x93
18 #define EXAR_OFFSET_MPIOLVL_HI 0x96
19 #define EXAR_OFFSET_MPIOSEL_HI 0x99
21 #define DRIVER_NAME "gpio_exar"
23 static DEFINE_IDA(ida_index);
25 struct exar_gpio_chip {
26 struct gpio_chip gpio_chip;
31 unsigned int first_pin;
34 static void exar_update(struct gpio_chip *chip, unsigned int reg, int val,
37 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
40 mutex_lock(&exar_gpio->lock);
41 temp = readb(exar_gpio->regs + reg);
45 writeb(temp, exar_gpio->regs + reg);
46 mutex_unlock(&exar_gpio->lock);
49 static int exar_set_direction(struct gpio_chip *chip, int direction,
52 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
53 unsigned int addr = (offset + exar_gpio->first_pin) / 8 ?
54 EXAR_OFFSET_MPIOSEL_HI : EXAR_OFFSET_MPIOSEL_LO;
55 unsigned int bit = (offset + exar_gpio->first_pin) % 8;
57 exar_update(chip, addr, direction, bit);
61 static int exar_get(struct gpio_chip *chip, unsigned int reg)
63 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
66 mutex_lock(&exar_gpio->lock);
67 value = readb(exar_gpio->regs + reg);
68 mutex_unlock(&exar_gpio->lock);
73 static int exar_get_direction(struct gpio_chip *chip, unsigned int offset)
75 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
76 unsigned int addr = (offset + exar_gpio->first_pin) / 8 ?
77 EXAR_OFFSET_MPIOSEL_HI : EXAR_OFFSET_MPIOSEL_LO;
78 unsigned int bit = (offset + exar_gpio->first_pin) % 8;
80 return !!(exar_get(chip, addr) & BIT(bit));
83 static int exar_get_value(struct gpio_chip *chip, unsigned int offset)
85 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
86 unsigned int addr = (offset + exar_gpio->first_pin) / 8 ?
87 EXAR_OFFSET_MPIOLVL_HI : EXAR_OFFSET_MPIOLVL_LO;
88 unsigned int bit = (offset + exar_gpio->first_pin) % 8;
90 return !!(exar_get(chip, addr) & BIT(bit));
93 static void exar_set_value(struct gpio_chip *chip, unsigned int offset,
96 struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
97 unsigned int addr = (offset + exar_gpio->first_pin) / 8 ?
98 EXAR_OFFSET_MPIOLVL_HI : EXAR_OFFSET_MPIOLVL_LO;
99 unsigned int bit = (offset + exar_gpio->first_pin) % 8;
101 exar_update(chip, addr, value, bit);
104 static int exar_direction_output(struct gpio_chip *chip, unsigned int offset,
107 exar_set_value(chip, offset, value);
108 return exar_set_direction(chip, 0, offset);
111 static int exar_direction_input(struct gpio_chip *chip, unsigned int offset)
113 return exar_set_direction(chip, 1, offset);
116 static int gpio_exar_probe(struct platform_device *pdev)
118 struct pci_dev *pcidev = to_pci_dev(pdev->dev.parent);
119 struct exar_gpio_chip *exar_gpio;
120 u32 first_pin, ngpios;
125 * The UART driver must have mapped region 0 prior to registering this
128 p = pcim_iomap_table(pcidev)[0];
132 ret = device_property_read_u32(&pdev->dev, "exar,first-pin",
137 ret = device_property_read_u32(&pdev->dev, "ngpios", &ngpios);
141 exar_gpio = devm_kzalloc(&pdev->dev, sizeof(*exar_gpio), GFP_KERNEL);
145 mutex_init(&exar_gpio->lock);
147 index = ida_simple_get(&ida_index, 0, 0, GFP_KERNEL);
151 sprintf(exar_gpio->name, "exar_gpio%d", index);
152 exar_gpio->gpio_chip.label = exar_gpio->name;
153 exar_gpio->gpio_chip.parent = &pdev->dev;
154 exar_gpio->gpio_chip.direction_output = exar_direction_output;
155 exar_gpio->gpio_chip.direction_input = exar_direction_input;
156 exar_gpio->gpio_chip.get_direction = exar_get_direction;
157 exar_gpio->gpio_chip.get = exar_get_value;
158 exar_gpio->gpio_chip.set = exar_set_value;
159 exar_gpio->gpio_chip.base = -1;
160 exar_gpio->gpio_chip.ngpio = ngpios;
162 exar_gpio->index = index;
163 exar_gpio->first_pin = first_pin;
165 ret = devm_gpiochip_add_data(&pdev->dev,
166 &exar_gpio->gpio_chip, exar_gpio);
170 platform_set_drvdata(pdev, exar_gpio);
175 ida_simple_remove(&ida_index, index);
176 mutex_destroy(&exar_gpio->lock);
180 static int gpio_exar_remove(struct platform_device *pdev)
182 struct exar_gpio_chip *exar_gpio = platform_get_drvdata(pdev);
184 ida_simple_remove(&ida_index, exar_gpio->index);
185 mutex_destroy(&exar_gpio->lock);
190 static struct platform_driver gpio_exar_driver = {
191 .probe = gpio_exar_probe,
192 .remove = gpio_exar_remove,
198 module_platform_driver(gpio_exar_driver);
200 MODULE_ALIAS("platform:" DRIVER_NAME);
201 MODULE_DESCRIPTION("Exar GPIO driver");
203 MODULE_LICENSE("GPL");