1 // SPDX-License-Identifier: GPL-2.0+
3 * GPIO driver for virtio-based virtual GPIO controllers
5 * Copyright (C) 2021 metux IT consult
6 * Enrico Weigelt, metux IT consult <info@metux.net>
8 * Copyright (C) 2021 Linaro.
9 * Viresh Kumar <viresh.kumar@linaro.org>
12 #include <linux/completion.h>
13 #include <linux/err.h>
14 #include <linux/gpio/driver.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/mutex.h>
19 #include <linux/virtio_config.h>
20 #include <uapi/linux/virtio_gpio.h>
21 #include <uapi/linux/virtio_ids.h>
23 struct virtio_gpio_line {
24 struct mutex lock; /* Protects line operation */
25 struct completion completion;
26 struct virtio_gpio_request req ____cacheline_aligned;
27 struct virtio_gpio_response res ____cacheline_aligned;
32 struct virtio_device *vdev;
33 struct mutex lock; /* Protects virtqueue operation */
35 struct virtio_gpio_line *lines;
36 struct virtqueue *request_vq;
39 static int _virtio_gpio_req(struct virtio_gpio *vgpio, u16 type, u16 gpio,
40 u8 txvalue, u8 *rxvalue, void *response, u32 rxlen)
42 struct virtio_gpio_line *line = &vgpio->lines[gpio];
43 struct virtio_gpio_request *req = &line->req;
44 struct virtio_gpio_response *res = response;
45 struct scatterlist *sgs[2], req_sg, res_sg;
46 struct device *dev = &vgpio->vdev->dev;
50 * Prevent concurrent requests for the same line since we have
51 * pre-allocated request/response buffers for each GPIO line. Moreover
52 * Linux always accesses a GPIO line sequentially, so this locking shall
53 * always go through without any delays.
55 mutex_lock(&line->lock);
57 req->type = cpu_to_le16(type);
58 req->gpio = cpu_to_le16(gpio);
59 req->value = cpu_to_le32(txvalue);
61 sg_init_one(&req_sg, req, sizeof(*req));
62 sg_init_one(&res_sg, res, rxlen);
67 reinit_completion(&line->completion);
70 * Virtqueue callers need to ensure they don't call its APIs with other
71 * virtqueue operations at the same time.
73 mutex_lock(&vgpio->lock);
74 ret = virtqueue_add_sgs(vgpio->request_vq, sgs, 1, 1, line, GFP_KERNEL);
76 dev_err(dev, "failed to add request to vq\n");
77 mutex_unlock(&vgpio->lock);
81 virtqueue_kick(vgpio->request_vq);
82 mutex_unlock(&vgpio->lock);
84 if (!wait_for_completion_timeout(&line->completion, HZ)) {
85 dev_err(dev, "GPIO operation timed out\n");
90 if (unlikely(res->status != VIRTIO_GPIO_STATUS_OK)) {
91 dev_err(dev, "GPIO request failed: %d\n", gpio);
96 if (unlikely(line->rxlen != rxlen)) {
97 dev_err(dev, "GPIO operation returned incorrect len (%u : %u)\n",
104 *rxvalue = res->value;
107 mutex_unlock(&line->lock);
111 static int virtio_gpio_req(struct virtio_gpio *vgpio, u16 type, u16 gpio,
112 u8 txvalue, u8 *rxvalue)
114 struct virtio_gpio_line *line = &vgpio->lines[gpio];
115 struct virtio_gpio_response *res = &line->res;
117 return _virtio_gpio_req(vgpio, type, gpio, txvalue, rxvalue, res,
121 static void virtio_gpio_free(struct gpio_chip *gc, unsigned int gpio)
123 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
125 virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_SET_DIRECTION, gpio,
126 VIRTIO_GPIO_DIRECTION_NONE, NULL);
129 static int virtio_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio)
131 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
135 ret = virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_GET_DIRECTION, gpio, 0,
141 case VIRTIO_GPIO_DIRECTION_IN:
142 return GPIO_LINE_DIRECTION_IN;
143 case VIRTIO_GPIO_DIRECTION_OUT:
144 return GPIO_LINE_DIRECTION_OUT;
150 static int virtio_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio)
152 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
154 return virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_SET_DIRECTION, gpio,
155 VIRTIO_GPIO_DIRECTION_IN, NULL);
158 static int virtio_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio,
161 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
164 ret = virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_SET_VALUE, gpio, value, NULL);
168 return virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_SET_DIRECTION, gpio,
169 VIRTIO_GPIO_DIRECTION_OUT, NULL);
172 static int virtio_gpio_get(struct gpio_chip *gc, unsigned int gpio)
174 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
178 ret = virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_GET_VALUE, gpio, 0, &value);
179 return ret ? ret : value;
182 static void virtio_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value)
184 struct virtio_gpio *vgpio = gpiochip_get_data(gc);
186 virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_SET_VALUE, gpio, value, NULL);
189 static void virtio_gpio_request_vq(struct virtqueue *vq)
191 struct virtio_gpio_line *line;
195 line = virtqueue_get_buf(vq, &len);
200 complete(&line->completion);
204 static void virtio_gpio_free_vqs(struct virtio_device *vdev)
206 vdev->config->reset(vdev);
207 vdev->config->del_vqs(vdev);
210 static int virtio_gpio_alloc_vqs(struct virtio_gpio *vgpio,
211 struct virtio_device *vdev)
213 const char * const names[] = { "requestq" };
214 vq_callback_t *cbs[] = {
215 virtio_gpio_request_vq,
217 struct virtqueue *vqs[1] = { NULL };
220 ret = virtio_find_vqs(vdev, 1, vqs, cbs, names, NULL);
222 dev_err(&vdev->dev, "failed to find vqs: %d\n", ret);
227 dev_err(&vdev->dev, "failed to find requestq vq\n");
230 vgpio->request_vq = vqs[0];
235 static const char **virtio_gpio_get_names(struct virtio_gpio *vgpio,
236 u32 gpio_names_size, u16 ngpio)
238 struct virtio_gpio_response_get_names *res;
239 struct device *dev = &vgpio->vdev->dev;
240 u8 *gpio_names, *str;
244 if (!gpio_names_size)
247 len = sizeof(*res) + gpio_names_size;
248 res = devm_kzalloc(dev, len, GFP_KERNEL);
251 gpio_names = res->value;
253 ret = _virtio_gpio_req(vgpio, VIRTIO_GPIO_MSG_GET_NAMES, 0, 0, NULL,
256 dev_err(dev, "Failed to get GPIO names: %d\n", ret);
260 names = devm_kcalloc(dev, ngpio, sizeof(*names), GFP_KERNEL);
264 /* NULL terminate the string instead of checking it */
265 gpio_names[gpio_names_size - 1] = '\0';
267 for (i = 0, str = gpio_names; i < ngpio; i++) {
269 str += strlen(str) + 1; /* zero-length strings are allowed */
271 if (str > gpio_names + gpio_names_size) {
272 dev_err(dev, "gpio_names block is too short (%d)\n", i);
280 static int virtio_gpio_probe(struct virtio_device *vdev)
282 struct virtio_gpio_config config;
283 struct device *dev = &vdev->dev;
284 struct virtio_gpio *vgpio;
289 vgpio = devm_kzalloc(dev, sizeof(*vgpio), GFP_KERNEL);
293 /* Read configuration */
294 virtio_cread_bytes(vdev, 0, &config, sizeof(config));
295 gpio_names_size = le32_to_cpu(config.gpio_names_size);
296 ngpio = le16_to_cpu(config.ngpio);
298 dev_err(dev, "Number of GPIOs can't be zero\n");
302 vgpio->lines = devm_kcalloc(dev, ngpio, sizeof(*vgpio->lines), GFP_KERNEL);
306 for (i = 0; i < ngpio; i++) {
307 mutex_init(&vgpio->lines[i].lock);
308 init_completion(&vgpio->lines[i].completion);
311 mutex_init(&vgpio->lock);
315 vgpio->gc.free = virtio_gpio_free;
316 vgpio->gc.get_direction = virtio_gpio_get_direction;
317 vgpio->gc.direction_input = virtio_gpio_direction_input;
318 vgpio->gc.direction_output = virtio_gpio_direction_output;
319 vgpio->gc.get = virtio_gpio_get;
320 vgpio->gc.set = virtio_gpio_set;
321 vgpio->gc.ngpio = ngpio;
322 vgpio->gc.base = -1; /* Allocate base dynamically */
323 vgpio->gc.label = dev_name(dev);
324 vgpio->gc.parent = dev;
325 vgpio->gc.owner = THIS_MODULE;
326 vgpio->gc.can_sleep = true;
328 ret = virtio_gpio_alloc_vqs(vgpio, vdev);
332 /* Mark the device ready to perform operations from within probe() */
333 virtio_device_ready(vdev);
335 vgpio->gc.names = virtio_gpio_get_names(vgpio, gpio_names_size, ngpio);
337 ret = gpiochip_add_data(&vgpio->gc, vgpio);
339 virtio_gpio_free_vqs(vdev);
340 dev_err(dev, "Failed to add virtio-gpio controller\n");
346 static void virtio_gpio_remove(struct virtio_device *vdev)
348 struct virtio_gpio *vgpio = vdev->priv;
350 gpiochip_remove(&vgpio->gc);
351 virtio_gpio_free_vqs(vdev);
354 static const struct virtio_device_id id_table[] = {
355 { VIRTIO_ID_GPIO, VIRTIO_DEV_ANY_ID },
358 MODULE_DEVICE_TABLE(virtio, id_table);
360 static struct virtio_driver virtio_gpio_driver = {
361 .id_table = id_table,
362 .probe = virtio_gpio_probe,
363 .remove = virtio_gpio_remove,
365 .name = KBUILD_MODNAME,
366 .owner = THIS_MODULE,
369 module_virtio_driver(virtio_gpio_driver);
371 MODULE_AUTHOR("Enrico Weigelt, metux IT consult <info@metux.net>");
372 MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
373 MODULE_DESCRIPTION("VirtIO GPIO driver");
374 MODULE_LICENSE("GPL");