Merge tag 'timers_urgent_for_v5.11_rc5' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / gpio / gpio-mockup.c
CommitLineData
f2f67983 1// SPDX-License-Identifier: GPL-2.0-or-later
0f98dd1b
BJZ
2/*
3 * GPIO Testing Device Driver
4 *
5 * Copyright (C) 2014 Kamlakant Patel <kamlakant.patel@broadcom.com>
4f9a4cd6 6 * Copyright (C) 2015-2016 Bamvor Jian Zhang <bamv2005@gmail.com>
c60c7f4c 7 * Copyright (C) 2017 Bartosz Golaszewski <brgl@bgdev.pl>
0f98dd1b
BJZ
8 */
9
56f6cb35
BG
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
726a4453 12#include <linux/debugfs.h>
726a4453 13#include <linux/gpio/driver.h>
e2ff7408
BG
14#include <linux/interrupt.h>
15#include <linux/irq.h>
b4c495f0 16#include <linux/irq_sim.h>
337cbeb2 17#include <linux/irqdomain.h>
43ddebdd 18#include <linux/mod_devicetable.h>
726a4453
BG
19#include <linux/module.h>
20#include <linux/platform_device.h>
3ea47b44 21#include <linux/property.h>
726a4453 22#include <linux/slab.h>
582be05e 23#include <linux/string_helpers.h>
726a4453 24#include <linux/uaccess.h>
9202ba23
BG
25
26#include "gpiolib.h"
0f98dd1b 27
b9576d03 28#define GPIO_MOCKUP_MAX_GC 10
b652336d
BG
29/*
30 * We're storing two values per chip: the GPIO base and the number
31 * of GPIO lines.
32 */
33#define GPIO_MOCKUP_MAX_RANGES (GPIO_MOCKUP_MAX_GC * 2)
383bb2de
BG
34/* Maximum of four properties + the sentinel. */
35#define GPIO_MOCKUP_MAX_PROP 5
0f98dd1b 36
0f98dd1b
BJZ
37/*
38 * struct gpio_pin_status - structure describing a GPIO status
e42615ec 39 * @dir: Configures direction of gpio as "in" or "out"
0f98dd1b
BJZ
40 * @value: Configures status of the gpio as 0(low) or 1(high)
41 */
ca409160
BG
42struct gpio_mockup_line_status {
43 int dir;
5b7908c0 44 int value;
2a9e2740 45 int pull;
e2ff7408
BG
46};
47
ca409160 48struct gpio_mockup_chip {
0f98dd1b 49 struct gpio_chip gc;
ca409160 50 struct gpio_mockup_line_status *lines;
337cbeb2 51 struct irq_domain *irq_sim_domain;
9202ba23 52 struct dentry *dbg_dir;
9212492f 53 struct mutex lock;
9202ba23
BG
54};
55
56struct gpio_mockup_dbgfs_private {
57 struct gpio_mockup_chip *chip;
58 struct gpio_desc *desc;
83336668 59 unsigned int offset;
0f98dd1b
BJZ
60};
61
b652336d 62static int gpio_mockup_ranges[GPIO_MOCKUP_MAX_RANGES];
e63a006f
BG
63static int gpio_mockup_num_ranges;
64module_param_array(gpio_mockup_ranges, int, &gpio_mockup_num_ranges, 0400);
0f98dd1b 65
8a68ea00
BG
66static bool gpio_mockup_named_lines;
67module_param_named(gpio_mockup_named_lines,
68 gpio_mockup_named_lines, bool, 0400);
69
9202ba23 70static struct dentry *gpio_mockup_dbg_dir;
0f98dd1b 71
cd9835f1
BG
72static int gpio_mockup_range_base(unsigned int index)
73{
74 return gpio_mockup_ranges[index * 2];
75}
76
77static int gpio_mockup_range_ngpio(unsigned int index)
78{
79 return gpio_mockup_ranges[index * 2 + 1];
80}
81
e09313ce
BG
82static int __gpio_mockup_get(struct gpio_mockup_chip *chip,
83 unsigned int offset)
0f98dd1b 84{
ca409160 85 return chip->lines[offset].value;
0f98dd1b
BJZ
86}
87
9212492f
BG
88static int gpio_mockup_get(struct gpio_chip *gc, unsigned int offset)
89{
90 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
91 int val;
92
93 mutex_lock(&chip->lock);
e09313ce 94 val = __gpio_mockup_get(chip, offset);
9212492f
BG
95 mutex_unlock(&chip->lock);
96
97 return val;
98}
99
cbf1e092
BG
100static int gpio_mockup_get_multiple(struct gpio_chip *gc,
101 unsigned long *mask, unsigned long *bits)
102{
103 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
104 unsigned int bit, val;
105
106 mutex_lock(&chip->lock);
107 for_each_set_bit(bit, mask, gc->ngpio) {
e09313ce 108 val = __gpio_mockup_get(chip, bit);
cbf1e092
BG
109 __assign_bit(bit, bits, val);
110 }
111 mutex_unlock(&chip->lock);
112
113 return 0;
114}
115
e09313ce 116static void __gpio_mockup_set(struct gpio_mockup_chip *chip,
9212492f 117 unsigned int offset, int value)
0f98dd1b 118{
ca409160 119 chip->lines[offset].value = !!value;
0f98dd1b
BJZ
120}
121
9212492f
BG
122static void gpio_mockup_set(struct gpio_chip *gc,
123 unsigned int offset, int value)
124{
125 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
126
127 mutex_lock(&chip->lock);
e09313ce 128 __gpio_mockup_set(chip, offset, value);
9212492f
BG
129 mutex_unlock(&chip->lock);
130}
131
c47bee95
BG
132static void gpio_mockup_set_multiple(struct gpio_chip *gc,
133 unsigned long *mask, unsigned long *bits)
134{
9212492f 135 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
c47bee95
BG
136 unsigned int bit;
137
9212492f 138 mutex_lock(&chip->lock);
c47bee95 139 for_each_set_bit(bit, mask, gc->ngpio)
e09313ce 140 __gpio_mockup_set(chip, bit, test_bit(bit, bits));
9212492f 141 mutex_unlock(&chip->lock);
c47bee95
BG
142}
143
64e7112e
KG
144static int gpio_mockup_apply_pull(struct gpio_mockup_chip *chip,
145 unsigned int offset, int value)
146{
337cbeb2 147 int curr, irq, irq_type, ret = 0;
64e7112e
KG
148 struct gpio_desc *desc;
149 struct gpio_chip *gc;
64e7112e
KG
150
151 gc = &chip->gc;
152 desc = &gc->gpiodev->descs[offset];
64e7112e
KG
153
154 mutex_lock(&chip->lock);
155
156 if (test_bit(FLAG_REQUESTED, &desc->flags) &&
ee8598ae 157 !test_bit(FLAG_IS_OUT, &desc->flags)) {
64e7112e
KG
158 curr = __gpio_mockup_get(chip, offset);
159 if (curr == value)
160 goto out;
161
337cbeb2
BG
162 irq = irq_find_mapping(chip->irq_sim_domain, offset);
163 if (!irq)
164 /*
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.
169 */
170 goto set_value;
171
64e7112e
KG
172 irq_type = irq_get_trigger_type(irq);
173
174 if ((value == 1 && (irq_type & IRQ_TYPE_EDGE_RISING)) ||
337cbeb2
BG
175 (value == 0 && (irq_type & IRQ_TYPE_EDGE_FALLING))) {
176 ret = irq_set_irqchip_state(irq, IRQCHIP_STATE_PENDING,
177 true);
178 if (ret)
179 goto out;
180 }
64e7112e
KG
181 }
182
337cbeb2 183set_value:
64e7112e
KG
184 /* Change the value unless we're actively driving the line. */
185 if (!test_bit(FLAG_REQUESTED, &desc->flags) ||
f6e51bb3 186 !test_bit(FLAG_IS_OUT, &desc->flags))
64e7112e
KG
187 __gpio_mockup_set(chip, offset, value);
188
189out:
190 chip->lines[offset].pull = value;
191 mutex_unlock(&chip->lock);
337cbeb2 192 return ret;
64e7112e
KG
193}
194
195static int gpio_mockup_set_config(struct gpio_chip *gc,
196 unsigned int offset, unsigned long config)
197{
198 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
199
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);
205 default:
206 break;
207 }
208 return -ENOTSUPP;
209}
210
2a9d742c
BG
211static int gpio_mockup_dirout(struct gpio_chip *gc,
212 unsigned int offset, int value)
0f98dd1b 213{
ca409160
BG
214 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
215
9212492f 216 mutex_lock(&chip->lock);
e42615ec 217 chip->lines[offset].dir = GPIO_LINE_DIRECTION_OUT;
e09313ce 218 __gpio_mockup_set(chip, offset, value);
9212492f 219 mutex_unlock(&chip->lock);
0f98dd1b 220
0f98dd1b
BJZ
221 return 0;
222}
223
ca409160 224static int gpio_mockup_dirin(struct gpio_chip *gc, unsigned int offset)
0f98dd1b 225{
ca409160
BG
226 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
227
9212492f 228 mutex_lock(&chip->lock);
e42615ec 229 chip->lines[offset].dir = GPIO_LINE_DIRECTION_IN;
9212492f 230 mutex_unlock(&chip->lock);
0f98dd1b 231
0f98dd1b
BJZ
232 return 0;
233}
234
ca409160 235static int gpio_mockup_get_direction(struct gpio_chip *gc, unsigned int offset)
0f98dd1b 236{
ca409160 237 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
9212492f 238 int direction;
0f98dd1b 239
9212492f 240 mutex_lock(&chip->lock);
bc7bc688 241 direction = chip->lines[offset].dir;
9212492f
BG
242 mutex_unlock(&chip->lock);
243
244 return direction;
0f98dd1b
BJZ
245}
246
b4c495f0 247static int gpio_mockup_to_irq(struct gpio_chip *gc, unsigned int offset)
c7f5326f 248{
c7f5326f
BG
249 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
250
337cbeb2 251 return irq_create_mapping(chip->irq_sim_domain, offset);
e2ff7408
BG
252}
253
2a9e2740
BG
254static void gpio_mockup_free(struct gpio_chip *gc, unsigned int offset)
255{
256 struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
257
258 __gpio_mockup_set(chip, offset, chip->lines[offset].pull);
259}
260
261static ssize_t gpio_mockup_debugfs_read(struct file *file,
262 char __user *usr_buf,
263 size_t size, loff_t *ppos)
9202ba23
BG
264{
265 struct gpio_mockup_dbgfs_private *priv;
266 struct gpio_mockup_chip *chip;
267 struct seq_file *sfile;
2a9e2740 268 struct gpio_chip *gc;
ce9fb53c 269 int val, cnt;
2a9e2740 270 char buf[3];
2583303d 271
2a9e2740
BG
272 if (*ppos != 0)
273 return 0;
274
275 sfile = file->private_data;
276 priv = sfile->private;
277 chip = priv->chip;
278 gc = &chip->gc;
279
280 val = gpio_mockup_get(gc, priv->offset);
2583303d 281 cnt = snprintf(buf, sizeof(buf), "%d\n", val);
2a9e2740 282
ce9fb53c 283 return simple_read_from_buffer(usr_buf, size, ppos, buf, cnt);
2a9e2740
BG
284}
285
286static ssize_t gpio_mockup_debugfs_write(struct file *file,
287 const char __user *usr_buf,
288 size_t size, loff_t *ppos)
289{
290 struct gpio_mockup_dbgfs_private *priv;
64e7112e 291 int rv, val;
2a9e2740 292 struct seq_file *sfile;
2a9e2740
BG
293
294 if (*ppos != 0)
295 return -EINVAL;
9202ba23 296
6f9b3e77
BG
297 rv = kstrtoint_from_user(usr_buf, size, 0, &val);
298 if (rv)
299 return rv;
300 if (val != 0 && val != 1)
301 return -EINVAL;
302
650b57b0
BG
303 sfile = file->private_data;
304 priv = sfile->private;
64e7112e
KG
305 rv = gpio_mockup_apply_pull(priv->chip, priv->offset, val);
306 if (rv)
307 return rv;
9202ba23
BG
308
309 return size;
310}
311
2a9e2740 312static int gpio_mockup_debugfs_open(struct inode *inode, struct file *file)
9202ba23
BG
313{
314 return single_open(file, NULL, inode->i_private);
315}
316
2a9e2740
BG
317/*
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.
321 *
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
324 * down.
325 *
326 * Examples:
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
333 * configuration
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
337 */
338static const struct file_operations gpio_mockup_debugfs_ops = {
9202ba23 339 .owner = THIS_MODULE,
2a9e2740
BG
340 .open = gpio_mockup_debugfs_open,
341 .read = gpio_mockup_debugfs_read,
342 .write = gpio_mockup_debugfs_write,
9202ba23 343 .llseek = no_llseek,
59929d3a 344 .release = single_release,
9202ba23
BG
345};
346
347static void gpio_mockup_debugfs_setup(struct device *dev,
348 struct gpio_mockup_chip *chip)
349{
350 struct gpio_mockup_dbgfs_private *priv;
9202ba23 351 struct gpio_chip *gc;
ca8792af 352 const char *devname;
9202ba23
BG
353 char *name;
354 int i;
355
356 gc = &chip->gc;
ca8792af 357 devname = dev_name(&gc->gpiodev->dev);
9202ba23 358
ca8792af 359 chip->dbg_dir = debugfs_create_dir(devname, gpio_mockup_dbg_dir);
9202ba23
BG
360
361 for (i = 0; i < gc->ngpio; i++) {
362 name = devm_kasprintf(dev, GFP_KERNEL, "%d", i);
363 if (!name)
f360dcd4 364 return;
9202ba23
BG
365
366 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
367 if (!priv)
f360dcd4 368 return;
9202ba23
BG
369
370 priv->chip = chip;
371 priv->offset = i;
372 priv->desc = &gc->gpiodev->descs[i];
373
f360dcd4
GKH
374 debugfs_create_file(name, 0200, chip->dbg_dir, priv,
375 &gpio_mockup_debugfs_ops);
9202ba23 376 }
9202ba23
BG
377}
378
337cbeb2
BG
379static void gpio_mockup_dispose_mappings(void *data)
380{
381 struct gpio_mockup_chip *chip = data;
382 struct gpio_chip *gc = &chip->gc;
383 int i, irq;
384
385 for (i = 0; i < gc->ngpio; i++) {
386 irq = irq_find_mapping(chip->irq_sim_domain, i);
387 if (irq)
388 irq_dispose_mapping(irq);
389 }
390}
391
6d974d32 392static int gpio_mockup_probe(struct platform_device *pdev)
0f98dd1b 393{
6d974d32
BG
394 struct gpio_mockup_chip *chip;
395 struct gpio_chip *gc;
6d974d32 396 struct device *dev;
3ea47b44 397 const char *name;
bc7bc688 398 int rv, base, i;
3ea47b44 399 u16 ngpio;
6d974d32
BG
400
401 dev = &pdev->dev;
3ea47b44
BG
402
403 rv = device_property_read_u32(dev, "gpio-base", &base);
404 if (rv)
405 base = -1;
406
407 rv = device_property_read_u16(dev, "nr-gpios", &ngpio);
408 if (rv)
409 return rv;
410
148c2560 411 rv = device_property_read_string(dev, "chip-label", &name);
3ea47b44 412 if (rv)
148c2560 413 name = dev_name(dev);
6d974d32
BG
414
415 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
416 if (!chip)
417 return -ENOMEM;
418
9212492f
BG
419 mutex_init(&chip->lock);
420
6d974d32 421 gc = &chip->gc;
ca409160
BG
422 gc->base = base;
423 gc->ngpio = ngpio;
424 gc->label = name;
425 gc->owner = THIS_MODULE;
426 gc->parent = dev;
427 gc->get = gpio_mockup_get;
428 gc->set = gpio_mockup_set;
cbf1e092 429 gc->get_multiple = gpio_mockup_get_multiple;
c47bee95 430 gc->set_multiple = gpio_mockup_set_multiple;
ca409160
BG
431 gc->direction_output = gpio_mockup_dirout;
432 gc->direction_input = gpio_mockup_dirin;
433 gc->get_direction = gpio_mockup_get_direction;
64e7112e 434 gc->set_config = gpio_mockup_set_config;
e2ff7408 435 gc->to_irq = gpio_mockup_to_irq;
2a9e2740 436 gc->free = gpio_mockup_free;
ca409160 437
f6ac438e
BG
438 chip->lines = devm_kcalloc(dev, gc->ngpio,
439 sizeof(*chip->lines), GFP_KERNEL);
e4ba07bf
BG
440 if (!chip->lines)
441 return -ENOMEM;
ca409160 442
bc7bc688
KG
443 for (i = 0; i < gc->ngpio; i++)
444 chip->lines[i].dir = GPIO_LINE_DIRECTION_IN;
445
337cbeb2
BG
446 chip->irq_sim_domain = devm_irq_domain_create_sim(dev, NULL,
447 gc->ngpio);
448 if (IS_ERR(chip->irq_sim_domain))
449 return PTR_ERR(chip->irq_sim_domain);
450
451 rv = devm_add_action_or_reset(dev, gpio_mockup_dispose_mappings, chip);
452 if (rv)
6d974d32 453 return rv;
e2ff7408 454
6d974d32
BG
455 rv = devm_gpiochip_add_data(dev, &chip->gc, chip);
456 if (rv)
457 return rv;
9202ba23 458
f360dcd4 459 gpio_mockup_debugfs_setup(dev, chip);
9202ba23
BG
460
461 return 0;
0f98dd1b
BJZ
462}
463
43ddebdd
VW
464static const struct of_device_id gpio_mockup_of_match[] = {
465 { .compatible = "gpio-mockup", },
466 {},
467};
468MODULE_DEVICE_TABLE(of, gpio_mockup_of_match);
469
ca409160 470static struct platform_driver gpio_mockup_driver = {
0f98dd1b 471 .driver = {
25f00066 472 .name = "gpio-mockup",
43ddebdd 473 .of_match_table = gpio_mockup_of_match,
364ac456 474 },
ca409160 475 .probe = gpio_mockup_probe,
0f98dd1b
BJZ
476};
477
8a39f597
BG
478static struct platform_device *gpio_mockup_pdevs[GPIO_MOCKUP_MAX_GC];
479
480static void gpio_mockup_unregister_pdevs(void)
481{
482 struct platform_device *pdev;
483 int i;
484
485 for (i = 0; i < GPIO_MOCKUP_MAX_GC; i++) {
486 pdev = gpio_mockup_pdevs[i];
487
488 if (pdev)
489 platform_device_unregister(pdev);
490 }
491}
f3b47170 492
582be05e
BG
493static __init char **gpio_mockup_make_line_names(const char *label,
494 unsigned int num_lines)
495{
496 unsigned int i;
497 char **names;
498
499 names = kcalloc(num_lines + 1, sizeof(char *), GFP_KERNEL);
500 if (!names)
501 return NULL;
502
503 for (i = 0; i < num_lines; i++) {
504 names[i] = kasprintf(GFP_KERNEL, "%s-%u", label, i);
505 if (!names[i]) {
506 kfree_strarray(names, i);
507 return NULL;
508 }
509 }
510
511 return names;
512}
513
42e9acc6 514static int __init gpio_mockup_register_chip(int idx)
0f98dd1b 515{
3ea47b44 516 struct property_entry properties[GPIO_MOCKUP_MAX_PROP];
3ea47b44 517 struct platform_device_info pdevinfo;
8a39f597 518 struct platform_device *pdev;
42e9acc6 519 char **line_names = NULL;
148c2560 520 char chip_label[32];
42e9acc6 521 int prop = 0, base;
3ea47b44 522 u16 ngpio;
0f98dd1b 523
42e9acc6
BG
524 memset(properties, 0, sizeof(properties));
525 memset(&pdevinfo, 0, sizeof(pdevinfo));
526
527 snprintf(chip_label, sizeof(chip_label), "gpio-mockup-%c", idx + 'A');
528 properties[prop++] = PROPERTY_ENTRY_STRING("chip-label", chip_label);
529
530 base = gpio_mockup_range_base(idx);
531 if (base >= 0)
532 properties[prop++] = PROPERTY_ENTRY_U32("gpio-base", base);
533
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);
537
538 if (gpio_mockup_named_lines) {
539 line_names = gpio_mockup_make_line_names(chip_label, ngpio);
540 if (!line_names)
541 return -ENOMEM;
542
543 properties[prop++] = PROPERTY_ENTRY_STRING_ARRAY_LEN(
544 "gpio-line-names", line_names, ngpio);
545 }
546
547 pdevinfo.name = "gpio-mockup";
548 pdevinfo.id = idx;
549 pdevinfo.properties = properties;
550
551 pdev = platform_device_register_full(&pdevinfo);
552 kfree_strarray(line_names, ngpio);
553 if (IS_ERR(pdev)) {
554 pr_err("error registering device");
555 return PTR_ERR(pdev);
556 }
557
558 gpio_mockup_pdevs[idx] = pdev;
559
560 return 0;
561}
562
563static int __init gpio_mockup_init(void)
564{
565 int i, num_chips, err;
566
43ddebdd 567 if ((gpio_mockup_num_ranges % 2) ||
e63a006f 568 (gpio_mockup_num_ranges > GPIO_MOCKUP_MAX_RANGES))
20c35ac4
BG
569 return -EINVAL;
570
8a39f597 571 /* Each chip is described by two values. */
e63a006f 572 num_chips = gpio_mockup_num_ranges / 2;
8a39f597 573
fa86963a
BG
574 /*
575 * The second value in the <base GPIO - number of GPIOS> pair must
576 * always be greater than 0.
577 */
578 for (i = 0; i < num_chips; i++) {
cd9835f1 579 if (gpio_mockup_range_ngpio(i) < 0)
fa86963a
BG
580 return -EINVAL;
581 }
582
2a9e2740 583 gpio_mockup_dbg_dir = debugfs_create_dir("gpio-mockup", NULL);
9202ba23 584
8a39f597 585 err = platform_driver_register(&gpio_mockup_driver);
0f98dd1b 586 if (err) {
56f6cb35 587 pr_err("error registering platform driver\n");
e0ab949f 588 debugfs_remove_recursive(gpio_mockup_dbg_dir);
0f98dd1b
BJZ
589 return err;
590 }
591
8a39f597 592 for (i = 0; i < num_chips; i++) {
42e9acc6
BG
593 err = gpio_mockup_register_chip(i);
594 if (err) {
8a39f597
BG
595 platform_driver_unregister(&gpio_mockup_driver);
596 gpio_mockup_unregister_pdevs();
e0ab949f 597 debugfs_remove_recursive(gpio_mockup_dbg_dir);
42e9acc6 598 return err;
8a39f597 599 }
0f98dd1b
BJZ
600 }
601
602 return 0;
603}
604
f3b47170 605static void __exit gpio_mockup_exit(void)
0f98dd1b 606{
9202ba23 607 debugfs_remove_recursive(gpio_mockup_dbg_dir);
ca409160 608 platform_driver_unregister(&gpio_mockup_driver);
8a39f597 609 gpio_mockup_unregister_pdevs();
0f98dd1b
BJZ
610}
611
f3b47170
BG
612module_init(gpio_mockup_init);
613module_exit(gpio_mockup_exit);
0f98dd1b
BJZ
614
615MODULE_AUTHOR("Kamlakant Patel <kamlakant.patel@broadcom.com>");
4f9a4cd6 616MODULE_AUTHOR("Bamvor Jian Zhang <bamv2005@gmail.com>");
c60c7f4c 617MODULE_AUTHOR("Bartosz Golaszewski <brgl@bgdev.pl>");
0f98dd1b
BJZ
618MODULE_DESCRIPTION("GPIO Testing driver");
619MODULE_LICENSE("GPL v2");