2018-09-25 09:08:48 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2023-02-08 19:07:28 +02:00
|
|
|
|
|
|
|
#include <linux/bitops.h>
|
2024-01-24 14:08:45 +01:00
|
|
|
#include <linux/cleanup.h>
|
2023-02-08 19:07:28 +02:00
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/kdev_t.h>
|
|
|
|
#include <linux/kstrtox.h>
|
|
|
|
#include <linux/list.h>
|
2014-07-01 14:45:15 +09:00
|
|
|
#include <linux/mutex.h>
|
2023-02-08 19:07:28 +02:00
|
|
|
#include <linux/printk.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/string.h>
|
2024-02-14 09:44:18 +01:00
|
|
|
#include <linux/srcu.h>
|
2014-07-01 14:45:15 +09:00
|
|
|
#include <linux/sysfs.h>
|
2023-02-08 19:07:28 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
#include <linux/gpio/consumer.h>
|
|
|
|
#include <linux/gpio/driver.h>
|
|
|
|
|
2024-10-31 21:01:53 +01:00
|
|
|
#include <uapi/linux/gpio.h>
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
#include "gpiolib.h"
|
2020-07-08 12:15:44 +08:00
|
|
|
#include "gpiolib-sysfs.h"
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
|
|
|
|
2023-02-08 19:07:28 +02:00
|
|
|
struct kernfs_node;
|
|
|
|
|
2022-02-09 13:31:17 +02:00
|
|
|
#define GPIO_IRQF_TRIGGER_NONE 0
|
2015-05-04 17:10:48 +02:00
|
|
|
#define GPIO_IRQF_TRIGGER_FALLING BIT(0)
|
|
|
|
#define GPIO_IRQF_TRIGGER_RISING BIT(1)
|
|
|
|
#define GPIO_IRQF_TRIGGER_BOTH (GPIO_IRQF_TRIGGER_FALLING | \
|
|
|
|
GPIO_IRQF_TRIGGER_RISING)
|
|
|
|
|
2025-07-04 14:58:53 +02:00
|
|
|
enum {
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_DIRECTION = 0,
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_VALUE,
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_EDGE,
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_ACTIVE_LOW,
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_SENTINEL,
|
|
|
|
GPIO_SYSFS_LINE_CLASS_ATTR_SIZE,
|
|
|
|
};
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
|
|
|
|
2025-07-04 14:58:55 +02:00
|
|
|
enum {
|
|
|
|
GPIO_SYSFS_LINE_CHIP_ATTR_DIRECTION = 0,
|
|
|
|
GPIO_SYSFS_LINE_CHIP_ATTR_VALUE,
|
|
|
|
GPIO_SYSFS_LINE_CHIP_ATTR_SENTINEL,
|
|
|
|
GPIO_SYSFS_LINE_CHIP_ATTR_SIZE,
|
|
|
|
};
|
|
|
|
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpiod_data {
|
2025-07-04 14:58:54 +02:00
|
|
|
struct list_head list;
|
|
|
|
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc;
|
2025-07-04 14:58:54 +02:00
|
|
|
struct device *dev;
|
2015-05-04 17:10:44 +02:00
|
|
|
|
|
|
|
struct mutex mutex;
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2015-05-04 17:10:39 +02:00
|
|
|
struct kernfs_node *value_kn;
|
2015-05-04 17:10:41 +02:00
|
|
|
int irq;
|
2015-05-04 17:10:48 +02:00
|
|
|
unsigned char irq_flags;
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2015-05-04 17:10:47 +02:00
|
|
|
|
|
|
|
bool direction_can_change;
|
2025-07-04 14:58:53 +02:00
|
|
|
|
2025-07-04 14:58:55 +02:00
|
|
|
struct kobject *parent;
|
2025-07-04 14:58:53 +02:00
|
|
|
struct device_attribute dir_attr;
|
|
|
|
struct device_attribute val_attr;
|
2025-07-04 14:58:56 +02:00
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:53 +02:00
|
|
|
struct device_attribute edge_attr;
|
|
|
|
struct device_attribute active_low_attr;
|
|
|
|
|
|
|
|
struct attribute *class_attrs[GPIO_SYSFS_LINE_CLASS_ATTR_SIZE];
|
|
|
|
struct attribute_group class_attr_group;
|
|
|
|
const struct attribute_group *class_attr_groups[2];
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:55 +02:00
|
|
|
|
|
|
|
struct attribute *chip_attrs[GPIO_SYSFS_LINE_CHIP_ATTR_SIZE];
|
|
|
|
struct attribute_group chip_attr_group;
|
|
|
|
const struct attribute_group *chip_attr_groups[2];
|
2015-05-04 17:10:37 +02:00
|
|
|
};
|
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
struct gpiodev_data {
|
2025-07-04 14:58:54 +02:00
|
|
|
struct list_head exported_lines;
|
2025-06-10 16:38:21 +02:00
|
|
|
struct gpio_device *gdev;
|
2025-07-04 14:58:49 +02:00
|
|
|
struct device *cdev_id; /* Class device by GPIO device ID */
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-06-10 16:38:21 +02:00
|
|
|
struct device *cdev_base; /* Class device by GPIO base */
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-06-10 16:38:21 +02:00
|
|
|
};
|
|
|
|
|
2015-05-04 17:10:44 +02:00
|
|
|
/*
|
|
|
|
* Lock to serialise gpiod export and unexport, and prevent re-export of
|
|
|
|
* gpiod whose chip is being unregistered.
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
|
|
|
static DEFINE_MUTEX(sysfs_lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* /sys/class/gpio/gpioN... only for GPIOs that are exported
|
|
|
|
* /direction
|
|
|
|
* * MAY BE OMITTED if kernel won't allow direction changes
|
|
|
|
* * is read/write as "in" or "out"
|
|
|
|
* * may also be written as "high" or "low", initializing
|
|
|
|
* output value as specified ("out" implies "low")
|
|
|
|
* /value
|
|
|
|
* * always readable, subject to hardware behavior
|
|
|
|
* * may be writable, as zero/nonzero
|
|
|
|
* /edge
|
|
|
|
* * configures behavior of poll(2) on /value
|
|
|
|
* * available only if pin can generate IRQs on input
|
|
|
|
* * is read/write as "none", "falling", "rising", or "both"
|
|
|
|
* /active_low
|
|
|
|
* * configures polarity of /value
|
|
|
|
* * is read/write as zero/nonzero
|
|
|
|
* * also affects existing and subsequent "falling" and "rising"
|
|
|
|
* /edge configuration
|
|
|
|
*/
|
|
|
|
|
2015-05-04 17:10:34 +02:00
|
|
|
static ssize_t direction_show(struct device *dev,
|
2025-06-10 16:38:19 +02:00
|
|
|
struct device_attribute *attr, char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
dir_attr);
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc = data->desc;
|
2022-02-09 13:31:15 +02:00
|
|
|
int value;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
scoped_guard(mutex, &data->mutex) {
|
|
|
|
gpiod_get_direction(desc);
|
|
|
|
value = !!test_bit(FLAG_IS_OUT, &desc->flags);
|
|
|
|
}
|
2015-05-04 17:10:44 +02:00
|
|
|
|
2022-02-09 13:31:15 +02:00
|
|
|
return sysfs_emit(buf, "%s\n", value ? "out" : "in");
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:34 +02:00
|
|
|
static ssize_t direction_store(struct device *dev,
|
2025-06-10 16:38:19 +02:00
|
|
|
struct device_attribute *attr, const char *buf,
|
|
|
|
size_t size)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
dir_attr);
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc = data->desc;
|
2025-06-10 16:38:19 +02:00
|
|
|
ssize_t status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
guard(mutex)(&data->mutex);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:36 +02:00
|
|
|
if (sysfs_streq(buf, "high"))
|
2014-07-01 14:45:15 +09:00
|
|
|
status = gpiod_direction_output_raw(desc, 1);
|
|
|
|
else if (sysfs_streq(buf, "out") || sysfs_streq(buf, "low"))
|
|
|
|
status = gpiod_direction_output_raw(desc, 0);
|
|
|
|
else if (sysfs_streq(buf, "in"))
|
|
|
|
status = gpiod_direction_input(desc);
|
|
|
|
else
|
|
|
|
status = -EINVAL;
|
|
|
|
|
|
|
|
return status ? : size;
|
|
|
|
}
|
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t value_show(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
val_attr);
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc = data->desc;
|
2025-06-10 16:38:19 +02:00
|
|
|
ssize_t status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
scoped_guard(mutex, &data->mutex)
|
|
|
|
status = gpiod_get_value_cansleep(desc);
|
2015-05-04 17:10:44 +02:00
|
|
|
|
2022-02-09 13:31:15 +02:00
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
return sysfs_emit(buf, "%zd\n", status);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t value_store(struct device *dev, struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
val_attr);
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc = data->desc;
|
2022-02-09 13:31:16 +02:00
|
|
|
ssize_t status;
|
|
|
|
long value;
|
|
|
|
|
|
|
|
status = kstrtol(buf, 0, &value);
|
2025-03-11 15:19:51 +01:00
|
|
|
if (status)
|
|
|
|
return status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
guard(mutex)(&data->mutex);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-03-11 15:19:51 +01:00
|
|
|
status = gpiod_set_value_cansleep(desc, value);
|
2024-10-31 21:01:51 +01:00
|
|
|
if (status)
|
|
|
|
return status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
return size;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2014-07-01 14:45:15 +09:00
|
|
|
static irqreturn_t gpio_sysfs_irq(int irq, void *priv)
|
|
|
|
{
|
2015-05-04 17:10:39 +02:00
|
|
|
struct gpiod_data *data = priv;
|
|
|
|
|
|
|
|
sysfs_notify_dirent(data->value_kn);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:44 +02:00
|
|
|
/* Caller holds gpiod-data mutex. */
|
2025-07-04 14:58:51 +02:00
|
|
|
static int gpio_sysfs_request_irq(struct gpiod_data *data, unsigned char flags)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2023-12-21 10:15:47 +01:00
|
|
|
struct gpio_desc *desc = data->desc;
|
|
|
|
unsigned long irq_flags;
|
|
|
|
int ret;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-01-23 12:01:10 +01:00
|
|
|
CLASS(gpio_chip_guard, guard)(desc);
|
|
|
|
if (!guard.gc)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2015-05-04 17:10:41 +02:00
|
|
|
data->irq = gpiod_to_irq(desc);
|
|
|
|
if (data->irq < 0)
|
2014-07-01 14:45:15 +09:00
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
irq_flags = IRQF_SHARED;
|
2024-10-31 21:01:55 +01:00
|
|
|
if (flags & GPIO_IRQF_TRIGGER_FALLING) {
|
2014-07-01 14:45:15 +09:00
|
|
|
irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
|
2025-06-10 16:38:19 +02:00
|
|
|
IRQF_TRIGGER_RISING : IRQF_TRIGGER_FALLING;
|
2024-10-31 21:01:55 +01:00
|
|
|
set_bit(FLAG_EDGE_FALLING, &desc->flags);
|
|
|
|
}
|
|
|
|
if (flags & GPIO_IRQF_TRIGGER_RISING) {
|
2014-07-01 14:45:15 +09:00
|
|
|
irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
|
2025-06-10 16:38:19 +02:00
|
|
|
IRQF_TRIGGER_FALLING : IRQF_TRIGGER_RISING;
|
2024-10-31 21:01:55 +01:00
|
|
|
set_bit(FLAG_EDGE_RISING, &desc->flags);
|
|
|
|
}
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:28 +02:00
|
|
|
/*
|
|
|
|
* FIXME: This should be done in the irq_request_resources callback
|
2025-06-10 16:38:19 +02:00
|
|
|
* when the irq is requested, but a few drivers currently fail to do
|
|
|
|
* so.
|
2015-05-04 17:10:28 +02:00
|
|
|
*
|
2025-06-10 16:38:19 +02:00
|
|
|
* Remove this redundant call (along with the corresponding unlock)
|
|
|
|
* when those drivers have been fixed.
|
2015-05-04 17:10:28 +02:00
|
|
|
*/
|
2024-01-23 12:01:10 +01:00
|
|
|
ret = gpiochip_lock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
|
2014-07-01 14:45:15 +09:00
|
|
|
if (ret < 0)
|
2025-07-04 14:58:50 +02:00
|
|
|
goto err_clr_bits;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:41 +02:00
|
|
|
ret = request_any_context_irq(data->irq, gpio_sysfs_irq, irq_flags,
|
2015-05-04 17:10:39 +02:00
|
|
|
"gpiolib", data);
|
2015-05-04 17:10:28 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err_unlock;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:48 +02:00
|
|
|
data->irq_flags = flags;
|
2015-05-04 17:10:41 +02:00
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
return 0;
|
|
|
|
|
2015-05-04 17:10:28 +02:00
|
|
|
err_unlock:
|
2024-01-23 12:01:10 +01:00
|
|
|
gpiochip_unlock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
|
2025-07-04 14:58:50 +02:00
|
|
|
err_clr_bits:
|
2024-10-31 21:01:55 +01:00
|
|
|
clear_bit(FLAG_EDGE_RISING, &desc->flags);
|
|
|
|
clear_bit(FLAG_EDGE_FALLING, &desc->flags);
|
2015-05-04 17:10:41 +02:00
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:44 +02:00
|
|
|
/*
|
|
|
|
* Caller holds gpiod-data mutex (unless called after class-device
|
|
|
|
* deregistration).
|
|
|
|
*/
|
2025-07-04 14:58:51 +02:00
|
|
|
static void gpio_sysfs_free_irq(struct gpiod_data *data)
|
2015-05-04 17:10:41 +02:00
|
|
|
{
|
|
|
|
struct gpio_desc *desc = data->desc;
|
|
|
|
|
2024-01-23 12:01:10 +01:00
|
|
|
CLASS(gpio_chip_guard, guard)(desc);
|
|
|
|
if (!guard.gc)
|
|
|
|
return;
|
|
|
|
|
2015-05-04 17:10:48 +02:00
|
|
|
data->irq_flags = 0;
|
2015-05-04 17:10:41 +02:00
|
|
|
free_irq(data->irq, data);
|
2024-01-23 12:01:10 +01:00
|
|
|
gpiochip_unlock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
|
2024-10-31 21:01:55 +01:00
|
|
|
clear_bit(FLAG_EDGE_RISING, &desc->flags);
|
|
|
|
clear_bit(FLAG_EDGE_FALLING, &desc->flags);
|
2015-05-04 17:10:41 +02:00
|
|
|
}
|
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static const char *const trigger_names[] = {
|
2022-02-09 13:31:17 +02:00
|
|
|
[GPIO_IRQF_TRIGGER_NONE] = "none",
|
|
|
|
[GPIO_IRQF_TRIGGER_FALLING] = "falling",
|
|
|
|
[GPIO_IRQF_TRIGGER_RISING] = "rising",
|
|
|
|
[GPIO_IRQF_TRIGGER_BOTH] = "both",
|
2014-07-01 14:45:15 +09:00
|
|
|
};
|
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t edge_show(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
edge_attr);
|
2022-02-09 13:31:17 +02:00
|
|
|
int flags;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
scoped_guard(mutex, &data->mutex)
|
|
|
|
flags = data->irq_flags;
|
2015-05-04 17:10:44 +02:00
|
|
|
|
2022-02-09 13:31:17 +02:00
|
|
|
if (flags >= ARRAY_SIZE(trigger_names))
|
2022-02-09 13:31:15 +02:00
|
|
|
return 0;
|
|
|
|
|
2022-02-09 13:31:17 +02:00
|
|
|
return sysfs_emit(buf, "%s\n", trigger_names[flags]);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t edge_store(struct device *dev, struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
edge_attr);
|
2023-12-21 10:15:47 +01:00
|
|
|
ssize_t status = size;
|
2022-02-09 13:31:17 +02:00
|
|
|
int flags;
|
2015-05-04 17:10:42 +02:00
|
|
|
|
2022-02-09 13:31:17 +02:00
|
|
|
flags = sysfs_match_string(trigger_names, buf);
|
|
|
|
if (flags < 0)
|
|
|
|
return flags;
|
2015-05-04 17:10:40 +02:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
guard(mutex)(&data->mutex);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
if (flags == data->irq_flags)
|
|
|
|
return size;
|
2015-05-04 17:10:40 +02:00
|
|
|
|
2015-05-04 17:10:48 +02:00
|
|
|
if (data->irq_flags)
|
2025-07-04 14:58:51 +02:00
|
|
|
gpio_sysfs_free_irq(data);
|
2015-05-04 17:10:41 +02:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
if (!flags)
|
|
|
|
return size;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:51 +02:00
|
|
|
status = gpio_sysfs_request_irq(data, flags);
|
2024-10-31 21:01:51 +01:00
|
|
|
if (status)
|
|
|
|
return status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:55 +01:00
|
|
|
gpiod_line_state_notify(data->desc, GPIO_V2_LINE_CHANGED_CONFIG);
|
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
return size;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:44 +02:00
|
|
|
/* Caller holds gpiod-data mutex. */
|
2025-07-04 14:58:51 +02:00
|
|
|
static int gpio_sysfs_set_active_low(struct gpiod_data *data, int value)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2023-12-21 10:15:47 +01:00
|
|
|
unsigned int flags = data->irq_flags;
|
|
|
|
struct gpio_desc *desc = data->desc;
|
|
|
|
int status = 0;
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
if (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) == !!value)
|
|
|
|
return 0;
|
|
|
|
|
2021-05-18 11:46:19 +03:00
|
|
|
assign_bit(FLAG_ACTIVE_LOW, &desc->flags, value);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
/* reconfigure poll(2) support if enabled on one edge only */
|
2015-05-04 17:10:48 +02:00
|
|
|
if (flags == GPIO_IRQF_TRIGGER_FALLING ||
|
2025-06-10 16:38:19 +02:00
|
|
|
flags == GPIO_IRQF_TRIGGER_RISING) {
|
2025-07-04 14:58:51 +02:00
|
|
|
gpio_sysfs_free_irq(data);
|
|
|
|
status = gpio_sysfs_request_irq(data, flags);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2024-10-31 21:01:54 +01:00
|
|
|
gpiod_line_state_notify(desc, GPIO_V2_LINE_CHANGED_CONFIG);
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:34 +02:00
|
|
|
static ssize_t active_low_show(struct device *dev,
|
2025-06-10 16:38:19 +02:00
|
|
|
struct device_attribute *attr, char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
active_low_attr);
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpio_desc *desc = data->desc;
|
2022-02-09 13:31:15 +02:00
|
|
|
int value;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
scoped_guard(mutex, &data->mutex)
|
|
|
|
value = !!test_bit(FLAG_ACTIVE_LOW, &desc->flags);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2022-02-09 13:31:15 +02:00
|
|
|
return sysfs_emit(buf, "%d\n", value);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:34 +02:00
|
|
|
static ssize_t active_low_store(struct device *dev,
|
2025-06-10 16:38:19 +02:00
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data = container_of(attr, struct gpiod_data,
|
|
|
|
active_low_attr);
|
2023-12-21 10:15:47 +01:00
|
|
|
ssize_t status;
|
|
|
|
long value;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2022-02-09 13:31:16 +02:00
|
|
|
status = kstrtol(buf, 0, &value);
|
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
|
2024-10-31 21:01:51 +01:00
|
|
|
guard(mutex)(&data->mutex);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:51 +02:00
|
|
|
return gpio_sysfs_set_active_low(data, value) ?: size;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-01-13 13:00:06 +01:00
|
|
|
static umode_t gpio_is_visible(struct kobject *kobj, struct attribute *attr,
|
|
|
|
int n)
|
|
|
|
{
|
2025-07-04 14:58:53 +02:00
|
|
|
struct device_attribute *dev_attr = container_of(attr,
|
|
|
|
struct device_attribute, attr);
|
2015-01-13 13:00:06 +01:00
|
|
|
umode_t mode = attr->mode;
|
2025-07-04 14:58:53 +02:00
|
|
|
struct gpiod_data *data;
|
|
|
|
|
|
|
|
if (strcmp(attr->name, "direction") == 0) {
|
|
|
|
data = container_of(dev_attr, struct gpiod_data, dir_attr);
|
2015-01-13 13:00:06 +01:00
|
|
|
|
2025-07-04 14:58:53 +02:00
|
|
|
if (!data->direction_can_change)
|
2015-01-13 13:00:06 +01:00
|
|
|
mode = 0;
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:53 +02:00
|
|
|
} else if (strcmp(attr->name, "edge") == 0) {
|
|
|
|
data = container_of(dev_attr, struct gpiod_data, edge_attr);
|
|
|
|
|
|
|
|
if (gpiod_to_irq(data->desc) < 0)
|
2015-01-13 13:00:06 +01:00
|
|
|
mode = 0;
|
2025-07-04 14:58:53 +02:00
|
|
|
|
|
|
|
if (!data->direction_can_change &&
|
|
|
|
test_bit(FLAG_IS_OUT, &data->desc->flags))
|
2015-01-13 13:00:06 +01:00
|
|
|
mode = 0;
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2015-01-13 13:00:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
/*
|
|
|
|
* /sys/class/gpio/gpiochipN/
|
|
|
|
* /base ... matching gpio_chip.base (N)
|
|
|
|
* /label ... matching gpio_chip.label
|
|
|
|
* /ngpio ... matching gpio_chip.ngpio
|
2025-07-04 14:58:49 +02:00
|
|
|
*
|
|
|
|
* AND
|
|
|
|
*
|
|
|
|
* /sys/class/gpio/chipX/
|
|
|
|
* /export ... export GPIO at given offset
|
|
|
|
* /unexport ... unexport GPIO at given offset
|
|
|
|
* /label ... matching gpio_chip.label
|
|
|
|
* /ngpio ... matching gpio_chip.ngpio
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t base_show(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-06-10 16:38:21 +02:00
|
|
|
const struct gpiodev_data *data = dev_get_drvdata(dev);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
return sysfs_emit(buf, "%u\n", data->gdev->base);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
2015-05-04 17:10:34 +02:00
|
|
|
static DEVICE_ATTR_RO(base);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t label_show(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-06-10 16:38:21 +02:00
|
|
|
const struct gpiodev_data *data = dev_get_drvdata(dev);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
return sysfs_emit(buf, "%s\n", data->gdev->label);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
2015-05-04 17:10:34 +02:00
|
|
|
static DEVICE_ATTR_RO(label);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-06-10 16:38:19 +02:00
|
|
|
static ssize_t ngpio_show(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-06-10 16:38:21 +02:00
|
|
|
const struct gpiodev_data *data = dev_get_drvdata(dev);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
return sysfs_emit(buf, "%u\n", data->gdev->ngpio);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
2015-05-04 17:10:34 +02:00
|
|
|
static DEVICE_ATTR_RO(ngpio);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:49 +02:00
|
|
|
static int export_gpio_desc(struct gpio_desc *desc)
|
|
|
|
{
|
|
|
|
int offset, ret;
|
|
|
|
|
|
|
|
CLASS(gpio_chip_guard, guard)(desc);
|
|
|
|
if (!guard.gc)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
offset = gpio_chip_hwgpio(desc);
|
|
|
|
if (!gpiochip_line_is_valid(guard.gc, offset)) {
|
|
|
|
pr_debug_ratelimited("%s: GPIO %d masked\n", __func__,
|
|
|
|
gpio_chip_hwgpio(desc));
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No extra locking here; FLAG_SYSFS just signifies that the
|
|
|
|
* request and export were done by on behalf of userspace, so
|
|
|
|
* they may be undone on its behalf too.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = gpiod_request_user(desc, "sysfs");
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = gpiod_set_transitory(desc, false);
|
|
|
|
if (ret) {
|
|
|
|
gpiod_free(desc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = gpiod_export(desc, true);
|
|
|
|
if (ret < 0) {
|
|
|
|
gpiod_free(desc);
|
|
|
|
} else {
|
|
|
|
set_bit(FLAG_SYSFS, &desc->flags);
|
|
|
|
gpiod_line_state_notify(desc, GPIO_V2_LINE_CHANGED_REQUESTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int unexport_gpio_desc(struct gpio_desc *desc)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* No extra locking here; FLAG_SYSFS just signifies that the
|
|
|
|
* request and export were done by on behalf of userspace, so
|
|
|
|
* they may be undone on its behalf too.
|
|
|
|
*/
|
|
|
|
if (!test_and_clear_bit(FLAG_SYSFS, &desc->flags))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
gpiod_unexport(desc);
|
|
|
|
gpiod_free(desc);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t do_chip_export_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, ssize_t size,
|
|
|
|
int (*handler)(struct gpio_desc *desc))
|
|
|
|
{
|
|
|
|
struct gpiodev_data *data = dev_get_drvdata(dev);
|
|
|
|
struct gpio_device *gdev = data->gdev;
|
|
|
|
struct gpio_desc *desc;
|
|
|
|
unsigned int gpio;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = kstrtouint(buf, 0, &gpio);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
desc = gpio_device_get_desc(gdev, gpio);
|
|
|
|
if (IS_ERR(desc))
|
|
|
|
return PTR_ERR(desc);
|
|
|
|
|
|
|
|
ret = handler(desc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t chip_export_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
return do_chip_export_store(dev, attr, buf, size, export_gpio_desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_export = __ATTR(export, 0200, NULL,
|
|
|
|
chip_export_store);
|
|
|
|
|
|
|
|
static ssize_t chip_unexport_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
return do_chip_export_store(dev, attr, buf, size, unexport_gpio_desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_unexport = __ATTR(unexport, 0200,
|
|
|
|
NULL,
|
|
|
|
chip_unexport_store);
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2015-01-13 13:00:04 +01:00
|
|
|
static struct attribute *gpiochip_attrs[] = {
|
2014-07-01 14:45:15 +09:00
|
|
|
&dev_attr_base.attr,
|
|
|
|
&dev_attr_label.attr,
|
|
|
|
&dev_attr_ngpio.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
2015-01-13 13:00:04 +01:00
|
|
|
ATTRIBUTE_GROUPS(gpiochip);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:49 +02:00
|
|
|
static struct attribute *gpiochip_ext_attrs[] = {
|
|
|
|
&dev_attr_label.attr,
|
|
|
|
&dev_attr_ngpio.attr,
|
|
|
|
&dev_attr_export.attr,
|
|
|
|
&dev_attr_unexport.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
ATTRIBUTE_GROUPS(gpiochip_ext);
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2014-07-01 14:45:15 +09:00
|
|
|
/*
|
|
|
|
* /sys/class/gpio/export ... write-only
|
|
|
|
* integer N ... number of GPIO to export (full access)
|
|
|
|
* /sys/class/gpio/unexport ... write-only
|
|
|
|
* integer N ... number of GPIO to unexport
|
|
|
|
*/
|
2023-03-25 09:45:37 +01:00
|
|
|
static ssize_t export_store(const struct class *class,
|
2025-06-10 16:38:19 +02:00
|
|
|
const struct class_attribute *attr,
|
|
|
|
const char *buf, size_t len)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2023-12-21 10:15:47 +01:00
|
|
|
struct gpio_desc *desc;
|
2025-07-04 14:58:49 +02:00
|
|
|
int status;
|
2023-12-21 10:15:47 +01:00
|
|
|
long gpio;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
status = kstrtol(buf, 0, &gpio);
|
2024-01-23 12:01:10 +01:00
|
|
|
if (status)
|
|
|
|
return status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2018-09-13 14:05:26 +02:00
|
|
|
desc = gpio_to_desc(gpio);
|
2014-07-01 14:45:15 +09:00
|
|
|
/* reject invalid GPIOs */
|
|
|
|
if (!desc) {
|
2024-10-21 20:57:17 +02:00
|
|
|
pr_debug_ratelimited("%s: invalid GPIO %ld\n", __func__, gpio);
|
2014-07-01 14:45:15 +09:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2024-01-23 12:01:10 +01:00
|
|
|
|
2025-07-04 14:58:49 +02:00
|
|
|
status = export_gpio_desc(desc);
|
2014-07-01 14:45:15 +09:00
|
|
|
if (status)
|
|
|
|
pr_debug("%s: status %d\n", __func__, status);
|
|
|
|
return status ? : len;
|
|
|
|
}
|
2017-06-08 10:12:40 +02:00
|
|
|
static CLASS_ATTR_WO(export);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2023-03-25 09:45:37 +01:00
|
|
|
static ssize_t unexport_store(const struct class *class,
|
2025-06-10 16:38:19 +02:00
|
|
|
const struct class_attribute *attr,
|
|
|
|
const char *buf, size_t len)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2023-12-21 10:15:47 +01:00
|
|
|
struct gpio_desc *desc;
|
|
|
|
int status;
|
|
|
|
long gpio;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
status = kstrtol(buf, 0, &gpio);
|
|
|
|
if (status < 0)
|
2025-07-04 14:58:49 +02:00
|
|
|
return status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2018-09-13 14:05:26 +02:00
|
|
|
desc = gpio_to_desc(gpio);
|
2023-02-07 16:29:45 +02:00
|
|
|
/* reject bogus commands (gpiod_unexport() ignores them) */
|
2014-07-01 14:45:15 +09:00
|
|
|
if (!desc) {
|
2024-10-21 20:57:17 +02:00
|
|
|
pr_debug_ratelimited("%s: invalid GPIO %ld\n", __func__, gpio);
|
2014-07-01 14:45:15 +09:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2025-07-04 14:58:49 +02:00
|
|
|
status = unexport_gpio_desc(desc);
|
2014-07-01 14:45:15 +09:00
|
|
|
if (status)
|
|
|
|
pr_debug("%s: status %d\n", __func__, status);
|
|
|
|
return status ? : len;
|
|
|
|
}
|
2017-06-08 10:12:40 +02:00
|
|
|
static CLASS_ATTR_WO(unexport);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2017-06-08 10:12:40 +02:00
|
|
|
static struct attribute *gpio_class_attrs[] = {
|
|
|
|
&class_attr_export.attr,
|
|
|
|
&class_attr_unexport.attr,
|
|
|
|
NULL,
|
2014-07-01 14:45:15 +09:00
|
|
|
};
|
2017-06-08 10:12:40 +02:00
|
|
|
ATTRIBUTE_GROUPS(gpio_class);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-14 14:18:30 +02:00
|
|
|
static const struct class gpio_class = {
|
2014-07-01 14:45:15 +09:00
|
|
|
.name = "gpio",
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2024-10-14 14:18:30 +02:00
|
|
|
.class_groups = gpio_class_groups,
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
};
|
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
static int match_gdev(struct device *dev, const void *desc)
|
|
|
|
{
|
|
|
|
struct gpiodev_data *data = dev_get_drvdata(dev);
|
|
|
|
const struct gpio_device *gdev = desc;
|
|
|
|
|
|
|
|
return data && data->gdev == gdev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct gpiodev_data *
|
|
|
|
gdev_get_data(struct gpio_device *gdev) __must_hold(&sysfs_lock)
|
|
|
|
{
|
2025-07-04 14:58:49 +02:00
|
|
|
/*
|
|
|
|
* Find the first device in GPIO class that matches. Whether that's
|
|
|
|
* the one indexed by GPIO base or device ID doesn't matter, it has
|
|
|
|
* the same address set as driver data.
|
|
|
|
*/
|
2025-06-10 16:38:21 +02:00
|
|
|
struct device *cdev __free(put_device) = class_find_device(&gpio_class,
|
|
|
|
NULL, gdev,
|
|
|
|
match_gdev);
|
|
|
|
if (!cdev)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return dev_get_drvdata(cdev);
|
|
|
|
};
|
|
|
|
|
2025-07-04 14:58:53 +02:00
|
|
|
static void gpiod_attr_init(struct device_attribute *dev_attr, const char *name,
|
|
|
|
ssize_t (*show)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf),
|
|
|
|
ssize_t (*store)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t count))
|
|
|
|
{
|
|
|
|
sysfs_attr_init(&dev_attr->attr);
|
|
|
|
dev_attr->attr.name = name;
|
|
|
|
dev_attr->attr.mode = 0644;
|
|
|
|
dev_attr->show = show;
|
|
|
|
dev_attr->store = store;
|
|
|
|
}
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
/**
|
|
|
|
* gpiod_export - export a GPIO through sysfs
|
2017-07-24 16:57:26 +02:00
|
|
|
* @desc: GPIO to make available, already requested
|
|
|
|
* @direction_may_change: true if userspace may change GPIO direction
|
2014-07-01 14:45:15 +09:00
|
|
|
* Context: arch_initcall or later
|
|
|
|
*
|
|
|
|
* When drivers want to make a GPIO accessible to userspace after they
|
|
|
|
* have requested it -- perhaps while debugging, or as part of their
|
|
|
|
* public interface -- they may use this routine. If the GPIO can
|
|
|
|
* change direction (some can't) and the caller allows it, userspace
|
|
|
|
* will see "direction" sysfs attribute which may be used to change
|
|
|
|
* the gpio's direction. A "value" attribute will always be provided.
|
|
|
|
*
|
2024-08-28 19:41:35 +03:00
|
|
|
* Returns:
|
|
|
|
* 0 on success, or negative errno on failure.
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
|
|
|
int gpiod_export(struct gpio_desc *desc, bool direction_may_change)
|
|
|
|
{
|
2025-07-04 14:58:55 +02:00
|
|
|
char *path __free(kfree) = NULL;
|
2025-07-04 14:58:54 +02:00
|
|
|
struct gpiodev_data *gdev_data;
|
2025-07-04 14:58:52 +02:00
|
|
|
struct gpiod_data *desc_data;
|
2023-12-21 10:15:47 +01:00
|
|
|
struct gpio_device *gdev;
|
2025-07-04 14:58:53 +02:00
|
|
|
struct attribute **attrs;
|
2024-09-30 10:30:29 +02:00
|
|
|
int status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
/* can't export until sysfs is available ... */
|
2023-03-31 11:33:13 +02:00
|
|
|
if (!class_is_registered(&gpio_class)) {
|
2014-07-01 14:45:15 +09:00
|
|
|
pr_debug("%s: called too early!\n", __func__);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc) {
|
|
|
|
pr_debug("%s: invalid gpio descriptor\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2024-01-23 12:01:10 +01:00
|
|
|
CLASS(gpio_chip_guard, guard)(desc);
|
|
|
|
if (!guard.gc)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2024-03-07 22:43:16 +01:00
|
|
|
if (test_and_set_bit(FLAG_EXPORT, &desc->flags))
|
2024-01-12 14:49:04 +01:00
|
|
|
return -EPERM;
|
|
|
|
|
gpio: reflect base and ngpio into gpio_device
Some information about the GPIO chip need to stay around also
after the gpio_chip has been removed and only the gpio_device
persist. The base and ngpio are such things, for example we
don't want a new chip arriving to overlap the number space
of a dangling gpio_device, and the chardev may still query
the device for the number of lines etc.
Note that the code that assigns base and insert gpio_device
into the global list no longer check for a missing gpio_chip:
we respect the number space allocated by any other gpio_device.
As a consequence of the gdev being referenced directly from
the gpio_desc, we need to verify it differently from all
in-kernel API calls that fall through to direct queries to
the gpio_chip vtable: we first check that desc is !NULL, then
that desc->gdev is !NULL, then, if desc->gdev->chip is NULL,
we *BAIL OUT* without any error, so as to manage the case
where operations are requested on a device that is gone.
These checks were non-uniform and partly missing in the past:
so to simplify: create the macros VALIDATE_DESC() that will
return -EINVAL if the desc or desc->gdev is missing and just
0 if the chip is gone, and conversely VALIDATE_DESC_VOID()
for the case where the function does not return an error.
By using these macros, we get warning messages about missing
gdev with reference to the right function in the kernel log.
Despite the macro business this simplifies the code and make
it more readable than if we copy/paste the same descriptor
checking code into all code ABI call sites (IMHO).
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2016-02-10 10:57:36 +01:00
|
|
|
gdev = desc->gdev;
|
2015-04-21 17:42:09 +02:00
|
|
|
|
2024-10-31 21:01:52 +01:00
|
|
|
guard(mutex)(&sysfs_lock);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-01-12 14:49:04 +01:00
|
|
|
if (!test_bit(FLAG_REQUESTED, &desc->flags)) {
|
|
|
|
gpiod_dbg(desc, "%s: unavailable (not requested)\n", __func__);
|
2014-07-01 14:45:15 +09:00
|
|
|
status = -EPERM;
|
2024-10-31 21:01:52 +01:00
|
|
|
goto err_clear_bit;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2025-07-04 14:58:52 +02:00
|
|
|
desc_data = kzalloc(sizeof(*desc_data), GFP_KERNEL);
|
|
|
|
if (!desc_data) {
|
2015-05-04 17:10:37 +02:00
|
|
|
status = -ENOMEM;
|
2024-10-31 21:01:52 +01:00
|
|
|
goto err_clear_bit;
|
2015-05-04 17:10:37 +02:00
|
|
|
}
|
|
|
|
|
2025-07-04 14:58:52 +02:00
|
|
|
desc_data->desc = desc;
|
|
|
|
mutex_init(&desc_data->mutex);
|
2024-01-23 12:01:10 +01:00
|
|
|
if (guard.gc->direction_input && guard.gc->direction_output)
|
2025-07-04 14:58:52 +02:00
|
|
|
desc_data->direction_can_change = direction_may_change;
|
2015-05-04 17:10:47 +02:00
|
|
|
else
|
2025-07-04 14:58:52 +02:00
|
|
|
desc_data->direction_can_change = false;
|
2015-05-04 17:10:37 +02:00
|
|
|
|
2025-07-04 14:58:53 +02:00
|
|
|
gpiod_attr_init(&desc_data->dir_attr, "direction",
|
|
|
|
direction_show, direction_store);
|
|
|
|
gpiod_attr_init(&desc_data->val_attr, "value", value_show, value_store);
|
2025-07-04 14:58:56 +02:00
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:53 +02:00
|
|
|
gpiod_attr_init(&desc_data->edge_attr, "edge", edge_show, edge_store);
|
|
|
|
gpiod_attr_init(&desc_data->active_low_attr, "active_low",
|
|
|
|
active_low_show, active_low_store);
|
|
|
|
|
|
|
|
attrs = desc_data->class_attrs;
|
|
|
|
desc_data->class_attr_group.is_visible = gpio_is_visible;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CLASS_ATTR_DIRECTION] = &desc_data->dir_attr.attr;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CLASS_ATTR_VALUE] = &desc_data->val_attr.attr;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CLASS_ATTR_EDGE] = &desc_data->edge_attr.attr;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CLASS_ATTR_ACTIVE_LOW] = &desc_data->active_low_attr.attr;
|
|
|
|
|
|
|
|
desc_data->class_attr_group.attrs = desc_data->class_attrs;
|
|
|
|
desc_data->class_attr_groups[0] = &desc_data->class_attr_group;
|
|
|
|
|
2025-07-04 14:58:54 +02:00
|
|
|
/*
|
|
|
|
* Note: we need to continue passing desc_data here as there's still
|
|
|
|
* at least one known user of gpiod_export_link() in the tree. This
|
|
|
|
* function still uses class_find_device() internally.
|
|
|
|
*/
|
|
|
|
desc_data->dev = device_create_with_groups(&gpio_class, &gdev->dev,
|
|
|
|
MKDEV(0, 0), desc_data,
|
|
|
|
desc_data->class_attr_groups,
|
|
|
|
"gpio%u",
|
|
|
|
desc_to_gpio(desc));
|
|
|
|
if (IS_ERR(desc_data->dev)) {
|
|
|
|
status = PTR_ERR(desc_data->dev);
|
2015-05-04 17:10:37 +02:00
|
|
|
goto err_free_data;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2025-07-04 14:58:54 +02:00
|
|
|
desc_data->value_kn = sysfs_get_dirent(desc_data->dev->kobj.sd,
|
|
|
|
"value");
|
2025-07-04 14:58:52 +02:00
|
|
|
if (!desc_data->value_kn) {
|
2025-07-04 14:58:50 +02:00
|
|
|
status = -ENODEV;
|
|
|
|
goto err_unregister_device;
|
|
|
|
}
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:50 +02:00
|
|
|
|
2025-07-04 14:58:54 +02:00
|
|
|
gdev_data = gdev_get_data(gdev);
|
|
|
|
if (!gdev_data) {
|
|
|
|
status = -ENODEV;
|
2025-07-04 14:58:55 +02:00
|
|
|
goto err_put_dirent;
|
|
|
|
}
|
|
|
|
|
|
|
|
desc_data->chip_attr_group.name = kasprintf(GFP_KERNEL, "gpio%u",
|
|
|
|
gpio_chip_hwgpio(desc));
|
|
|
|
if (!desc_data->chip_attr_group.name) {
|
|
|
|
status = -ENOMEM;
|
|
|
|
goto err_put_dirent;
|
|
|
|
}
|
|
|
|
|
|
|
|
attrs = desc_data->chip_attrs;
|
|
|
|
desc_data->chip_attr_group.is_visible = gpio_is_visible;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CHIP_ATTR_DIRECTION] = &desc_data->dir_attr.attr;
|
|
|
|
attrs[GPIO_SYSFS_LINE_CHIP_ATTR_VALUE] = &desc_data->val_attr.attr;
|
|
|
|
|
|
|
|
desc_data->chip_attr_group.attrs = attrs;
|
|
|
|
desc_data->chip_attr_groups[0] = &desc_data->chip_attr_group;
|
|
|
|
|
|
|
|
desc_data->parent = &gdev_data->cdev_id->kobj;
|
|
|
|
status = sysfs_create_groups(desc_data->parent,
|
|
|
|
desc_data->chip_attr_groups);
|
|
|
|
if (status)
|
|
|
|
goto err_free_name;
|
|
|
|
|
|
|
|
path = kasprintf(GFP_KERNEL, "gpio%u/value", gpio_chip_hwgpio(desc));
|
|
|
|
if (!path) {
|
|
|
|
status = -ENOMEM;
|
|
|
|
goto err_remove_groups;
|
2025-07-04 14:58:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
list_add(&desc_data->list, &gdev_data->exported_lines);
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
return 0;
|
|
|
|
|
2025-07-04 14:58:55 +02:00
|
|
|
err_remove_groups:
|
|
|
|
sysfs_remove_groups(desc_data->parent, desc_data->chip_attr_groups);
|
|
|
|
err_free_name:
|
|
|
|
kfree(desc_data->chip_attr_group.name);
|
|
|
|
err_put_dirent:
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:55 +02:00
|
|
|
sysfs_put(desc_data->value_kn);
|
2025-07-04 14:58:50 +02:00
|
|
|
err_unregister_device:
|
2025-07-04 14:58:54 +02:00
|
|
|
device_unregister(desc_data->dev);
|
2015-05-04 17:10:37 +02:00
|
|
|
err_free_data:
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:52 +02:00
|
|
|
kfree(desc_data);
|
2024-10-31 21:01:52 +01:00
|
|
|
err_clear_bit:
|
2024-01-12 14:49:04 +01:00
|
|
|
clear_bit(FLAG_EXPORT, &desc->flags);
|
2014-07-01 14:45:15 +09:00
|
|
|
gpiod_dbg(desc, "%s: status %d\n", __func__, status);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(gpiod_export);
|
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2015-05-04 17:10:37 +02:00
|
|
|
static int match_export(struct device *dev, const void *desc)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2015-05-04 17:10:37 +02:00
|
|
|
struct gpiod_data *data = dev_get_drvdata(dev);
|
|
|
|
|
2025-07-04 14:58:48 +02:00
|
|
|
return gpiod_is_equal(data->desc, desc);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpiod_export_link - create a sysfs link to an exported GPIO node
|
|
|
|
* @dev: device under which to create symlink
|
|
|
|
* @name: name of the symlink
|
2017-07-24 16:57:26 +02:00
|
|
|
* @desc: GPIO to create symlink to, already exported
|
2014-07-01 14:45:15 +09:00
|
|
|
*
|
|
|
|
* Set up a symlink from /sys/.../dev/name to /sys/class/gpio/gpioN
|
|
|
|
* node. Caller is responsible for unlinking.
|
|
|
|
*
|
2024-08-28 19:41:35 +03:00
|
|
|
* Returns:
|
|
|
|
* 0 on success, or negative errno on failure.
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
|
|
|
int gpiod_export_link(struct device *dev, const char *name,
|
|
|
|
struct gpio_desc *desc)
|
|
|
|
{
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2015-05-04 17:10:43 +02:00
|
|
|
struct device *cdev;
|
|
|
|
int ret;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
if (!desc) {
|
|
|
|
pr_warn("%s: invalid GPIO\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:43 +02:00
|
|
|
cdev = class_find_device(&gpio_class, NULL, desc, match_export);
|
|
|
|
if (!cdev)
|
|
|
|
return -ENODEV;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:43 +02:00
|
|
|
ret = sysfs_create_link(&dev->kobj, &cdev->kobj, name);
|
|
|
|
put_device(cdev);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:43 +02:00
|
|
|
return ret;
|
2025-07-04 14:58:56 +02:00
|
|
|
#else
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(gpiod_export_link);
|
|
|
|
|
|
|
|
/**
|
2016-09-08 17:11:20 +05:30
|
|
|
* gpiod_unexport - reverse effect of gpiod_export()
|
2017-07-24 16:57:26 +02:00
|
|
|
* @desc: GPIO to make unavailable
|
2014-07-01 14:45:15 +09:00
|
|
|
*
|
2016-09-08 17:11:20 +05:30
|
|
|
* This is implicit on gpiod_free().
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
|
|
|
void gpiod_unexport(struct gpio_desc *desc)
|
|
|
|
{
|
2025-07-18 16:22:15 -05:00
|
|
|
struct gpiod_data *tmp, *desc_data = NULL;
|
2025-07-04 14:58:54 +02:00
|
|
|
struct gpiodev_data *gdev_data;
|
|
|
|
struct gpio_device *gdev;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
if (!desc) {
|
|
|
|
pr_warn("%s: invalid GPIO\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-10-31 21:01:52 +01:00
|
|
|
scoped_guard(mutex, &sysfs_lock) {
|
|
|
|
if (!test_bit(FLAG_EXPORT, &desc->flags))
|
|
|
|
return;
|
2015-05-04 17:10:45 +02:00
|
|
|
|
2025-07-04 14:58:54 +02:00
|
|
|
gdev = gpiod_to_gpio_device(desc);
|
|
|
|
gdev_data = gdev_get_data(gdev);
|
|
|
|
if (!gdev_data)
|
|
|
|
return;
|
|
|
|
|
2025-07-18 16:22:15 -05:00
|
|
|
list_for_each_entry(tmp, &gdev_data->exported_lines, list) {
|
|
|
|
if (gpiod_is_equal(desc, tmp->desc)) {
|
|
|
|
desc_data = tmp;
|
2025-07-04 14:58:54 +02:00
|
|
|
break;
|
2025-07-18 16:22:15 -05:00
|
|
|
}
|
|
|
|
}
|
2025-07-04 14:58:54 +02:00
|
|
|
|
|
|
|
if (!desc_data)
|
2024-10-31 21:01:52 +01:00
|
|
|
return;
|
2015-05-04 17:10:45 +02:00
|
|
|
|
2025-07-04 14:58:54 +02:00
|
|
|
list_del(&desc_data->list);
|
2024-10-31 21:01:52 +01:00
|
|
|
clear_bit(FLAG_EXPORT, &desc->flags);
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:52 +02:00
|
|
|
sysfs_put(desc_data->value_kn);
|
2025-07-04 14:58:54 +02:00
|
|
|
device_unregister(desc_data->dev);
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-10-31 21:01:52 +01:00
|
|
|
/*
|
|
|
|
* Release irq after deregistration to prevent race with
|
|
|
|
* edge_store.
|
|
|
|
*/
|
2025-07-04 14:58:52 +02:00
|
|
|
if (desc_data->irq_flags)
|
|
|
|
gpio_sysfs_free_irq(desc_data);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:55 +02:00
|
|
|
|
|
|
|
sysfs_remove_groups(desc_data->parent,
|
|
|
|
desc_data->chip_attr_groups);
|
2024-10-31 21:01:52 +01:00
|
|
|
}
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:52 +02:00
|
|
|
mutex_destroy(&desc_data->mutex);
|
|
|
|
kfree(desc_data);
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(gpiod_unexport);
|
|
|
|
|
2016-02-09 13:21:06 +01:00
|
|
|
int gpiochip_sysfs_register(struct gpio_device *gdev)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-06-10 16:38:21 +02:00
|
|
|
struct gpiodev_data *data;
|
2024-01-23 12:01:10 +01:00
|
|
|
struct gpio_chip *chip;
|
2023-12-21 10:15:47 +01:00
|
|
|
struct device *parent;
|
2025-06-23 00:02:21 +02:00
|
|
|
int err;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2015-05-04 17:10:32 +02:00
|
|
|
/*
|
|
|
|
* Many systems add gpio chips for SOC support very early,
|
2014-07-01 14:45:15 +09:00
|
|
|
* before driver model support is available. In those cases we
|
2015-05-04 17:10:32 +02:00
|
|
|
* register later, in gpiolib_sysfs_init() ... here we just
|
2014-07-01 14:45:15 +09:00
|
|
|
* verify that _some_ field of gpio_class got initialized.
|
|
|
|
*/
|
2023-03-31 11:33:13 +02:00
|
|
|
if (!class_is_registered(&gpio_class))
|
2014-07-01 14:45:15 +09:00
|
|
|
return 0;
|
|
|
|
|
2024-01-23 12:01:10 +01:00
|
|
|
guard(srcu)(&gdev->srcu);
|
|
|
|
|
2024-02-14 09:44:18 +01:00
|
|
|
chip = srcu_dereference(gdev->chip, &gdev->srcu);
|
2024-01-23 12:01:10 +01:00
|
|
|
if (!chip)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2016-02-24 22:17:19 +08:00
|
|
|
/*
|
|
|
|
* For sysfs backward compatibility we need to preserve this
|
|
|
|
* preferred parenting to the gpio_chip parent field, if set.
|
|
|
|
*/
|
|
|
|
if (chip->parent)
|
|
|
|
parent = chip->parent;
|
|
|
|
else
|
|
|
|
parent = &gdev->dev;
|
|
|
|
|
2025-06-10 16:38:21 +02:00
|
|
|
data = kmalloc(sizeof(*data), GFP_KERNEL);
|
|
|
|
if (!data)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
data->gdev = gdev;
|
2025-07-04 14:58:54 +02:00
|
|
|
INIT_LIST_HEAD(&data->exported_lines);
|
2015-05-04 17:10:30 +02:00
|
|
|
|
2024-10-31 21:01:52 +01:00
|
|
|
guard(mutex)(&sysfs_lock);
|
2025-06-10 16:38:21 +02:00
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-06-10 16:38:21 +02:00
|
|
|
/* use chip->base for the ID; it's already known to be unique */
|
|
|
|
data->cdev_base = device_create_with_groups(&gpio_class, parent,
|
|
|
|
MKDEV(0, 0), data,
|
|
|
|
gpiochip_groups,
|
|
|
|
GPIOCHIP_NAME "%d",
|
|
|
|
chip->base);
|
|
|
|
if (IS_ERR(data->cdev_base)) {
|
2025-06-23 00:02:21 +02:00
|
|
|
err = PTR_ERR(data->cdev_base);
|
2025-06-10 16:38:21 +02:00
|
|
|
kfree(data);
|
2025-06-23 00:02:21 +02:00
|
|
|
return err;
|
2025-06-10 16:38:21 +02:00
|
|
|
}
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:49 +02:00
|
|
|
data->cdev_id = device_create_with_groups(&gpio_class, parent,
|
|
|
|
MKDEV(0, 0), data,
|
|
|
|
gpiochip_ext_groups,
|
|
|
|
"chip%d", gdev->id);
|
|
|
|
if (IS_ERR(data->cdev_id)) {
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-07-04 14:58:49 +02:00
|
|
|
device_unregister(data->cdev_base);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:49 +02:00
|
|
|
err = PTR_ERR(data->cdev_id);
|
|
|
|
kfree(data);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:10:31 +02:00
|
|
|
return 0;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:21:06 +01:00
|
|
|
void gpiochip_sysfs_unregister(struct gpio_device *gdev)
|
2014-07-01 14:45:15 +09:00
|
|
|
{
|
2025-06-10 16:38:21 +02:00
|
|
|
struct gpiodev_data *data;
|
2015-04-21 17:42:09 +02:00
|
|
|
struct gpio_desc *desc;
|
2024-01-23 12:01:10 +01:00
|
|
|
struct gpio_chip *chip;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2024-01-24 14:08:45 +01:00
|
|
|
scoped_guard(mutex, &sysfs_lock) {
|
2025-06-10 16:38:21 +02:00
|
|
|
data = gdev_get_data(gdev);
|
|
|
|
if (!data)
|
2024-01-24 14:08:45 +01:00
|
|
|
return;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
2025-07-04 14:58:56 +02:00
|
|
|
#if IS_ENABLED(CONFIG_GPIO_SYSFS_LEGACY)
|
2025-06-10 16:38:21 +02:00
|
|
|
device_unregister(data->cdev_base);
|
2025-07-04 14:58:56 +02:00
|
|
|
#endif /* CONFIG_GPIO_SYSFS_LEGACY */
|
2025-07-04 14:58:49 +02:00
|
|
|
device_unregister(data->cdev_id);
|
2025-06-10 16:38:21 +02:00
|
|
|
kfree(data);
|
2024-01-24 14:08:45 +01:00
|
|
|
}
|
2015-04-21 17:42:09 +02:00
|
|
|
|
2024-01-23 12:01:10 +01:00
|
|
|
guard(srcu)(&gdev->srcu);
|
|
|
|
|
2024-02-14 09:44:18 +01:00
|
|
|
chip = srcu_dereference(gdev->chip, &gdev->srcu);
|
2024-02-14 09:52:48 +01:00
|
|
|
if (!chip)
|
2024-01-23 12:01:10 +01:00
|
|
|
return;
|
|
|
|
|
2015-04-21 17:42:09 +02:00
|
|
|
/* unregister gpiod class devices owned by sysfs */
|
2023-08-14 14:26:15 +03:00
|
|
|
for_each_gpio_desc_with_flag(chip, desc, FLAG_SYSFS) {
|
|
|
|
gpiod_unexport(desc);
|
2022-02-01 17:27:56 +02:00
|
|
|
gpiod_free(desc);
|
2023-08-14 14:26:15 +03:00
|
|
|
}
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
|
2024-01-24 16:29:39 +01:00
|
|
|
/*
|
|
|
|
* We're not really looking for a device - we just want to iterate over the
|
|
|
|
* list and call this callback for each GPIO device. This is why this function
|
|
|
|
* always returns 0.
|
|
|
|
*/
|
|
|
|
static int gpiofind_sysfs_register(struct gpio_chip *gc, const void *data)
|
|
|
|
{
|
|
|
|
struct gpio_device *gdev = gc->gpiodev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = gpiochip_sysfs_register(gdev);
|
|
|
|
if (ret)
|
|
|
|
chip_err(gc, "failed to register the sysfs entry: %d\n", ret);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-01 14:45:15 +09:00
|
|
|
static int __init gpiolib_sysfs_init(void)
|
|
|
|
{
|
2024-01-24 16:29:39 +01:00
|
|
|
int status;
|
2014-07-01 14:45:15 +09:00
|
|
|
|
|
|
|
status = class_register(&gpio_class);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
/* Scan and register the gpio_chips which registered very
|
|
|
|
* early (e.g. before the class_register above was called).
|
|
|
|
*
|
|
|
|
* We run before arch_initcall() so chip->dev nodes can have
|
2023-02-07 16:29:45 +02:00
|
|
|
* registered, and so arch_initcall() can always gpiod_export().
|
2014-07-01 14:45:15 +09:00
|
|
|
*/
|
2024-01-24 16:29:39 +01:00
|
|
|
(void)gpio_device_find(NULL, gpiofind_sysfs_register);
|
2024-01-15 12:17:43 +01:00
|
|
|
|
2024-01-24 16:29:39 +01:00
|
|
|
return 0;
|
2014-07-01 14:45:15 +09:00
|
|
|
}
|
|
|
|
postcore_initcall(gpiolib_sysfs_init);
|