2018-04-26 22:12:36 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-08-31 11:45:46 +02:00
|
|
|
/*
|
|
|
|
* GPIO Testing Device Driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Kamlakant Patel <kamlakant.patel@broadcom.com>
|
2018-03-06 09:04:15 +01:00
|
|
|
* Copyright (C) 2015-2016 Bamvor Jian Zhang <bamv2005@gmail.com>
|
2017-06-09 13:41:31 +02:00
|
|
|
* Copyright (C) 2017 Bartosz Golaszewski <brgl@bgdev.pl>
|
2016-08-31 11:45:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/gpio/driver.h>
|
2017-02-06 15:11:08 +01:00
|
|
|
#include <linux/gpio/consumer.h>
|
2016-08-31 11:45:46 +02:00
|
|
|
#include <linux/platform_device.h>
|
2017-02-06 13:10:37 +01:00
|
|
|
#include <linux/slab.h>
|
2017-02-06 15:11:07 +01:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
2017-08-14 13:20:56 +02:00
|
|
|
#include <linux/irq_sim.h>
|
2017-02-06 15:11:08 +01:00
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/uaccess.h>
|
2018-09-25 13:29:46 +02:00
|
|
|
#include <linux/property.h>
|
2017-02-06 15:11:08 +01:00
|
|
|
|
|
|
|
#include "gpiolib.h"
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
#define GPIO_MOCKUP_NAME "gpio-mockup"
|
2017-11-27 11:48:42 +01:00
|
|
|
#define GPIO_MOCKUP_MAX_GC 10
|
2017-06-09 13:41:28 +02:00
|
|
|
/*
|
|
|
|
* We're storing two values per chip: the GPIO base and the number
|
|
|
|
* of GPIO lines.
|
|
|
|
*/
|
|
|
|
#define GPIO_MOCKUP_MAX_RANGES (GPIO_MOCKUP_MAX_GC * 2)
|
2018-09-25 13:29:46 +02:00
|
|
|
/* Maximum of three properties + the sentinel. */
|
|
|
|
#define GPIO_MOCKUP_MAX_PROP 4
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2017-11-27 11:48:41 +01:00
|
|
|
#define gpio_mockup_err(...) pr_err(GPIO_MOCKUP_NAME ": " __VA_ARGS__)
|
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
enum {
|
2018-11-08 17:52:53 +01:00
|
|
|
GPIO_MOCKUP_DIR_IN = 0,
|
|
|
|
GPIO_MOCKUP_DIR_OUT = 1,
|
2016-08-31 11:45:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* struct gpio_pin_status - structure describing a GPIO status
|
|
|
|
* @dir: Configures direction of gpio as "in" or "out", 0=in, 1=out
|
|
|
|
* @value: Configures status of the gpio as 0(low) or 1(high)
|
|
|
|
*/
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_line_status {
|
|
|
|
int dir;
|
2017-11-27 11:48:46 +01:00
|
|
|
int value;
|
2019-01-17 16:30:27 +01:00
|
|
|
int pull;
|
2017-02-06 15:11:07 +01:00
|
|
|
};
|
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_chip {
|
2016-08-31 11:45:46 +02:00
|
|
|
struct gpio_chip gc;
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_line_status *lines;
|
2017-08-14 13:20:56 +02:00
|
|
|
struct irq_sim irqsim;
|
2017-02-06 15:11:08 +01:00
|
|
|
struct dentry *dbg_dir;
|
2018-10-31 14:55:47 +01:00
|
|
|
struct mutex lock;
|
2017-02-06 15:11:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gpio_mockup_dbgfs_private {
|
|
|
|
struct gpio_mockup_chip *chip;
|
|
|
|
struct gpio_desc *desc;
|
2019-01-18 18:08:59 +01:00
|
|
|
unsigned int offset;
|
2016-08-31 11:45:46 +02:00
|
|
|
};
|
|
|
|
|
2017-06-09 13:41:28 +02:00
|
|
|
static int gpio_mockup_ranges[GPIO_MOCKUP_MAX_RANGES];
|
2017-11-27 11:48:53 +01:00
|
|
|
static int gpio_mockup_num_ranges;
|
|
|
|
module_param_array(gpio_mockup_ranges, int, &gpio_mockup_num_ranges, 0400);
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2017-02-06 13:10:37 +01:00
|
|
|
static bool gpio_mockup_named_lines;
|
|
|
|
module_param_named(gpio_mockup_named_lines,
|
|
|
|
gpio_mockup_named_lines, bool, 0400);
|
|
|
|
|
2017-02-06 15:11:08 +01:00
|
|
|
static struct dentry *gpio_mockup_dbg_dir;
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2017-11-27 11:48:54 +01:00
|
|
|
static int gpio_mockup_range_base(unsigned int index)
|
|
|
|
{
|
|
|
|
return gpio_mockup_ranges[index * 2];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_mockup_range_ngpio(unsigned int index)
|
|
|
|
{
|
|
|
|
return gpio_mockup_ranges[index * 2 + 1];
|
|
|
|
}
|
|
|
|
|
2019-01-23 09:34:15 +01:00
|
|
|
static int __gpio_mockup_get(struct gpio_mockup_chip *chip,
|
|
|
|
unsigned int offset)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 13:10:35 +01:00
|
|
|
return chip->lines[offset].value;
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
static int gpio_mockup_get(struct gpio_chip *gc, unsigned int offset)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
int val;
|
|
|
|
|
|
|
|
mutex_lock(&chip->lock);
|
2019-01-23 09:34:15 +01:00
|
|
|
val = __gpio_mockup_get(chip, offset);
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_unlock(&chip->lock);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:01:40 +01:00
|
|
|
static int gpio_mockup_get_multiple(struct gpio_chip *gc,
|
|
|
|
unsigned long *mask, unsigned long *bits)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
unsigned int bit, val;
|
|
|
|
|
|
|
|
mutex_lock(&chip->lock);
|
|
|
|
for_each_set_bit(bit, mask, gc->ngpio) {
|
2019-01-23 09:34:15 +01:00
|
|
|
val = __gpio_mockup_get(chip, bit);
|
2018-10-31 15:01:40 +01:00
|
|
|
__assign_bit(bit, bits, val);
|
|
|
|
}
|
|
|
|
mutex_unlock(&chip->lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-01-23 09:34:15 +01:00
|
|
|
static void __gpio_mockup_set(struct gpio_mockup_chip *chip,
|
2018-10-31 14:55:47 +01:00
|
|
|
unsigned int offset, int value)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 13:10:35 +01:00
|
|
|
chip->lines[offset].value = !!value;
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
static void gpio_mockup_set(struct gpio_chip *gc,
|
|
|
|
unsigned int offset, int value)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
|
|
|
|
mutex_lock(&chip->lock);
|
2019-01-23 09:34:15 +01:00
|
|
|
__gpio_mockup_set(chip, offset, value);
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_unlock(&chip->lock);
|
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:51 +01:00
|
|
|
static void gpio_mockup_set_multiple(struct gpio_chip *gc,
|
|
|
|
unsigned long *mask, unsigned long *bits)
|
|
|
|
{
|
2018-10-31 14:55:47 +01:00
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
2017-11-27 11:48:51 +01:00
|
|
|
unsigned int bit;
|
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_lock(&chip->lock);
|
2017-11-27 11:48:51 +01:00
|
|
|
for_each_set_bit(bit, mask, gc->ngpio)
|
2019-01-23 09:34:15 +01:00
|
|
|
__gpio_mockup_set(chip, bit, test_bit(bit, bits));
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_unlock(&chip->lock);
|
2017-11-27 11:48:51 +01:00
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:50 +01:00
|
|
|
static int gpio_mockup_dirout(struct gpio_chip *gc,
|
|
|
|
unsigned int offset, int value)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_lock(&chip->lock);
|
2017-05-25 10:33:39 +02:00
|
|
|
chip->lines[offset].dir = GPIO_MOCKUP_DIR_OUT;
|
2019-01-23 09:34:15 +01:00
|
|
|
__gpio_mockup_set(chip, offset, value);
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_unlock(&chip->lock);
|
2016-08-31 11:45:46 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
static int gpio_mockup_dirin(struct gpio_chip *gc, unsigned int offset)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_lock(&chip->lock);
|
2017-05-25 10:33:39 +02:00
|
|
|
chip->lines[offset].dir = GPIO_MOCKUP_DIR_IN;
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_unlock(&chip->lock);
|
2016-08-31 11:45:46 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
static int gpio_mockup_get_direction(struct gpio_chip *gc, unsigned int offset)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 13:10:35 +01:00
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
2018-10-31 14:55:47 +01:00
|
|
|
int direction;
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_lock(&chip->lock);
|
|
|
|
direction = !chip->lines[offset].dir;
|
|
|
|
mutex_unlock(&chip->lock);
|
|
|
|
|
|
|
|
return direction;
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 13:20:56 +02:00
|
|
|
static int gpio_mockup_to_irq(struct gpio_chip *gc, unsigned int offset)
|
2017-05-25 10:33:41 +02:00
|
|
|
{
|
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
|
2017-08-14 13:20:56 +02:00
|
|
|
return irq_sim_irqnum(&chip->irqsim, offset);
|
2017-02-06 15:11:07 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
static void gpio_mockup_free(struct gpio_chip *gc, unsigned int offset)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_chip *chip = gpiochip_get_data(gc);
|
|
|
|
|
|
|
|
__gpio_mockup_set(chip, offset, chip->lines[offset].pull);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t gpio_mockup_debugfs_read(struct file *file,
|
|
|
|
char __user *usr_buf,
|
|
|
|
size_t size, loff_t *ppos)
|
2017-02-06 15:11:08 +01:00
|
|
|
{
|
|
|
|
struct gpio_mockup_dbgfs_private *priv;
|
|
|
|
struct gpio_mockup_chip *chip;
|
|
|
|
struct seq_file *sfile;
|
2019-01-17 16:30:27 +01:00
|
|
|
struct gpio_chip *gc;
|
2019-03-28 11:38:06 +01:00
|
|
|
int val, cnt;
|
2019-01-17 16:30:27 +01:00
|
|
|
char buf[3];
|
2019-03-22 18:27:12 +01:00
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
if (*ppos != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sfile = file->private_data;
|
|
|
|
priv = sfile->private;
|
|
|
|
chip = priv->chip;
|
|
|
|
gc = &chip->gc;
|
|
|
|
|
|
|
|
val = gpio_mockup_get(gc, priv->offset);
|
2019-03-22 18:27:12 +01:00
|
|
|
cnt = snprintf(buf, sizeof(buf), "%d\n", val);
|
2019-01-17 16:30:27 +01:00
|
|
|
|
2019-03-28 11:38:06 +01:00
|
|
|
return simple_read_from_buffer(usr_buf, size, ppos, buf, cnt);
|
2019-01-17 16:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t gpio_mockup_debugfs_write(struct file *file,
|
|
|
|
const char __user *usr_buf,
|
|
|
|
size_t size, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_dbgfs_private *priv;
|
|
|
|
int rv, val, curr, irq, irq_type;
|
|
|
|
struct gpio_mockup_chip *chip;
|
|
|
|
struct seq_file *sfile;
|
2017-02-06 15:11:08 +01:00
|
|
|
struct gpio_desc *desc;
|
2019-01-17 16:30:27 +01:00
|
|
|
struct gpio_chip *gc;
|
|
|
|
struct irq_sim *sim;
|
|
|
|
|
|
|
|
if (*ppos != 0)
|
|
|
|
return -EINVAL;
|
2017-02-06 15:11:08 +01:00
|
|
|
|
2017-06-09 13:41:25 +02:00
|
|
|
rv = kstrtoint_from_user(usr_buf, size, 0, &val);
|
|
|
|
if (rv)
|
|
|
|
return rv;
|
|
|
|
if (val != 0 && val != 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-06-09 13:41:26 +02:00
|
|
|
sfile = file->private_data;
|
|
|
|
priv = sfile->private;
|
|
|
|
chip = priv->chip;
|
2019-01-17 16:30:27 +01:00
|
|
|
gc = &chip->gc;
|
|
|
|
desc = &gc->gpiodev->descs[priv->offset];
|
|
|
|
sim = &chip->irqsim;
|
|
|
|
|
|
|
|
mutex_lock(&chip->lock);
|
|
|
|
|
|
|
|
if (test_bit(FLAG_REQUESTED, &desc->flags) &&
|
|
|
|
!test_bit(FLAG_IS_OUT, &desc->flags)) {
|
|
|
|
curr = __gpio_mockup_get(chip, priv->offset);
|
|
|
|
if (curr == val)
|
|
|
|
goto out;
|
2017-05-25 10:33:41 +02:00
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
irq = irq_sim_irqnum(sim, priv->offset);
|
|
|
|
irq_type = irq_get_trigger_type(irq);
|
|
|
|
|
|
|
|
if ((val == 1 && (irq_type & IRQ_TYPE_EDGE_RISING)) ||
|
|
|
|
(val == 0 && (irq_type & IRQ_TYPE_EDGE_FALLING)))
|
|
|
|
irq_sim_fire(sim, priv->offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the value unless we're actively driving the line. */
|
|
|
|
if (!test_bit(FLAG_REQUESTED, &desc->flags) ||
|
|
|
|
!test_bit(FLAG_IS_OUT, &desc->flags))
|
|
|
|
__gpio_mockup_set(chip, priv->offset, val);
|
|
|
|
|
|
|
|
out:
|
|
|
|
chip->lines[priv->offset].pull = val;
|
|
|
|
mutex_unlock(&chip->lock);
|
2017-02-06 15:11:08 +01:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
static int gpio_mockup_debugfs_open(struct inode *inode, struct file *file)
|
2017-02-06 15:11:08 +01:00
|
|
|
{
|
|
|
|
return single_open(file, NULL, inode->i_private);
|
|
|
|
}
|
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
/*
|
|
|
|
* Each mockup chip is represented by a directory named after the chip's device
|
|
|
|
* name under /sys/kernel/debug/gpio-mockup/. Each line is represented by
|
|
|
|
* a file using the line's offset as the name under the chip's directory.
|
|
|
|
*
|
|
|
|
* Reading from the line's file yields the current *value*, writing to the
|
|
|
|
* line's file changes the current *pull*. Default pull for mockup lines is
|
|
|
|
* down.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* - when a line pulled down is requested in output mode and driven high, its
|
|
|
|
* value will return to 0 once it's released
|
|
|
|
* - when the line is requested in output mode and driven high, writing 0 to
|
|
|
|
* the corresponding debugfs file will change the pull to down but the
|
|
|
|
* reported value will still be 1 until the line is released
|
|
|
|
* - line requested in input mode always reports the same value as its pull
|
|
|
|
* configuration
|
|
|
|
* - when the line is requested in input mode and monitored for events, writing
|
|
|
|
* the same value to the debugfs file will be a noop, while writing the
|
|
|
|
* opposite value will generate a dummy interrupt with an appropriate edge
|
|
|
|
*/
|
|
|
|
static const struct file_operations gpio_mockup_debugfs_ops = {
|
2017-02-06 15:11:08 +01:00
|
|
|
.owner = THIS_MODULE,
|
2019-01-17 16:30:27 +01:00
|
|
|
.open = gpio_mockup_debugfs_open,
|
|
|
|
.read = gpio_mockup_debugfs_read,
|
|
|
|
.write = gpio_mockup_debugfs_write,
|
2017-02-06 15:11:08 +01:00
|
|
|
.llseek = no_llseek,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void gpio_mockup_debugfs_setup(struct device *dev,
|
|
|
|
struct gpio_mockup_chip *chip)
|
|
|
|
{
|
|
|
|
struct gpio_mockup_dbgfs_private *priv;
|
2019-01-17 15:04:23 +01:00
|
|
|
struct dentry *evfile;
|
2017-02-06 15:11:08 +01:00
|
|
|
struct gpio_chip *gc;
|
2017-11-27 11:48:45 +01:00
|
|
|
const char *devname;
|
2017-02-06 15:11:08 +01:00
|
|
|
char *name;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
gc = &chip->gc;
|
2017-11-27 11:48:45 +01:00
|
|
|
devname = dev_name(&gc->gpiodev->dev);
|
2017-02-06 15:11:08 +01:00
|
|
|
|
2017-11-27 11:48:45 +01:00
|
|
|
chip->dbg_dir = debugfs_create_dir(devname, gpio_mockup_dbg_dir);
|
2017-11-27 11:48:48 +01:00
|
|
|
if (IS_ERR_OR_NULL(chip->dbg_dir))
|
2017-02-06 15:11:08 +01:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
for (i = 0; i < gc->ngpio; i++) {
|
|
|
|
name = devm_kasprintf(dev, GFP_KERNEL, "%d", i);
|
|
|
|
if (!name)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
|
|
|
if (!priv)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
priv->chip = chip;
|
|
|
|
priv->offset = i;
|
|
|
|
priv->desc = &gc->gpiodev->descs[i];
|
|
|
|
|
|
|
|
evfile = debugfs_create_file(name, 0200, chip->dbg_dir, priv,
|
2019-01-17 16:30:27 +01:00
|
|
|
&gpio_mockup_debugfs_ops);
|
2017-11-27 11:48:48 +01:00
|
|
|
if (IS_ERR_OR_NULL(evfile))
|
2017-02-06 15:11:08 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
err:
|
2019-01-17 16:30:27 +01:00
|
|
|
dev_err(dev, "error creating debugfs files\n");
|
2017-02-06 15:11:08 +01:00
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:47 +01:00
|
|
|
static int gpio_mockup_name_lines(struct device *dev,
|
|
|
|
struct gpio_mockup_chip *chip)
|
|
|
|
{
|
|
|
|
struct gpio_chip *gc = &chip->gc;
|
|
|
|
char **names;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
names = devm_kcalloc(dev, gc->ngpio, sizeof(char *), GFP_KERNEL);
|
|
|
|
if (!names)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < gc->ngpio; i++) {
|
|
|
|
names[i] = devm_kasprintf(dev, GFP_KERNEL,
|
|
|
|
"%s-%d", gc->label, i);
|
|
|
|
if (!names[i])
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
gc->names = (const char *const *)names;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:43 +01:00
|
|
|
static int gpio_mockup_probe(struct platform_device *pdev)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-11-27 11:48:43 +01:00
|
|
|
struct gpio_mockup_chip *chip;
|
|
|
|
struct gpio_chip *gc;
|
|
|
|
struct device *dev;
|
2018-09-25 13:29:46 +02:00
|
|
|
const char *name;
|
|
|
|
int rv, base;
|
|
|
|
u16 ngpio;
|
2017-11-27 11:48:43 +01:00
|
|
|
|
|
|
|
dev = &pdev->dev;
|
2018-09-25 13:29:46 +02:00
|
|
|
|
|
|
|
rv = device_property_read_u32(dev, "gpio-base", &base);
|
|
|
|
if (rv)
|
|
|
|
base = -1;
|
|
|
|
|
|
|
|
rv = device_property_read_u16(dev, "nr-gpios", &ngpio);
|
|
|
|
if (rv)
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = device_property_read_string(dev, "chip-name", &name);
|
|
|
|
if (rv)
|
|
|
|
name = NULL;
|
2017-11-27 11:48:43 +01:00
|
|
|
|
|
|
|
chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
|
|
|
|
if (!chip)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-09-25 13:29:46 +02:00
|
|
|
if (!name) {
|
|
|
|
name = devm_kasprintf(dev, GFP_KERNEL,
|
|
|
|
"%s-%c", pdev->name, pdev->id + 'A');
|
|
|
|
if (!name)
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2018-10-31 14:55:47 +01:00
|
|
|
mutex_init(&chip->lock);
|
|
|
|
|
2017-11-27 11:48:43 +01:00
|
|
|
gc = &chip->gc;
|
2017-02-06 13:10:35 +01:00
|
|
|
gc->base = base;
|
|
|
|
gc->ngpio = ngpio;
|
|
|
|
gc->label = name;
|
|
|
|
gc->owner = THIS_MODULE;
|
|
|
|
gc->parent = dev;
|
|
|
|
gc->get = gpio_mockup_get;
|
|
|
|
gc->set = gpio_mockup_set;
|
2018-10-31 15:01:40 +01:00
|
|
|
gc->get_multiple = gpio_mockup_get_multiple;
|
2017-11-27 11:48:51 +01:00
|
|
|
gc->set_multiple = gpio_mockup_set_multiple;
|
2017-02-06 13:10:35 +01:00
|
|
|
gc->direction_output = gpio_mockup_dirout;
|
|
|
|
gc->direction_input = gpio_mockup_dirin;
|
|
|
|
gc->get_direction = gpio_mockup_get_direction;
|
2017-02-06 15:11:07 +01:00
|
|
|
gc->to_irq = gpio_mockup_to_irq;
|
2019-01-17 16:30:27 +01:00
|
|
|
gc->free = gpio_mockup_free;
|
2017-02-06 13:10:35 +01:00
|
|
|
|
2017-06-09 13:41:32 +02:00
|
|
|
chip->lines = devm_kcalloc(dev, gc->ngpio,
|
|
|
|
sizeof(*chip->lines), GFP_KERNEL);
|
2017-02-06 13:10:36 +01:00
|
|
|
if (!chip->lines)
|
|
|
|
return -ENOMEM;
|
2017-02-06 13:10:35 +01:00
|
|
|
|
2018-09-25 13:29:46 +02:00
|
|
|
if (device_property_read_bool(dev, "named-gpio-lines")) {
|
2017-11-27 11:48:43 +01:00
|
|
|
rv = gpio_mockup_name_lines(dev, chip);
|
|
|
|
if (rv)
|
|
|
|
return rv;
|
2017-02-06 13:10:37 +01:00
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:43 +01:00
|
|
|
rv = devm_irq_sim_init(dev, &chip->irqsim, gc->ngpio);
|
2017-11-27 11:48:52 +01:00
|
|
|
if (rv < 0)
|
2017-11-27 11:48:43 +01:00
|
|
|
return rv;
|
2017-02-06 15:11:07 +01:00
|
|
|
|
2017-11-27 11:48:43 +01:00
|
|
|
rv = devm_gpiochip_add_data(dev, &chip->gc, chip);
|
|
|
|
if (rv)
|
|
|
|
return rv;
|
2017-02-06 15:11:08 +01:00
|
|
|
|
2018-03-04 13:45:51 +01:00
|
|
|
if (!IS_ERR_OR_NULL(gpio_mockup_dbg_dir))
|
2017-02-06 15:11:08 +01:00
|
|
|
gpio_mockup_debugfs_setup(dev, chip);
|
|
|
|
|
|
|
|
return 0;
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
2017-02-06 13:10:35 +01:00
|
|
|
static struct platform_driver gpio_mockup_driver = {
|
2016-08-31 11:45:46 +02:00
|
|
|
.driver = {
|
2017-02-06 13:10:35 +01:00
|
|
|
.name = GPIO_MOCKUP_NAME,
|
2016-12-20 12:28:20 +01:00
|
|
|
},
|
2017-02-06 13:10:35 +01:00
|
|
|
.probe = gpio_mockup_probe,
|
2016-08-31 11:45:46 +02:00
|
|
|
};
|
|
|
|
|
2017-11-27 11:48:40 +01:00
|
|
|
static struct platform_device *gpio_mockup_pdevs[GPIO_MOCKUP_MAX_GC];
|
|
|
|
|
|
|
|
static void gpio_mockup_unregister_pdevs(void)
|
|
|
|
{
|
|
|
|
struct platform_device *pdev;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < GPIO_MOCKUP_MAX_GC; i++) {
|
|
|
|
pdev = gpio_mockup_pdevs[i];
|
|
|
|
|
|
|
|
if (pdev)
|
|
|
|
platform_device_unregister(pdev);
|
|
|
|
}
|
|
|
|
}
|
2017-11-27 11:48:37 +01:00
|
|
|
|
|
|
|
static int __init gpio_mockup_init(void)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2018-09-25 13:29:46 +02:00
|
|
|
struct property_entry properties[GPIO_MOCKUP_MAX_PROP];
|
|
|
|
int i, prop, num_chips, err = 0, base;
|
|
|
|
struct platform_device_info pdevinfo;
|
2017-11-27 11:48:40 +01:00
|
|
|
struct platform_device *pdev;
|
2018-09-25 13:29:46 +02:00
|
|
|
u16 ngpio;
|
2016-08-31 11:45:46 +02:00
|
|
|
|
2017-11-27 11:48:53 +01:00
|
|
|
if ((gpio_mockup_num_ranges < 2) ||
|
|
|
|
(gpio_mockup_num_ranges % 2) ||
|
|
|
|
(gpio_mockup_num_ranges > GPIO_MOCKUP_MAX_RANGES))
|
2017-11-27 11:48:38 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
2017-11-27 11:48:40 +01:00
|
|
|
/* Each chip is described by two values. */
|
2017-11-27 11:48:53 +01:00
|
|
|
num_chips = gpio_mockup_num_ranges / 2;
|
2017-11-27 11:48:40 +01:00
|
|
|
|
2017-11-27 11:48:49 +01:00
|
|
|
/*
|
|
|
|
* The second value in the <base GPIO - number of GPIOS> pair must
|
|
|
|
* always be greater than 0.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < num_chips; i++) {
|
2017-11-27 11:48:54 +01:00
|
|
|
if (gpio_mockup_range_ngpio(i) < 0)
|
2017-11-27 11:48:49 +01:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2019-01-17 16:30:27 +01:00
|
|
|
gpio_mockup_dbg_dir = debugfs_create_dir("gpio-mockup", NULL);
|
2017-11-27 11:48:48 +01:00
|
|
|
if (IS_ERR_OR_NULL(gpio_mockup_dbg_dir))
|
2017-11-27 11:48:41 +01:00
|
|
|
gpio_mockup_err("error creating debugfs directory\n");
|
2017-02-06 15:11:08 +01:00
|
|
|
|
2017-11-27 11:48:40 +01:00
|
|
|
err = platform_driver_register(&gpio_mockup_driver);
|
2016-08-31 11:45:46 +02:00
|
|
|
if (err) {
|
2017-11-27 11:48:41 +01:00
|
|
|
gpio_mockup_err("error registering platform driver\n");
|
2016-08-31 11:45:46 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:40 +01:00
|
|
|
for (i = 0; i < num_chips; i++) {
|
2018-09-25 13:29:46 +02:00
|
|
|
memset(properties, 0, sizeof(properties));
|
|
|
|
memset(&pdevinfo, 0, sizeof(pdevinfo));
|
|
|
|
prop = 0;
|
|
|
|
|
|
|
|
base = gpio_mockup_range_base(i);
|
|
|
|
if (base >= 0)
|
|
|
|
properties[prop++] = PROPERTY_ENTRY_U32("gpio-base",
|
|
|
|
base);
|
|
|
|
|
|
|
|
ngpio = base < 0 ? gpio_mockup_range_ngpio(i)
|
|
|
|
: gpio_mockup_range_ngpio(i) - base;
|
|
|
|
properties[prop++] = PROPERTY_ENTRY_U16("nr-gpios", ngpio);
|
|
|
|
|
|
|
|
if (gpio_mockup_named_lines)
|
|
|
|
properties[prop++] = PROPERTY_ENTRY_BOOL(
|
|
|
|
"named-gpio-lines");
|
|
|
|
|
|
|
|
pdevinfo.name = GPIO_MOCKUP_NAME;
|
|
|
|
pdevinfo.id = i;
|
|
|
|
pdevinfo.properties = properties;
|
|
|
|
|
|
|
|
pdev = platform_device_register_full(&pdevinfo);
|
2017-12-06 17:30:02 +01:00
|
|
|
if (IS_ERR(pdev)) {
|
2017-11-27 11:48:41 +01:00
|
|
|
gpio_mockup_err("error registering device");
|
2017-11-27 11:48:40 +01:00
|
|
|
platform_driver_unregister(&gpio_mockup_driver);
|
|
|
|
gpio_mockup_unregister_pdevs();
|
2017-12-06 17:30:02 +01:00
|
|
|
return PTR_ERR(pdev);
|
2017-11-27 11:48:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
gpio_mockup_pdevs[i] = pdev;
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:37 +01:00
|
|
|
static void __exit gpio_mockup_exit(void)
|
2016-08-31 11:45:46 +02:00
|
|
|
{
|
2017-02-06 15:11:08 +01:00
|
|
|
debugfs_remove_recursive(gpio_mockup_dbg_dir);
|
2017-02-06 13:10:35 +01:00
|
|
|
platform_driver_unregister(&gpio_mockup_driver);
|
2017-11-27 11:48:40 +01:00
|
|
|
gpio_mockup_unregister_pdevs();
|
2016-08-31 11:45:46 +02:00
|
|
|
}
|
|
|
|
|
2017-11-27 11:48:37 +01:00
|
|
|
module_init(gpio_mockup_init);
|
|
|
|
module_exit(gpio_mockup_exit);
|
2016-08-31 11:45:46 +02:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Kamlakant Patel <kamlakant.patel@broadcom.com>");
|
2018-03-06 09:04:15 +01:00
|
|
|
MODULE_AUTHOR("Bamvor Jian Zhang <bamv2005@gmail.com>");
|
2017-06-09 13:41:31 +02:00
|
|
|
MODULE_AUTHOR("Bartosz Golaszewski <brgl@bgdev.pl>");
|
2016-08-31 11:45:46 +02:00
|
|
|
MODULE_DESCRIPTION("GPIO Testing driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|