1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * GPIO Testing Device Driver
5 * Copyright (C) 2014 Kamlakant Patel <kamlakant.patel@broadcom.com>
6 * Copyright (C) 2015-2016 Bamvor Jian Zhang <bamv2005@gmail.com>
7 * Copyright (C) 2017 Bartosz Golaszewski <brgl@bgdev.pl>
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/debugfs.h>
13 #include <linux/gpio/driver.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
16 #include <linux/irq_sim.h>
17 #include <linux/irqdomain.h>
18 #include <linux/mod_devicetable.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/property.h>
22 #include <linux/seq_file.h>
23 #include <linux/slab.h>
24 #include <linux/string_helpers.h>
25 #include <linux/uaccess.h>
29 #define GPIO_MOCKUP_MAX_GC 10
31 * We're storing two values per chip: the GPIO base and the number
34 #define GPIO_MOCKUP_MAX_RANGES (GPIO_MOCKUP_MAX_GC * 2)
35 /* Maximum of four properties + the sentinel. */
36 #define GPIO_MOCKUP_MAX_PROP 5
39 * struct gpio_pin_status - structure describing a GPIO status
40 * @dir: Configures direction of gpio as "in" or "out"
41 * @value: Configures status of the gpio as 0(low) or 1(high)
43 struct gpio_mockup_line_status {
49 struct gpio_mockup_chip {
51 struct gpio_mockup_line_status *lines;
52 struct irq_domain *irq_sim_domain;
53 struct dentry *dbg_dir;
57 struct gpio_mockup_dbgfs_private {
58 struct gpio_mockup_chip *chip;
59 struct gpio_desc *desc;
63 static int gpio_mockup_ranges[GPIO_MOCKUP_MAX_RANGES];
64 static int gpio_mockup_num_ranges;
65 module_param_array(gpio_mockup_ranges, int, &gpio_mockup_num_ranges, 0400);
67 static bool gpio_mockup_named_lines;
68 module_param_named(gpio_mockup_named_lines,
69 gpio_mockup_named_lines, bool, 0400);
71 static struct dentry *gpio_mockup_dbg_dir;
73 static int gpio_mockup_range_base(unsigned int index)
75 return gpio_mockup_ranges[index * 2];
78 static int gpio_mockup_range_ngpio(unsigned int index)
80 return gpio_mockup_ranges[index * 2 + 1];
83 static int __gpio_mockup_get(struct gpio_mockup_chip *chip,
86 return chip->lines[offset].value;
89 static int gpio_mockup_get(struct gpio_chip *gc, unsigned int offset)
91 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
94 mutex_lock(&chip->lock);
95 val = __gpio_mockup_get(chip, offset);
96 mutex_unlock(&chip->lock);
101 static int gpio_mockup_get_multiple(struct gpio_chip *gc,
102 unsigned long *mask, unsigned long *bits)
104 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
105 unsigned int bit, val;
107 mutex_lock(&chip->lock);
108 for_each_set_bit(bit, mask, gc->ngpio) {
109 val = __gpio_mockup_get(chip, bit);
110 __assign_bit(bit, bits, val);
112 mutex_unlock(&chip->lock);
117 static void __gpio_mockup_set(struct gpio_mockup_chip *chip,
118 unsigned int offset, int value)
120 chip->lines[offset].value = !!value;
123 static void gpio_mockup_set(struct gpio_chip *gc,
124 unsigned int offset, int value)
126 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
128 mutex_lock(&chip->lock);
129 __gpio_mockup_set(chip, offset, value);
130 mutex_unlock(&chip->lock);
133 static void gpio_mockup_set_multiple(struct gpio_chip *gc,
134 unsigned long *mask, unsigned long *bits)
136 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
139 mutex_lock(&chip->lock);
140 for_each_set_bit(bit, mask, gc->ngpio)
141 __gpio_mockup_set(chip, bit, test_bit(bit, bits));
142 mutex_unlock(&chip->lock);
145 static int gpio_mockup_apply_pull(struct gpio_mockup_chip *chip,
146 unsigned int offset, int value)
148 struct gpio_chip *gc = &chip->gc;
149 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
150 int curr, irq, irq_type, ret = 0;
152 mutex_lock(&chip->lock);
154 if (test_bit(FLAG_REQUESTED, &desc->flags) &&
155 !test_bit(FLAG_IS_OUT, &desc->flags)) {
156 curr = __gpio_mockup_get(chip, offset);
160 irq = irq_find_mapping(chip->irq_sim_domain, offset);
163 * This is fine - it just means, nobody is listening
164 * for interrupts on this line, otherwise
165 * irq_create_mapping() would have been called from
166 * the to_irq() callback.
170 irq_type = irq_get_trigger_type(irq);
172 if ((value == 1 && (irq_type & IRQ_TYPE_EDGE_RISING)) ||
173 (value == 0 && (irq_type & IRQ_TYPE_EDGE_FALLING))) {
174 ret = irq_set_irqchip_state(irq, IRQCHIP_STATE_PENDING,
182 /* Change the value unless we're actively driving the line. */
183 if (!test_bit(FLAG_REQUESTED, &desc->flags) ||
184 !test_bit(FLAG_IS_OUT, &desc->flags))
185 __gpio_mockup_set(chip, offset, value);
188 chip->lines[offset].pull = value;
189 mutex_unlock(&chip->lock);
193 static int gpio_mockup_set_config(struct gpio_chip *gc,
194 unsigned int offset, unsigned long config)
196 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
198 switch (pinconf_to_config_param(config)) {
199 case PIN_CONFIG_BIAS_PULL_UP:
200 return gpio_mockup_apply_pull(chip, offset, 1);
201 case PIN_CONFIG_BIAS_PULL_DOWN:
202 return gpio_mockup_apply_pull(chip, offset, 0);
209 static int gpio_mockup_dirout(struct gpio_chip *gc,
210 unsigned int offset, int value)
212 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
214 mutex_lock(&chip->lock);
215 chip->lines[offset].dir = GPIO_LINE_DIRECTION_OUT;
216 __gpio_mockup_set(chip, offset, value);
217 mutex_unlock(&chip->lock);
222 static int gpio_mockup_dirin(struct gpio_chip *gc, unsigned int offset)
224 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
226 mutex_lock(&chip->lock);
227 chip->lines[offset].dir = GPIO_LINE_DIRECTION_IN;
228 mutex_unlock(&chip->lock);
233 static int gpio_mockup_get_direction(struct gpio_chip *gc, unsigned int offset)
235 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
238 mutex_lock(&chip->lock);
239 direction = chip->lines[offset].dir;
240 mutex_unlock(&chip->lock);
245 static int gpio_mockup_to_irq(struct gpio_chip *gc, unsigned int offset)
247 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
249 return irq_create_mapping(chip->irq_sim_domain, offset);
252 static void gpio_mockup_free(struct gpio_chip *gc, unsigned int offset)
254 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
256 __gpio_mockup_set(chip, offset, chip->lines[offset].pull);
259 static ssize_t gpio_mockup_debugfs_read(struct file *file,
260 char __user *usr_buf,
261 size_t size, loff_t *ppos)
263 struct gpio_mockup_dbgfs_private *priv;
264 struct gpio_mockup_chip *chip;
265 struct seq_file *sfile;
266 struct gpio_chip *gc;
273 sfile = file->private_data;
274 priv = sfile->private;
278 val = gpio_mockup_get(gc, priv->offset);
279 cnt = snprintf(buf, sizeof(buf), "%d\n", val);
281 return simple_read_from_buffer(usr_buf, size, ppos, buf, cnt);
284 static ssize_t gpio_mockup_debugfs_write(struct file *file,
285 const char __user *usr_buf,
286 size_t size, loff_t *ppos)
288 struct gpio_mockup_dbgfs_private *priv;
290 struct seq_file *sfile;
295 rv = kstrtoint_from_user(usr_buf, size, 0, &val);
298 if (val != 0 && val != 1)
301 sfile = file->private_data;
302 priv = sfile->private;
303 rv = gpio_mockup_apply_pull(priv->chip, priv->offset, val);
310 static int gpio_mockup_debugfs_open(struct inode *inode, struct file *file)
312 return single_open(file, NULL, inode->i_private);
316 * Each mockup chip is represented by a directory named after the chip's device
317 * name under /sys/kernel/debug/gpio-mockup/. Each line is represented by
318 * a file using the line's offset as the name under the chip's directory.
320 * Reading from the line's file yields the current *value*, writing to the
321 * line's file changes the current *pull*. Default pull for mockup lines is
325 * - when a line pulled down is requested in output mode and driven high, its
326 * value will return to 0 once it's released
327 * - when the line is requested in output mode and driven high, writing 0 to
328 * the corresponding debugfs file will change the pull to down but the
329 * reported value will still be 1 until the line is released
330 * - line requested in input mode always reports the same value as its pull
332 * - when the line is requested in input mode and monitored for events, writing
333 * the same value to the debugfs file will be a noop, while writing the
334 * opposite value will generate a dummy interrupt with an appropriate edge
336 static const struct file_operations gpio_mockup_debugfs_ops = {
337 .owner = THIS_MODULE,
338 .open = gpio_mockup_debugfs_open,
339 .read = gpio_mockup_debugfs_read,
340 .write = gpio_mockup_debugfs_write,
342 .release = single_release,
345 static void gpio_mockup_debugfs_setup(struct device *dev,
346 struct gpio_mockup_chip *chip)
348 struct gpio_mockup_dbgfs_private *priv;
349 struct gpio_chip *gc;
355 devname = dev_name(&gc->gpiodev->dev);
357 chip->dbg_dir = debugfs_create_dir(devname, gpio_mockup_dbg_dir);
359 for (i = 0; i < gc->ngpio; i++) {
360 name = devm_kasprintf(dev, GFP_KERNEL, "%d", i);
364 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
370 priv->desc = gpiochip_get_desc(gc, i);
372 debugfs_create_file(name, 0600, chip->dbg_dir, priv,
373 &gpio_mockup_debugfs_ops);
377 static void gpio_mockup_debugfs_cleanup(void *data)
379 struct gpio_mockup_chip *chip = data;
381 debugfs_remove_recursive(chip->dbg_dir);
384 static void gpio_mockup_dispose_mappings(void *data)
386 struct gpio_mockup_chip *chip = data;
387 struct gpio_chip *gc = &chip->gc;
390 for (i = 0; i < gc->ngpio; i++) {
391 irq = irq_find_mapping(chip->irq_sim_domain, i);
393 irq_dispose_mapping(irq);
397 static int gpio_mockup_probe(struct platform_device *pdev)
399 struct gpio_mockup_chip *chip;
400 struct gpio_chip *gc;
408 rv = device_property_read_u32(dev, "gpio-base", &base);
412 rv = device_property_read_u16(dev, "nr-gpios", &ngpio);
416 rv = device_property_read_string(dev, "chip-label", &name);
418 name = dev_name(dev);
420 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
424 mutex_init(&chip->lock);
430 gc->owner = THIS_MODULE;
432 gc->get = gpio_mockup_get;
433 gc->set = gpio_mockup_set;
434 gc->get_multiple = gpio_mockup_get_multiple;
435 gc->set_multiple = gpio_mockup_set_multiple;
436 gc->direction_output = gpio_mockup_dirout;
437 gc->direction_input = gpio_mockup_dirin;
438 gc->get_direction = gpio_mockup_get_direction;
439 gc->set_config = gpio_mockup_set_config;
440 gc->to_irq = gpio_mockup_to_irq;
441 gc->free = gpio_mockup_free;
443 chip->lines = devm_kcalloc(dev, gc->ngpio,
444 sizeof(*chip->lines), GFP_KERNEL);
448 for (i = 0; i < gc->ngpio; i++)
449 chip->lines[i].dir = GPIO_LINE_DIRECTION_IN;
451 chip->irq_sim_domain = devm_irq_domain_create_sim(dev, NULL,
453 if (IS_ERR(chip->irq_sim_domain))
454 return PTR_ERR(chip->irq_sim_domain);
456 rv = devm_add_action_or_reset(dev, gpio_mockup_dispose_mappings, chip);
460 rv = devm_gpiochip_add_data(dev, &chip->gc, chip);
464 gpio_mockup_debugfs_setup(dev, chip);
466 return devm_add_action_or_reset(dev, gpio_mockup_debugfs_cleanup, chip);
469 static const struct of_device_id gpio_mockup_of_match[] = {
470 { .compatible = "gpio-mockup", },
473 MODULE_DEVICE_TABLE(of, gpio_mockup_of_match);
475 static struct platform_driver gpio_mockup_driver = {
477 .name = "gpio-mockup",
478 .of_match_table = gpio_mockup_of_match,
480 .probe = gpio_mockup_probe,
483 static struct platform_device *gpio_mockup_pdevs[GPIO_MOCKUP_MAX_GC];
485 static void gpio_mockup_unregister_pdevs(void)
487 struct platform_device *pdev;
488 struct fwnode_handle *fwnode;
491 for (i = 0; i < GPIO_MOCKUP_MAX_GC; i++) {
492 pdev = gpio_mockup_pdevs[i];
496 fwnode = dev_fwnode(&pdev->dev);
497 platform_device_unregister(pdev);
498 fwnode_remove_software_node(fwnode);
502 static int __init gpio_mockup_register_chip(int idx)
504 struct property_entry properties[GPIO_MOCKUP_MAX_PROP];
505 struct platform_device_info pdevinfo;
506 struct platform_device *pdev;
507 struct fwnode_handle *fwnode;
508 char **line_names = NULL;
513 memset(properties, 0, sizeof(properties));
514 memset(&pdevinfo, 0, sizeof(pdevinfo));
516 snprintf(chip_label, sizeof(chip_label), "gpio-mockup-%c", idx + 'A');
517 properties[prop++] = PROPERTY_ENTRY_STRING("chip-label", chip_label);
519 base = gpio_mockup_range_base(idx);
521 properties[prop++] = PROPERTY_ENTRY_U32("gpio-base", base);
523 ngpio = base < 0 ? gpio_mockup_range_ngpio(idx)
524 : gpio_mockup_range_ngpio(idx) - base;
525 properties[prop++] = PROPERTY_ENTRY_U16("nr-gpios", ngpio);
527 if (gpio_mockup_named_lines) {
528 line_names = kasprintf_strarray(GFP_KERNEL, chip_label, ngpio);
532 properties[prop++] = PROPERTY_ENTRY_STRING_ARRAY_LEN(
533 "gpio-line-names", line_names, ngpio);
536 fwnode = fwnode_create_software_node(properties, NULL);
537 if (IS_ERR(fwnode)) {
538 kfree_strarray(line_names, ngpio);
539 return PTR_ERR(fwnode);
542 pdevinfo.name = "gpio-mockup";
544 pdevinfo.fwnode = fwnode;
546 pdev = platform_device_register_full(&pdevinfo);
547 kfree_strarray(line_names, ngpio);
549 fwnode_remove_software_node(fwnode);
550 pr_err("error registering device");
551 return PTR_ERR(pdev);
554 gpio_mockup_pdevs[idx] = pdev;
559 static int __init gpio_mockup_init(void)
561 int i, num_chips, err;
563 if ((gpio_mockup_num_ranges % 2) ||
564 (gpio_mockup_num_ranges > GPIO_MOCKUP_MAX_RANGES))
567 /* Each chip is described by two values. */
568 num_chips = gpio_mockup_num_ranges / 2;
571 * The second value in the <base GPIO - number of GPIOS> pair must
572 * always be greater than 0.
574 for (i = 0; i < num_chips; i++) {
575 if (gpio_mockup_range_ngpio(i) < 0)
579 gpio_mockup_dbg_dir = debugfs_create_dir("gpio-mockup", NULL);
581 err = platform_driver_register(&gpio_mockup_driver);
583 pr_err("error registering platform driver\n");
584 debugfs_remove_recursive(gpio_mockup_dbg_dir);
588 for (i = 0; i < num_chips; i++) {
589 err = gpio_mockup_register_chip(i);
591 platform_driver_unregister(&gpio_mockup_driver);
592 gpio_mockup_unregister_pdevs();
593 debugfs_remove_recursive(gpio_mockup_dbg_dir);
601 static void __exit gpio_mockup_exit(void)
603 gpio_mockup_unregister_pdevs();
604 debugfs_remove_recursive(gpio_mockup_dbg_dir);
605 platform_driver_unregister(&gpio_mockup_driver);
608 module_init(gpio_mockup_init);
609 module_exit(gpio_mockup_exit);
611 MODULE_AUTHOR("Kamlakant Patel <kamlakant.patel@broadcom.com>");
612 MODULE_AUTHOR("Bamvor Jian Zhang <bamv2005@gmail.com>");
613 MODULE_AUTHOR("Bartosz Golaszewski <brgl@bgdev.pl>");
614 MODULE_DESCRIPTION("GPIO Testing driver");
615 MODULE_LICENSE("GPL v2");