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/slab.h>
23 #include <linux/string_helpers.h>
24 #include <linux/uaccess.h>
28 #define GPIO_MOCKUP_MAX_GC 10
30 * We're storing two values per chip: the GPIO base and the number
33 #define GPIO_MOCKUP_MAX_RANGES (GPIO_MOCKUP_MAX_GC * 2)
34 /* Maximum of four properties + the sentinel. */
35 #define GPIO_MOCKUP_MAX_PROP 5
38 * struct gpio_pin_status - structure describing a GPIO status
39 * @dir: Configures direction of gpio as "in" or "out"
40 * @value: Configures status of the gpio as 0(low) or 1(high)
42 struct gpio_mockup_line_status
{
48 struct gpio_mockup_chip
{
50 struct gpio_mockup_line_status
*lines
;
51 struct irq_domain
*irq_sim_domain
;
52 struct dentry
*dbg_dir
;
56 struct gpio_mockup_dbgfs_private
{
57 struct gpio_mockup_chip
*chip
;
58 struct gpio_desc
*desc
;
62 static int gpio_mockup_ranges
[GPIO_MOCKUP_MAX_RANGES
];
63 static int gpio_mockup_num_ranges
;
64 module_param_array(gpio_mockup_ranges
, int, &gpio_mockup_num_ranges
, 0400);
66 static bool gpio_mockup_named_lines
;
67 module_param_named(gpio_mockup_named_lines
,
68 gpio_mockup_named_lines
, bool, 0400);
70 static struct dentry
*gpio_mockup_dbg_dir
;
72 static int gpio_mockup_range_base(unsigned int index
)
74 return gpio_mockup_ranges
[index
* 2];
77 static int gpio_mockup_range_ngpio(unsigned int index
)
79 return gpio_mockup_ranges
[index
* 2 + 1];
82 static int __gpio_mockup_get(struct gpio_mockup_chip
*chip
,
85 return chip
->lines
[offset
].value
;
88 static int gpio_mockup_get(struct gpio_chip
*gc
, unsigned int offset
)
90 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
93 mutex_lock(&chip
->lock
);
94 val
= __gpio_mockup_get(chip
, offset
);
95 mutex_unlock(&chip
->lock
);
100 static int gpio_mockup_get_multiple(struct gpio_chip
*gc
,
101 unsigned long *mask
, unsigned long *bits
)
103 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
104 unsigned int bit
, val
;
106 mutex_lock(&chip
->lock
);
107 for_each_set_bit(bit
, mask
, gc
->ngpio
) {
108 val
= __gpio_mockup_get(chip
, bit
);
109 __assign_bit(bit
, bits
, val
);
111 mutex_unlock(&chip
->lock
);
116 static void __gpio_mockup_set(struct gpio_mockup_chip
*chip
,
117 unsigned int offset
, int value
)
119 chip
->lines
[offset
].value
= !!value
;
122 static void gpio_mockup_set(struct gpio_chip
*gc
,
123 unsigned int offset
, int value
)
125 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
127 mutex_lock(&chip
->lock
);
128 __gpio_mockup_set(chip
, offset
, value
);
129 mutex_unlock(&chip
->lock
);
132 static void gpio_mockup_set_multiple(struct gpio_chip
*gc
,
133 unsigned long *mask
, unsigned long *bits
)
135 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
138 mutex_lock(&chip
->lock
);
139 for_each_set_bit(bit
, mask
, gc
->ngpio
)
140 __gpio_mockup_set(chip
, bit
, test_bit(bit
, bits
));
141 mutex_unlock(&chip
->lock
);
144 static int gpio_mockup_apply_pull(struct gpio_mockup_chip
*chip
,
145 unsigned int offset
, int value
)
147 int curr
, irq
, irq_type
, ret
= 0;
148 struct gpio_desc
*desc
;
149 struct gpio_chip
*gc
;
152 desc
= &gc
->gpiodev
->descs
[offset
];
154 mutex_lock(&chip
->lock
);
156 if (test_bit(FLAG_REQUESTED
, &desc
->flags
) &&
157 !test_bit(FLAG_IS_OUT
, &desc
->flags
)) {
158 curr
= __gpio_mockup_get(chip
, offset
);
162 irq
= irq_find_mapping(chip
->irq_sim_domain
, offset
);
165 * This is fine - it just means, nobody is listening
166 * for interrupts on this line, otherwise
167 * irq_create_mapping() would have been called from
168 * the to_irq() callback.
172 irq_type
= irq_get_trigger_type(irq
);
174 if ((value
== 1 && (irq_type
& IRQ_TYPE_EDGE_RISING
)) ||
175 (value
== 0 && (irq_type
& IRQ_TYPE_EDGE_FALLING
))) {
176 ret
= irq_set_irqchip_state(irq
, IRQCHIP_STATE_PENDING
,
184 /* Change the value unless we're actively driving the line. */
185 if (!test_bit(FLAG_REQUESTED
, &desc
->flags
) ||
186 !test_bit(FLAG_IS_OUT
, &desc
->flags
))
187 __gpio_mockup_set(chip
, offset
, value
);
190 chip
->lines
[offset
].pull
= value
;
191 mutex_unlock(&chip
->lock
);
195 static int gpio_mockup_set_config(struct gpio_chip
*gc
,
196 unsigned int offset
, unsigned long config
)
198 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
200 switch (pinconf_to_config_param(config
)) {
201 case PIN_CONFIG_BIAS_PULL_UP
:
202 return gpio_mockup_apply_pull(chip
, offset
, 1);
203 case PIN_CONFIG_BIAS_PULL_DOWN
:
204 return gpio_mockup_apply_pull(chip
, offset
, 0);
211 static int gpio_mockup_dirout(struct gpio_chip
*gc
,
212 unsigned int offset
, int value
)
214 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
216 mutex_lock(&chip
->lock
);
217 chip
->lines
[offset
].dir
= GPIO_LINE_DIRECTION_OUT
;
218 __gpio_mockup_set(chip
, offset
, value
);
219 mutex_unlock(&chip
->lock
);
224 static int gpio_mockup_dirin(struct gpio_chip
*gc
, unsigned int offset
)
226 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
228 mutex_lock(&chip
->lock
);
229 chip
->lines
[offset
].dir
= GPIO_LINE_DIRECTION_IN
;
230 mutex_unlock(&chip
->lock
);
235 static int gpio_mockup_get_direction(struct gpio_chip
*gc
, unsigned int offset
)
237 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
240 mutex_lock(&chip
->lock
);
241 direction
= chip
->lines
[offset
].dir
;
242 mutex_unlock(&chip
->lock
);
247 static int gpio_mockup_to_irq(struct gpio_chip
*gc
, unsigned int offset
)
249 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
251 return irq_create_mapping(chip
->irq_sim_domain
, offset
);
254 static void gpio_mockup_free(struct gpio_chip
*gc
, unsigned int offset
)
256 struct gpio_mockup_chip
*chip
= gpiochip_get_data(gc
);
258 __gpio_mockup_set(chip
, offset
, chip
->lines
[offset
].pull
);
261 static ssize_t
gpio_mockup_debugfs_read(struct file
*file
,
262 char __user
*usr_buf
,
263 size_t size
, loff_t
*ppos
)
265 struct gpio_mockup_dbgfs_private
*priv
;
266 struct gpio_mockup_chip
*chip
;
267 struct seq_file
*sfile
;
268 struct gpio_chip
*gc
;
275 sfile
= file
->private_data
;
276 priv
= sfile
->private;
280 val
= gpio_mockup_get(gc
, priv
->offset
);
281 cnt
= snprintf(buf
, sizeof(buf
), "%d\n", val
);
283 return simple_read_from_buffer(usr_buf
, size
, ppos
, buf
, cnt
);
286 static ssize_t
gpio_mockup_debugfs_write(struct file
*file
,
287 const char __user
*usr_buf
,
288 size_t size
, loff_t
*ppos
)
290 struct gpio_mockup_dbgfs_private
*priv
;
292 struct seq_file
*sfile
;
297 rv
= kstrtoint_from_user(usr_buf
, size
, 0, &val
);
300 if (val
!= 0 && val
!= 1)
303 sfile
= file
->private_data
;
304 priv
= sfile
->private;
305 rv
= gpio_mockup_apply_pull(priv
->chip
, priv
->offset
, val
);
312 static int gpio_mockup_debugfs_open(struct inode
*inode
, struct file
*file
)
314 return single_open(file
, NULL
, inode
->i_private
);
318 * Each mockup chip is represented by a directory named after the chip's device
319 * name under /sys/kernel/debug/gpio-mockup/. Each line is represented by
320 * a file using the line's offset as the name under the chip's directory.
322 * Reading from the line's file yields the current *value*, writing to the
323 * line's file changes the current *pull*. Default pull for mockup lines is
327 * - when a line pulled down is requested in output mode and driven high, its
328 * value will return to 0 once it's released
329 * - when the line is requested in output mode and driven high, writing 0 to
330 * the corresponding debugfs file will change the pull to down but the
331 * reported value will still be 1 until the line is released
332 * - line requested in input mode always reports the same value as its pull
334 * - when the line is requested in input mode and monitored for events, writing
335 * the same value to the debugfs file will be a noop, while writing the
336 * opposite value will generate a dummy interrupt with an appropriate edge
338 static const struct file_operations gpio_mockup_debugfs_ops
= {
339 .owner
= THIS_MODULE
,
340 .open
= gpio_mockup_debugfs_open
,
341 .read
= gpio_mockup_debugfs_read
,
342 .write
= gpio_mockup_debugfs_write
,
344 .release
= single_release
,
347 static void gpio_mockup_debugfs_setup(struct device
*dev
,
348 struct gpio_mockup_chip
*chip
)
350 struct gpio_mockup_dbgfs_private
*priv
;
351 struct gpio_chip
*gc
;
357 devname
= dev_name(&gc
->gpiodev
->dev
);
359 chip
->dbg_dir
= debugfs_create_dir(devname
, gpio_mockup_dbg_dir
);
361 for (i
= 0; i
< gc
->ngpio
; i
++) {
362 name
= devm_kasprintf(dev
, GFP_KERNEL
, "%d", i
);
366 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
372 priv
->desc
= &gc
->gpiodev
->descs
[i
];
374 debugfs_create_file(name
, 0200, chip
->dbg_dir
, priv
,
375 &gpio_mockup_debugfs_ops
);
379 static void gpio_mockup_dispose_mappings(void *data
)
381 struct gpio_mockup_chip
*chip
= data
;
382 struct gpio_chip
*gc
= &chip
->gc
;
385 for (i
= 0; i
< gc
->ngpio
; i
++) {
386 irq
= irq_find_mapping(chip
->irq_sim_domain
, i
);
388 irq_dispose_mapping(irq
);
392 static int gpio_mockup_probe(struct platform_device
*pdev
)
394 struct gpio_mockup_chip
*chip
;
395 struct gpio_chip
*gc
;
403 rv
= device_property_read_u32(dev
, "gpio-base", &base
);
407 rv
= device_property_read_u16(dev
, "nr-gpios", &ngpio
);
411 rv
= device_property_read_string(dev
, "chip-label", &name
);
413 name
= dev_name(dev
);
415 chip
= devm_kzalloc(dev
, sizeof(*chip
), GFP_KERNEL
);
419 mutex_init(&chip
->lock
);
425 gc
->owner
= THIS_MODULE
;
427 gc
->get
= gpio_mockup_get
;
428 gc
->set
= gpio_mockup_set
;
429 gc
->get_multiple
= gpio_mockup_get_multiple
;
430 gc
->set_multiple
= gpio_mockup_set_multiple
;
431 gc
->direction_output
= gpio_mockup_dirout
;
432 gc
->direction_input
= gpio_mockup_dirin
;
433 gc
->get_direction
= gpio_mockup_get_direction
;
434 gc
->set_config
= gpio_mockup_set_config
;
435 gc
->to_irq
= gpio_mockup_to_irq
;
436 gc
->free
= gpio_mockup_free
;
438 chip
->lines
= devm_kcalloc(dev
, gc
->ngpio
,
439 sizeof(*chip
->lines
), GFP_KERNEL
);
443 for (i
= 0; i
< gc
->ngpio
; i
++)
444 chip
->lines
[i
].dir
= GPIO_LINE_DIRECTION_IN
;
446 chip
->irq_sim_domain
= devm_irq_domain_create_sim(dev
, NULL
,
448 if (IS_ERR(chip
->irq_sim_domain
))
449 return PTR_ERR(chip
->irq_sim_domain
);
451 rv
= devm_add_action_or_reset(dev
, gpio_mockup_dispose_mappings
, chip
);
455 rv
= devm_gpiochip_add_data(dev
, &chip
->gc
, chip
);
459 gpio_mockup_debugfs_setup(dev
, chip
);
464 static const struct of_device_id gpio_mockup_of_match
[] = {
465 { .compatible
= "gpio-mockup", },
468 MODULE_DEVICE_TABLE(of
, gpio_mockup_of_match
);
470 static struct platform_driver gpio_mockup_driver
= {
472 .name
= "gpio-mockup",
473 .of_match_table
= gpio_mockup_of_match
,
475 .probe
= gpio_mockup_probe
,
478 static struct platform_device
*gpio_mockup_pdevs
[GPIO_MOCKUP_MAX_GC
];
480 static void gpio_mockup_unregister_pdevs(void)
482 struct platform_device
*pdev
;
485 for (i
= 0; i
< GPIO_MOCKUP_MAX_GC
; i
++) {
486 pdev
= gpio_mockup_pdevs
[i
];
489 platform_device_unregister(pdev
);
493 static __init
char **gpio_mockup_make_line_names(const char *label
,
494 unsigned int num_lines
)
499 names
= kcalloc(num_lines
+ 1, sizeof(char *), GFP_KERNEL
);
503 for (i
= 0; i
< num_lines
; i
++) {
504 names
[i
] = kasprintf(GFP_KERNEL
, "%s-%u", label
, i
);
506 kfree_strarray(names
, i
);
514 static int __init
gpio_mockup_register_chip(int idx
)
516 struct property_entry properties
[GPIO_MOCKUP_MAX_PROP
];
517 struct platform_device_info pdevinfo
;
518 struct platform_device
*pdev
;
519 char **line_names
= NULL
;
524 memset(properties
, 0, sizeof(properties
));
525 memset(&pdevinfo
, 0, sizeof(pdevinfo
));
527 snprintf(chip_label
, sizeof(chip_label
), "gpio-mockup-%c", idx
+ 'A');
528 properties
[prop
++] = PROPERTY_ENTRY_STRING("chip-label", chip_label
);
530 base
= gpio_mockup_range_base(idx
);
532 properties
[prop
++] = PROPERTY_ENTRY_U32("gpio-base", base
);
534 ngpio
= base
< 0 ? gpio_mockup_range_ngpio(idx
)
535 : gpio_mockup_range_ngpio(idx
) - base
;
536 properties
[prop
++] = PROPERTY_ENTRY_U16("nr-gpios", ngpio
);
538 if (gpio_mockup_named_lines
) {
539 line_names
= gpio_mockup_make_line_names(chip_label
, ngpio
);
543 properties
[prop
++] = PROPERTY_ENTRY_STRING_ARRAY_LEN(
544 "gpio-line-names", line_names
, ngpio
);
547 pdevinfo
.name
= "gpio-mockup";
549 pdevinfo
.properties
= properties
;
551 pdev
= platform_device_register_full(&pdevinfo
);
552 kfree_strarray(line_names
, ngpio
);
554 pr_err("error registering device");
555 return PTR_ERR(pdev
);
558 gpio_mockup_pdevs
[idx
] = pdev
;
563 static int __init
gpio_mockup_init(void)
565 int i
, num_chips
, err
;
567 if ((gpio_mockup_num_ranges
% 2) ||
568 (gpio_mockup_num_ranges
> GPIO_MOCKUP_MAX_RANGES
))
571 /* Each chip is described by two values. */
572 num_chips
= gpio_mockup_num_ranges
/ 2;
575 * The second value in the <base GPIO - number of GPIOS> pair must
576 * always be greater than 0.
578 for (i
= 0; i
< num_chips
; i
++) {
579 if (gpio_mockup_range_ngpio(i
) < 0)
583 gpio_mockup_dbg_dir
= debugfs_create_dir("gpio-mockup", NULL
);
585 err
= platform_driver_register(&gpio_mockup_driver
);
587 pr_err("error registering platform driver\n");
588 debugfs_remove_recursive(gpio_mockup_dbg_dir
);
592 for (i
= 0; i
< num_chips
; i
++) {
593 err
= gpio_mockup_register_chip(i
);
595 platform_driver_unregister(&gpio_mockup_driver
);
596 gpio_mockup_unregister_pdevs();
597 debugfs_remove_recursive(gpio_mockup_dbg_dir
);
605 static void __exit
gpio_mockup_exit(void)
607 debugfs_remove_recursive(gpio_mockup_dbg_dir
);
608 platform_driver_unregister(&gpio_mockup_driver
);
609 gpio_mockup_unregister_pdevs();
612 module_init(gpio_mockup_init
);
613 module_exit(gpio_mockup_exit
);
615 MODULE_AUTHOR("Kamlakant Patel <kamlakant.patel@broadcom.com>");
616 MODULE_AUTHOR("Bamvor Jian Zhang <bamv2005@gmail.com>");
617 MODULE_AUTHOR("Bartosz Golaszewski <brgl@bgdev.pl>");
618 MODULE_DESCRIPTION("GPIO Testing driver");
619 MODULE_LICENSE("GPL v2");