Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0
 
 
 
 
  2#include <linux/idr.h>
 
 
 
 
 
  3#include <linux/mutex.h>
  4#include <linux/device.h>
 
 
 
 
  5#include <linux/sysfs.h>
 
 
  6#include <linux/gpio/consumer.h>
  7#include <linux/gpio/driver.h>
  8#include <linux/interrupt.h>
  9#include <linux/kdev_t.h>
 10#include <linux/slab.h>
 11#include <linux/ctype.h>
 12
 13#include "gpiolib.h"
 14#include "gpiolib-sysfs.h"
 15
 
 
 
 16#define GPIO_IRQF_TRIGGER_FALLING	BIT(0)
 17#define GPIO_IRQF_TRIGGER_RISING	BIT(1)
 18#define GPIO_IRQF_TRIGGER_BOTH		(GPIO_IRQF_TRIGGER_FALLING | \
 19					 GPIO_IRQF_TRIGGER_RISING)
 20
 21struct gpiod_data {
 22	struct gpio_desc *desc;
 23
 24	struct mutex mutex;
 25	struct kernfs_node *value_kn;
 26	int irq;
 27	unsigned char irq_flags;
 28
 29	bool direction_can_change;
 30};
 31
 32/*
 33 * Lock to serialise gpiod export and unexport, and prevent re-export of
 34 * gpiod whose chip is being unregistered.
 35 */
 36static DEFINE_MUTEX(sysfs_lock);
 37
 38/*
 39 * /sys/class/gpio/gpioN... only for GPIOs that are exported
 40 *   /direction
 41 *      * MAY BE OMITTED if kernel won't allow direction changes
 42 *      * is read/write as "in" or "out"
 43 *      * may also be written as "high" or "low", initializing
 44 *        output value as specified ("out" implies "low")
 45 *   /value
 46 *      * always readable, subject to hardware behavior
 47 *      * may be writable, as zero/nonzero
 48 *   /edge
 49 *      * configures behavior of poll(2) on /value
 50 *      * available only if pin can generate IRQs on input
 51 *      * is read/write as "none", "falling", "rising", or "both"
 52 *   /active_low
 53 *      * configures polarity of /value
 54 *      * is read/write as zero/nonzero
 55 *      * also affects existing and subsequent "falling" and "rising"
 56 *        /edge configuration
 57 */
 58
 59static ssize_t direction_show(struct device *dev,
 60		struct device_attribute *attr, char *buf)
 61{
 62	struct gpiod_data *data = dev_get_drvdata(dev);
 63	struct gpio_desc *desc = data->desc;
 64	ssize_t			status;
 65
 66	mutex_lock(&data->mutex);
 67
 68	gpiod_get_direction(desc);
 69	status = sprintf(buf, "%s\n",
 70			test_bit(FLAG_IS_OUT, &desc->flags)
 71				? "out" : "in");
 72
 73	mutex_unlock(&data->mutex);
 
 
 
 74
 75	return status;
 76}
 77
 78static ssize_t direction_store(struct device *dev,
 79		struct device_attribute *attr, const char *buf, size_t size)
 80{
 81	struct gpiod_data *data = dev_get_drvdata(dev);
 82	struct gpio_desc *desc = data->desc;
 83	ssize_t			status;
 84
 85	mutex_lock(&data->mutex);
 86
 87	if (sysfs_streq(buf, "high"))
 88		status = gpiod_direction_output_raw(desc, 1);
 89	else if (sysfs_streq(buf, "out") || sysfs_streq(buf, "low"))
 90		status = gpiod_direction_output_raw(desc, 0);
 91	else if (sysfs_streq(buf, "in"))
 92		status = gpiod_direction_input(desc);
 93	else
 94		status = -EINVAL;
 95
 96	mutex_unlock(&data->mutex);
 97
 98	return status ? : size;
 99}
100static DEVICE_ATTR_RW(direction);
101
102static ssize_t value_show(struct device *dev,
103		struct device_attribute *attr, char *buf)
104{
105	struct gpiod_data *data = dev_get_drvdata(dev);
106	struct gpio_desc *desc = data->desc;
107	ssize_t			status;
108
109	mutex_lock(&data->mutex);
 
110
111	status = gpiod_get_value_cansleep(desc);
112	if (status < 0)
113		goto err;
114
115	buf[0] = '0' + status;
116	buf[1] = '\n';
117	status = 2;
118err:
119	mutex_unlock(&data->mutex);
120
121	return status;
122}
123
124static ssize_t value_store(struct device *dev,
125		struct device_attribute *attr, const char *buf, size_t size)
126{
127	struct gpiod_data *data = dev_get_drvdata(dev);
128	struct gpio_desc *desc = data->desc;
129	ssize_t status = 0;
 
130
131	mutex_lock(&data->mutex);
132
133	if (!test_bit(FLAG_IS_OUT, &desc->flags)) {
134		status = -EPERM;
135	} else {
136		long		value;
137
138		if (size <= 2 && isdigit(buf[0]) &&
139		    (size == 1 || buf[1] == '\n'))
140			value = buf[0] - '0';
141		else
142			status = kstrtol(buf, 0, &value);
143		if (status == 0) {
144			gpiod_set_value_cansleep(desc, value);
145			status = size;
146		}
147	}
148
149	mutex_unlock(&data->mutex);
 
150
151	return status;
 
 
152}
153static DEVICE_ATTR_PREALLOC(value, S_IWUSR | S_IRUGO, value_show, value_store);
154
155static irqreturn_t gpio_sysfs_irq(int irq, void *priv)
156{
157	struct gpiod_data *data = priv;
158
159	sysfs_notify_dirent(data->value_kn);
160
161	return IRQ_HANDLED;
162}
163
164/* Caller holds gpiod-data mutex. */
165static int gpio_sysfs_request_irq(struct device *dev, unsigned char flags)
166{
167	struct gpiod_data	*data = dev_get_drvdata(dev);
168	struct gpio_desc	*desc = data->desc;
169	unsigned long		irq_flags;
170	int			ret;
 
 
 
 
171
172	data->irq = gpiod_to_irq(desc);
173	if (data->irq < 0)
174		return -EIO;
175
176	data->value_kn = sysfs_get_dirent(dev->kobj.sd, "value");
177	if (!data->value_kn)
178		return -ENODEV;
179
180	irq_flags = IRQF_SHARED;
181	if (flags & GPIO_IRQF_TRIGGER_FALLING)
182		irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
183			IRQF_TRIGGER_RISING : IRQF_TRIGGER_FALLING;
184	if (flags & GPIO_IRQF_TRIGGER_RISING)
 
 
185		irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
186			IRQF_TRIGGER_FALLING : IRQF_TRIGGER_RISING;
 
 
187
188	/*
189	 * FIXME: This should be done in the irq_request_resources callback
190	 *        when the irq is requested, but a few drivers currently fail
191	 *        to do so.
192	 *
193	 *        Remove this redundant call (along with the corresponding
194	 *        unlock) when those drivers have been fixed.
195	 */
196	ret = gpiochip_lock_as_irq(desc->gdev->chip, gpio_chip_hwgpio(desc));
197	if (ret < 0)
198		goto err_put_kn;
199
200	ret = request_any_context_irq(data->irq, gpio_sysfs_irq, irq_flags,
201				"gpiolib", data);
202	if (ret < 0)
203		goto err_unlock;
204
205	data->irq_flags = flags;
206
207	return 0;
208
209err_unlock:
210	gpiochip_unlock_as_irq(desc->gdev->chip, gpio_chip_hwgpio(desc));
211err_put_kn:
 
 
212	sysfs_put(data->value_kn);
213
214	return ret;
215}
216
217/*
218 * Caller holds gpiod-data mutex (unless called after class-device
219 * deregistration).
220 */
221static void gpio_sysfs_free_irq(struct device *dev)
222{
223	struct gpiod_data *data = dev_get_drvdata(dev);
224	struct gpio_desc *desc = data->desc;
225
 
 
 
 
226	data->irq_flags = 0;
227	free_irq(data->irq, data);
228	gpiochip_unlock_as_irq(desc->gdev->chip, gpio_chip_hwgpio(desc));
 
 
229	sysfs_put(data->value_kn);
230}
231
232static const struct {
233	const char *name;
234	unsigned char flags;
235} trigger_types[] = {
236	{ "none",    0 },
237	{ "falling", GPIO_IRQF_TRIGGER_FALLING },
238	{ "rising",  GPIO_IRQF_TRIGGER_RISING },
239	{ "both",    GPIO_IRQF_TRIGGER_BOTH },
240};
241
242static ssize_t edge_show(struct device *dev,
243		struct device_attribute *attr, char *buf)
244{
245	struct gpiod_data *data = dev_get_drvdata(dev);
246	ssize_t	status = 0;
247	int i;
248
249	mutex_lock(&data->mutex);
 
250
251	for (i = 0; i < ARRAY_SIZE(trigger_types); i++) {
252		if (data->irq_flags == trigger_types[i].flags) {
253			status = sprintf(buf, "%s\n", trigger_types[i].name);
254			break;
255		}
256	}
257
258	mutex_unlock(&data->mutex);
259
260	return status;
261}
262
263static ssize_t edge_store(struct device *dev,
264		struct device_attribute *attr, const char *buf, size_t size)
265{
266	struct gpiod_data *data = dev_get_drvdata(dev);
267	unsigned char flags;
268	ssize_t	status = size;
269	int i;
270
271	for (i = 0; i < ARRAY_SIZE(trigger_types); i++) {
272		if (sysfs_streq(trigger_types[i].name, buf))
273			break;
274	}
275
276	if (i == ARRAY_SIZE(trigger_types))
277		return -EINVAL;
278
279	flags = trigger_types[i].flags;
280
281	mutex_lock(&data->mutex);
282
283	if (flags == data->irq_flags) {
284		status = size;
285		goto out_unlock;
286	}
287
288	if (data->irq_flags)
289		gpio_sysfs_free_irq(dev);
290
291	if (flags) {
292		status = gpio_sysfs_request_irq(dev, flags);
293		if (!status)
294			status = size;
295	}
296
297out_unlock:
298	mutex_unlock(&data->mutex);
 
299
300	return status;
 
 
301}
302static DEVICE_ATTR_RW(edge);
303
304/* Caller holds gpiod-data mutex. */
305static int gpio_sysfs_set_active_low(struct device *dev, int value)
306{
307	struct gpiod_data	*data = dev_get_drvdata(dev);
308	struct gpio_desc	*desc = data->desc;
309	int			status = 0;
310	unsigned int		flags = data->irq_flags;
 
311
312	if (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) == !!value)
313		return 0;
314
315	if (value)
316		set_bit(FLAG_ACTIVE_LOW, &desc->flags);
317	else
318		clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
319
320	/* reconfigure poll(2) support if enabled on one edge only */
321	if (flags == GPIO_IRQF_TRIGGER_FALLING ||
322					flags == GPIO_IRQF_TRIGGER_RISING) {
323		gpio_sysfs_free_irq(dev);
324		status = gpio_sysfs_request_irq(dev, flags);
325	}
326
 
 
327	return status;
328}
329
330static ssize_t active_low_show(struct device *dev,
331		struct device_attribute *attr, char *buf)
332{
333	struct gpiod_data *data = dev_get_drvdata(dev);
334	struct gpio_desc *desc = data->desc;
335	ssize_t			status;
336
337	mutex_lock(&data->mutex);
338
339	status = sprintf(buf, "%d\n",
340				!!test_bit(FLAG_ACTIVE_LOW, &desc->flags));
341
342	mutex_unlock(&data->mutex);
 
343
344	return status;
345}
346
347static ssize_t active_low_store(struct device *dev,
348		struct device_attribute *attr, const char *buf, size_t size)
349{
350	struct gpiod_data	*data = dev_get_drvdata(dev);
351	ssize_t			status;
352	long			value;
353
354	mutex_lock(&data->mutex);
355
356	status = kstrtol(buf, 0, &value);
357	if (status == 0)
358		status = gpio_sysfs_set_active_low(dev, value);
359
360	mutex_unlock(&data->mutex);
361
362	return status ? : size;
363}
364static DEVICE_ATTR_RW(active_low);
365
366static umode_t gpio_is_visible(struct kobject *kobj, struct attribute *attr,
367			       int n)
368{
369	struct device *dev = kobj_to_dev(kobj);
370	struct gpiod_data *data = dev_get_drvdata(dev);
371	struct gpio_desc *desc = data->desc;
372	umode_t mode = attr->mode;
373	bool show_direction = data->direction_can_change;
374
375	if (attr == &dev_attr_direction.attr) {
376		if (!show_direction)
377			mode = 0;
378	} else if (attr == &dev_attr_edge.attr) {
379		if (gpiod_to_irq(desc) < 0)
380			mode = 0;
381		if (!show_direction && test_bit(FLAG_IS_OUT, &desc->flags))
382			mode = 0;
383	}
384
385	return mode;
386}
387
388static struct attribute *gpio_attrs[] = {
389	&dev_attr_direction.attr,
390	&dev_attr_edge.attr,
391	&dev_attr_value.attr,
392	&dev_attr_active_low.attr,
393	NULL,
394};
395
396static const struct attribute_group gpio_group = {
397	.attrs = gpio_attrs,
398	.is_visible = gpio_is_visible,
399};
400
401static const struct attribute_group *gpio_groups[] = {
402	&gpio_group,
403	NULL
404};
405
406/*
407 * /sys/class/gpio/gpiochipN/
408 *   /base ... matching gpio_chip.base (N)
409 *   /label ... matching gpio_chip.label
410 *   /ngpio ... matching gpio_chip.ngpio
411 */
412
413static ssize_t base_show(struct device *dev,
414			       struct device_attribute *attr, char *buf)
415{
416	const struct gpio_chip	*chip = dev_get_drvdata(dev);
417
418	return sprintf(buf, "%d\n", chip->base);
419}
420static DEVICE_ATTR_RO(base);
421
422static ssize_t label_show(struct device *dev,
423			       struct device_attribute *attr, char *buf)
424{
425	const struct gpio_chip	*chip = dev_get_drvdata(dev);
426
427	return sprintf(buf, "%s\n", chip->label ? : "");
428}
429static DEVICE_ATTR_RO(label);
430
431static ssize_t ngpio_show(struct device *dev,
432			       struct device_attribute *attr, char *buf)
433{
434	const struct gpio_chip	*chip = dev_get_drvdata(dev);
435
436	return sprintf(buf, "%u\n", chip->ngpio);
437}
438static DEVICE_ATTR_RO(ngpio);
439
440static struct attribute *gpiochip_attrs[] = {
441	&dev_attr_base.attr,
442	&dev_attr_label.attr,
443	&dev_attr_ngpio.attr,
444	NULL,
445};
446ATTRIBUTE_GROUPS(gpiochip);
447
448/*
449 * /sys/class/gpio/export ... write-only
450 *	integer N ... number of GPIO to export (full access)
451 * /sys/class/gpio/unexport ... write-only
452 *	integer N ... number of GPIO to unexport
453 */
454static ssize_t export_store(struct class *class,
455				struct class_attribute *attr,
456				const char *buf, size_t len)
457{
458	long			gpio;
459	struct gpio_desc	*desc;
460	int			status;
461
462	status = kstrtol(buf, 0, &gpio);
463	if (status < 0)
464		goto done;
465
466	desc = gpio_to_desc(gpio);
467	/* reject invalid GPIOs */
468	if (!desc) {
469		pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
 
 
 
 
 
 
 
 
 
 
470		return -EINVAL;
471	}
472
473	/* No extra locking here; FLAG_SYSFS just signifies that the
474	 * request and export were done by on behalf of userspace, so
475	 * they may be undone on its behalf too.
476	 */
477
478	status = gpiod_request(desc, "sysfs");
479	if (status < 0) {
480		if (status == -EPROBE_DEFER)
481			status = -ENODEV;
482		goto done;
483	}
484
485	status = gpiod_set_transitory(desc, false);
486	if (!status) {
487		status = gpiod_export(desc, true);
488		if (status < 0)
489			gpiod_free(desc);
490		else
491			set_bit(FLAG_SYSFS, &desc->flags);
 
 
 
 
 
492	}
493
494done:
495	if (status)
496		pr_debug("%s: status %d\n", __func__, status);
497	return status ? : len;
498}
499static CLASS_ATTR_WO(export);
500
501static ssize_t unexport_store(struct class *class,
502				struct class_attribute *attr,
503				const char *buf, size_t len)
504{
505	long			gpio;
506	struct gpio_desc	*desc;
507	int			status;
508
509	status = kstrtol(buf, 0, &gpio);
510	if (status < 0)
511		goto done;
512
513	desc = gpio_to_desc(gpio);
514	/* reject bogus commands (gpio_unexport ignores them) */
515	if (!desc) {
516		pr_warn("%s: invalid GPIO %ld\n", __func__, gpio);
517		return -EINVAL;
518	}
519
520	status = -EINVAL;
521
522	/* No extra locking here; FLAG_SYSFS just signifies that the
523	 * request and export were done by on behalf of userspace, so
524	 * they may be undone on its behalf too.
525	 */
526	if (test_and_clear_bit(FLAG_SYSFS, &desc->flags)) {
527		status = 0;
528		gpiod_free(desc);
 
529	}
530done:
531	if (status)
532		pr_debug("%s: status %d\n", __func__, status);
533	return status ? : len;
534}
535static CLASS_ATTR_WO(unexport);
536
537static struct attribute *gpio_class_attrs[] = {
538	&class_attr_export.attr,
539	&class_attr_unexport.attr,
540	NULL,
541};
542ATTRIBUTE_GROUPS(gpio_class);
543
544static struct class gpio_class = {
545	.name =		"gpio",
546	.owner =	THIS_MODULE,
547
548	.class_groups = gpio_class_groups,
549};
550
551
552/**
553 * gpiod_export - export a GPIO through sysfs
554 * @desc: GPIO to make available, already requested
555 * @direction_may_change: true if userspace may change GPIO direction
556 * Context: arch_initcall or later
557 *
558 * When drivers want to make a GPIO accessible to userspace after they
559 * have requested it -- perhaps while debugging, or as part of their
560 * public interface -- they may use this routine.  If the GPIO can
561 * change direction (some can't) and the caller allows it, userspace
562 * will see "direction" sysfs attribute which may be used to change
563 * the gpio's direction.  A "value" attribute will always be provided.
564 *
565 * Returns zero on success, else an error.
 
566 */
567int gpiod_export(struct gpio_desc *desc, bool direction_may_change)
568{
569	struct gpio_chip	*chip;
570	struct gpio_device	*gdev;
571	struct gpiod_data	*data;
572	unsigned long		flags;
573	int			status;
574	const char		*ioname = NULL;
575	struct device		*dev;
576	int			offset;
577
578	/* can't export until sysfs is available ... */
579	if (!gpio_class.p) {
580		pr_debug("%s: called too early!\n", __func__);
581		return -ENOENT;
582	}
583
584	if (!desc) {
585		pr_debug("%s: invalid gpio descriptor\n", __func__);
586		return -EINVAL;
587	}
588
 
 
 
 
 
 
 
589	gdev = desc->gdev;
590	chip = gdev->chip;
591
592	mutex_lock(&sysfs_lock);
593
594	/* check if chip is being removed */
595	if (!chip || !gdev->mockdev) {
596		status = -ENODEV;
597		goto err_unlock;
598	}
599
600	spin_lock_irqsave(&gpio_lock, flags);
601	if (!test_bit(FLAG_REQUESTED, &desc->flags) ||
602	     test_bit(FLAG_EXPORT, &desc->flags)) {
603		spin_unlock_irqrestore(&gpio_lock, flags);
604		gpiod_dbg(desc, "%s: unavailable (requested=%d, exported=%d)\n",
605				__func__,
606				test_bit(FLAG_REQUESTED, &desc->flags),
607				test_bit(FLAG_EXPORT, &desc->flags));
608		status = -EPERM;
609		goto err_unlock;
610	}
611	spin_unlock_irqrestore(&gpio_lock, flags);
612
613	data = kzalloc(sizeof(*data), GFP_KERNEL);
614	if (!data) {
615		status = -ENOMEM;
616		goto err_unlock;
617	}
618
619	data->desc = desc;
620	mutex_init(&data->mutex);
621	if (chip->direction_input && chip->direction_output)
622		data->direction_can_change = direction_may_change;
623	else
624		data->direction_can_change = false;
625
626	offset = gpio_chip_hwgpio(desc);
627	if (chip->names && chip->names[offset])
628		ioname = chip->names[offset];
629
630	dev = device_create_with_groups(&gpio_class, &gdev->dev,
631					MKDEV(0, 0), data, gpio_groups,
632					ioname ? ioname : "gpio%u",
633					desc_to_gpio(desc));
634	if (IS_ERR(dev)) {
635		status = PTR_ERR(dev);
636		goto err_free_data;
637	}
638
639	set_bit(FLAG_EXPORT, &desc->flags);
640	mutex_unlock(&sysfs_lock);
641	return 0;
642
643err_free_data:
644	kfree(data);
645err_unlock:
646	mutex_unlock(&sysfs_lock);
647	gpiod_dbg(desc, "%s: status %d\n", __func__, status);
648	return status;
649}
650EXPORT_SYMBOL_GPL(gpiod_export);
651
652static int match_export(struct device *dev, const void *desc)
653{
654	struct gpiod_data *data = dev_get_drvdata(dev);
655
656	return data->desc == desc;
657}
658
659/**
660 * gpiod_export_link - create a sysfs link to an exported GPIO node
661 * @dev: device under which to create symlink
662 * @name: name of the symlink
663 * @desc: GPIO to create symlink to, already exported
664 *
665 * Set up a symlink from /sys/.../dev/name to /sys/class/gpio/gpioN
666 * node. Caller is responsible for unlinking.
667 *
668 * Returns zero on success, else an error.
 
669 */
670int gpiod_export_link(struct device *dev, const char *name,
671		      struct gpio_desc *desc)
672{
673	struct device *cdev;
674	int ret;
675
676	if (!desc) {
677		pr_warn("%s: invalid GPIO\n", __func__);
678		return -EINVAL;
679	}
680
681	cdev = class_find_device(&gpio_class, NULL, desc, match_export);
682	if (!cdev)
683		return -ENODEV;
684
685	ret = sysfs_create_link(&dev->kobj, &cdev->kobj, name);
686	put_device(cdev);
687
688	return ret;
689}
690EXPORT_SYMBOL_GPL(gpiod_export_link);
691
692/**
693 * gpiod_unexport - reverse effect of gpiod_export()
694 * @desc: GPIO to make unavailable
695 *
696 * This is implicit on gpiod_free().
697 */
698void gpiod_unexport(struct gpio_desc *desc)
699{
700	struct gpiod_data *data;
701	struct device *dev;
702
703	if (!desc) {
704		pr_warn("%s: invalid GPIO\n", __func__);
705		return;
706	}
707
708	mutex_lock(&sysfs_lock);
 
 
 
 
 
 
 
 
 
 
709
710	if (!test_bit(FLAG_EXPORT, &desc->flags))
711		goto err_unlock;
712
713	dev = class_find_device(&gpio_class, NULL, desc, match_export);
714	if (!dev)
715		goto err_unlock;
716
717	data = dev_get_drvdata(dev);
718
719	clear_bit(FLAG_EXPORT, &desc->flags);
720
721	device_unregister(dev);
722
723	/*
724	 * Release irq after deregistration to prevent race with edge_store.
725	 */
726	if (data->irq_flags)
727		gpio_sysfs_free_irq(dev);
728
729	mutex_unlock(&sysfs_lock);
730
731	put_device(dev);
732	kfree(data);
733
734	return;
735
736err_unlock:
737	mutex_unlock(&sysfs_lock);
738}
739EXPORT_SYMBOL_GPL(gpiod_unexport);
740
741int gpiochip_sysfs_register(struct gpio_device *gdev)
742{
743	struct device	*dev;
744	struct device	*parent;
745	struct gpio_chip *chip = gdev->chip;
746
747	/*
748	 * Many systems add gpio chips for SOC support very early,
749	 * before driver model support is available.  In those cases we
750	 * register later, in gpiolib_sysfs_init() ... here we just
751	 * verify that _some_ field of gpio_class got initialized.
752	 */
753	if (!gpio_class.p)
754		return 0;
755
 
 
 
 
 
 
756	/*
757	 * For sysfs backward compatibility we need to preserve this
758	 * preferred parenting to the gpio_chip parent field, if set.
759	 */
760	if (chip->parent)
761		parent = chip->parent;
762	else
763		parent = &gdev->dev;
764
765	/* use chip->base for the ID; it's already known to be unique */
766	dev = device_create_with_groups(&gpio_class, parent, MKDEV(0, 0), chip,
767					gpiochip_groups, GPIOCHIP_NAME "%d",
768					chip->base);
769	if (IS_ERR(dev))
770		return PTR_ERR(dev);
771
772	mutex_lock(&sysfs_lock);
773	gdev->mockdev = dev;
774	mutex_unlock(&sysfs_lock);
775
776	return 0;
777}
778
779void gpiochip_sysfs_unregister(struct gpio_device *gdev)
780{
781	struct gpio_desc *desc;
782	struct gpio_chip *chip = gdev->chip;
783	unsigned int i;
784
785	if (!gdev->mockdev)
786		return;
 
787
788	device_unregister(gdev->mockdev);
789
790	/* prevent further gpiod exports */
791	mutex_lock(&sysfs_lock);
792	gdev->mockdev = NULL;
793	mutex_unlock(&sysfs_lock);
 
 
 
 
 
794
795	/* unregister gpiod class devices owned by sysfs */
796	for (i = 0; i < chip->ngpio; i++) {
797		desc = &gdev->descs[i];
798		if (test_and_clear_bit(FLAG_SYSFS, &desc->flags))
799			gpiod_free(desc);
800	}
801}
802
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
803static int __init gpiolib_sysfs_init(void)
804{
805	int		status;
806	unsigned long	flags;
807	struct gpio_device *gdev;
808
809	status = class_register(&gpio_class);
810	if (status < 0)
811		return status;
812
813	/* Scan and register the gpio_chips which registered very
814	 * early (e.g. before the class_register above was called).
815	 *
816	 * We run before arch_initcall() so chip->dev nodes can have
817	 * registered, and so arch_initcall() can always gpio_export().
818	 */
819	spin_lock_irqsave(&gpio_lock, flags);
820	list_for_each_entry(gdev, &gpio_devices, list) {
821		if (gdev->mockdev)
822			continue;
823
824		/*
825		 * TODO we yield gpio_lock here because
826		 * gpiochip_sysfs_register() acquires a mutex. This is unsafe
827		 * and needs to be fixed.
828		 *
829		 * Also it would be nice to use gpiochip_find() here so we
830		 * can keep gpio_chips local to gpiolib.c, but the yield of
831		 * gpio_lock prevents us from doing this.
832		 */
833		spin_unlock_irqrestore(&gpio_lock, flags);
834		status = gpiochip_sysfs_register(gdev);
835		spin_lock_irqsave(&gpio_lock, flags);
836	}
837	spin_unlock_irqrestore(&gpio_lock, flags);
838
839	return status;
840}
841postcore_initcall(gpiolib_sysfs_init);
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2
  3#include <linux/bitops.h>
  4#include <linux/cleanup.h>
  5#include <linux/device.h>
  6#include <linux/idr.h>
  7#include <linux/init.h>
  8#include <linux/interrupt.h>
  9#include <linux/kdev_t.h>
 10#include <linux/kstrtox.h>
 11#include <linux/list.h>
 12#include <linux/mutex.h>
 13#include <linux/printk.h>
 14#include <linux/slab.h>
 15#include <linux/spinlock.h>
 16#include <linux/string.h>
 17#include <linux/srcu.h>
 18#include <linux/sysfs.h>
 19#include <linux/types.h>
 20
 21#include <linux/gpio/consumer.h>
 22#include <linux/gpio/driver.h>
 23
 24#include <uapi/linux/gpio.h>
 
 
 25
 26#include "gpiolib.h"
 27#include "gpiolib-sysfs.h"
 28
 29struct kernfs_node;
 30
 31#define GPIO_IRQF_TRIGGER_NONE		0
 32#define GPIO_IRQF_TRIGGER_FALLING	BIT(0)
 33#define GPIO_IRQF_TRIGGER_RISING	BIT(1)
 34#define GPIO_IRQF_TRIGGER_BOTH		(GPIO_IRQF_TRIGGER_FALLING | \
 35					 GPIO_IRQF_TRIGGER_RISING)
 36
 37struct gpiod_data {
 38	struct gpio_desc *desc;
 39
 40	struct mutex mutex;
 41	struct kernfs_node *value_kn;
 42	int irq;
 43	unsigned char irq_flags;
 44
 45	bool direction_can_change;
 46};
 47
 48/*
 49 * Lock to serialise gpiod export and unexport, and prevent re-export of
 50 * gpiod whose chip is being unregistered.
 51 */
 52static DEFINE_MUTEX(sysfs_lock);
 53
 54/*
 55 * /sys/class/gpio/gpioN... only for GPIOs that are exported
 56 *   /direction
 57 *      * MAY BE OMITTED if kernel won't allow direction changes
 58 *      * is read/write as "in" or "out"
 59 *      * may also be written as "high" or "low", initializing
 60 *        output value as specified ("out" implies "low")
 61 *   /value
 62 *      * always readable, subject to hardware behavior
 63 *      * may be writable, as zero/nonzero
 64 *   /edge
 65 *      * configures behavior of poll(2) on /value
 66 *      * available only if pin can generate IRQs on input
 67 *      * is read/write as "none", "falling", "rising", or "both"
 68 *   /active_low
 69 *      * configures polarity of /value
 70 *      * is read/write as zero/nonzero
 71 *      * also affects existing and subsequent "falling" and "rising"
 72 *        /edge configuration
 73 */
 74
 75static ssize_t direction_show(struct device *dev,
 76		struct device_attribute *attr, char *buf)
 77{
 78	struct gpiod_data *data = dev_get_drvdata(dev);
 79	struct gpio_desc *desc = data->desc;
 80	int value;
 
 
 
 
 
 
 
 81
 82	scoped_guard(mutex, &data->mutex) {
 83		gpiod_get_direction(desc);
 84		value = !!test_bit(FLAG_IS_OUT, &desc->flags);
 85	}
 86
 87	return sysfs_emit(buf, "%s\n", value ? "out" : "in");
 88}
 89
 90static ssize_t direction_store(struct device *dev,
 91		struct device_attribute *attr, const char *buf, size_t size)
 92{
 93	struct gpiod_data *data = dev_get_drvdata(dev);
 94	struct gpio_desc *desc = data->desc;
 95	ssize_t			status;
 96
 97	guard(mutex)(&data->mutex);
 98
 99	if (sysfs_streq(buf, "high"))
100		status = gpiod_direction_output_raw(desc, 1);
101	else if (sysfs_streq(buf, "out") || sysfs_streq(buf, "low"))
102		status = gpiod_direction_output_raw(desc, 0);
103	else if (sysfs_streq(buf, "in"))
104		status = gpiod_direction_input(desc);
105	else
106		status = -EINVAL;
107
 
 
108	return status ? : size;
109}
110static DEVICE_ATTR_RW(direction);
111
112static ssize_t value_show(struct device *dev,
113		struct device_attribute *attr, char *buf)
114{
115	struct gpiod_data *data = dev_get_drvdata(dev);
116	struct gpio_desc *desc = data->desc;
117	ssize_t			status;
118
119	scoped_guard(mutex, &data->mutex)
120		status = gpiod_get_value_cansleep(desc);
121
 
122	if (status < 0)
123		return status;
 
 
 
 
 
 
124
125	return sysfs_emit(buf, "%zd\n", status);
126}
127
128static ssize_t value_store(struct device *dev,
129		struct device_attribute *attr, const char *buf, size_t size)
130{
131	struct gpiod_data *data = dev_get_drvdata(dev);
132	struct gpio_desc *desc = data->desc;
133	ssize_t status;
134	long value;
135
136	status = kstrtol(buf, 0, &value);
137
138	guard(mutex)(&data->mutex);
 
 
 
139
140	if (!test_bit(FLAG_IS_OUT, &desc->flags))
141		return -EPERM;
 
 
 
 
 
 
 
 
142
143	if (status)
144		return status;
145
146	gpiod_set_value_cansleep(desc, value);
147
148	return size;
149}
150static DEVICE_ATTR_PREALLOC(value, S_IWUSR | S_IRUGO, value_show, value_store);
151
152static irqreturn_t gpio_sysfs_irq(int irq, void *priv)
153{
154	struct gpiod_data *data = priv;
155
156	sysfs_notify_dirent(data->value_kn);
157
158	return IRQ_HANDLED;
159}
160
161/* Caller holds gpiod-data mutex. */
162static int gpio_sysfs_request_irq(struct device *dev, unsigned char flags)
163{
164	struct gpiod_data *data = dev_get_drvdata(dev);
165	struct gpio_desc *desc = data->desc;
166	unsigned long irq_flags;
167	int ret;
168
169	CLASS(gpio_chip_guard, guard)(desc);
170	if (!guard.gc)
171		return -ENODEV;
172
173	data->irq = gpiod_to_irq(desc);
174	if (data->irq < 0)
175		return -EIO;
176
177	data->value_kn = sysfs_get_dirent(dev->kobj.sd, "value");
178	if (!data->value_kn)
179		return -ENODEV;
180
181	irq_flags = IRQF_SHARED;
182	if (flags & GPIO_IRQF_TRIGGER_FALLING) {
183		irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
184			IRQF_TRIGGER_RISING : IRQF_TRIGGER_FALLING;
185		set_bit(FLAG_EDGE_FALLING, &desc->flags);
186	}
187	if (flags & GPIO_IRQF_TRIGGER_RISING) {
188		irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
189			IRQF_TRIGGER_FALLING : IRQF_TRIGGER_RISING;
190		set_bit(FLAG_EDGE_RISING, &desc->flags);
191	}
192
193	/*
194	 * FIXME: This should be done in the irq_request_resources callback
195	 *        when the irq is requested, but a few drivers currently fail
196	 *        to do so.
197	 *
198	 *        Remove this redundant call (along with the corresponding
199	 *        unlock) when those drivers have been fixed.
200	 */
201	ret = gpiochip_lock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
202	if (ret < 0)
203		goto err_put_kn;
204
205	ret = request_any_context_irq(data->irq, gpio_sysfs_irq, irq_flags,
206				"gpiolib", data);
207	if (ret < 0)
208		goto err_unlock;
209
210	data->irq_flags = flags;
211
212	return 0;
213
214err_unlock:
215	gpiochip_unlock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
216err_put_kn:
217	clear_bit(FLAG_EDGE_RISING, &desc->flags);
218	clear_bit(FLAG_EDGE_FALLING, &desc->flags);
219	sysfs_put(data->value_kn);
220
221	return ret;
222}
223
224/*
225 * Caller holds gpiod-data mutex (unless called after class-device
226 * deregistration).
227 */
228static void gpio_sysfs_free_irq(struct device *dev)
229{
230	struct gpiod_data *data = dev_get_drvdata(dev);
231	struct gpio_desc *desc = data->desc;
232
233	CLASS(gpio_chip_guard, guard)(desc);
234	if (!guard.gc)
235		return;
236
237	data->irq_flags = 0;
238	free_irq(data->irq, data);
239	gpiochip_unlock_as_irq(guard.gc, gpio_chip_hwgpio(desc));
240	clear_bit(FLAG_EDGE_RISING, &desc->flags);
241	clear_bit(FLAG_EDGE_FALLING, &desc->flags);
242	sysfs_put(data->value_kn);
243}
244
245static const char * const trigger_names[] = {
246	[GPIO_IRQF_TRIGGER_NONE]	= "none",
247	[GPIO_IRQF_TRIGGER_FALLING]	= "falling",
248	[GPIO_IRQF_TRIGGER_RISING]	= "rising",
249	[GPIO_IRQF_TRIGGER_BOTH]	= "both",
 
 
 
250};
251
252static ssize_t edge_show(struct device *dev,
253		struct device_attribute *attr, char *buf)
254{
255	struct gpiod_data *data = dev_get_drvdata(dev);
256	int flags;
 
257
258	scoped_guard(mutex, &data->mutex)
259		flags = data->irq_flags;
260
261	if (flags >= ARRAY_SIZE(trigger_names))
262		return 0;
 
 
 
 
 
 
263
264	return sysfs_emit(buf, "%s\n", trigger_names[flags]);
265}
266
267static ssize_t edge_store(struct device *dev,
268		struct device_attribute *attr, const char *buf, size_t size)
269{
270	struct gpiod_data *data = dev_get_drvdata(dev);
271	ssize_t status = size;
272	int flags;
 
 
 
 
 
 
273
274	flags = sysfs_match_string(trigger_names, buf);
275	if (flags < 0)
276		return flags;
 
277
278	guard(mutex)(&data->mutex);
279
280	if (flags == data->irq_flags)
281		return size;
 
 
282
283	if (data->irq_flags)
284		gpio_sysfs_free_irq(dev);
285
286	if (!flags)
287		return size;
 
 
 
288
289	status = gpio_sysfs_request_irq(dev, flags);
290	if (status)
291		return status;
292
293	gpiod_line_state_notify(data->desc, GPIO_V2_LINE_CHANGED_CONFIG);
294
295	return size;
296}
297static DEVICE_ATTR_RW(edge);
298
299/* Caller holds gpiod-data mutex. */
300static int gpio_sysfs_set_active_low(struct device *dev, int value)
301{
302	struct gpiod_data *data = dev_get_drvdata(dev);
303	unsigned int flags = data->irq_flags;
304	struct gpio_desc *desc = data->desc;
305	int status = 0;
306
307
308	if (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) == !!value)
309		return 0;
310
311	assign_bit(FLAG_ACTIVE_LOW, &desc->flags, value);
 
 
 
312
313	/* reconfigure poll(2) support if enabled on one edge only */
314	if (flags == GPIO_IRQF_TRIGGER_FALLING ||
315					flags == GPIO_IRQF_TRIGGER_RISING) {
316		gpio_sysfs_free_irq(dev);
317		status = gpio_sysfs_request_irq(dev, flags);
318	}
319
320	gpiod_line_state_notify(desc, GPIO_V2_LINE_CHANGED_CONFIG);
321
322	return status;
323}
324
325static ssize_t active_low_show(struct device *dev,
326		struct device_attribute *attr, char *buf)
327{
328	struct gpiod_data *data = dev_get_drvdata(dev);
329	struct gpio_desc *desc = data->desc;
330	int value;
 
 
 
 
 
331
332	scoped_guard(mutex, &data->mutex)
333		value = !!test_bit(FLAG_ACTIVE_LOW, &desc->flags);
334
335	return sysfs_emit(buf, "%d\n", value);
336}
337
338static ssize_t active_low_store(struct device *dev,
339		struct device_attribute *attr, const char *buf, size_t size)
340{
341	struct gpiod_data *data = dev_get_drvdata(dev);
342	ssize_t status;
343	long value;
 
 
344
345	status = kstrtol(buf, 0, &value);
346	if (status)
347		return status;
348
349	guard(mutex)(&data->mutex);
350
351	return gpio_sysfs_set_active_low(dev, value) ?: size;
352}
353static DEVICE_ATTR_RW(active_low);
354
355static umode_t gpio_is_visible(struct kobject *kobj, struct attribute *attr,
356			       int n)
357{
358	struct device *dev = kobj_to_dev(kobj);
359	struct gpiod_data *data = dev_get_drvdata(dev);
360	struct gpio_desc *desc = data->desc;
361	umode_t mode = attr->mode;
362	bool show_direction = data->direction_can_change;
363
364	if (attr == &dev_attr_direction.attr) {
365		if (!show_direction)
366			mode = 0;
367	} else if (attr == &dev_attr_edge.attr) {
368		if (gpiod_to_irq(desc) < 0)
369			mode = 0;
370		if (!show_direction && test_bit(FLAG_IS_OUT, &desc->flags))
371			mode = 0;
372	}
373
374	return mode;
375}
376
377static struct attribute *gpio_attrs[] = {
378	&dev_attr_direction.attr,
379	&dev_attr_edge.attr,
380	&dev_attr_value.attr,
381	&dev_attr_active_low.attr,
382	NULL,
383};
384
385static const struct attribute_group gpio_group = {
386	.attrs = gpio_attrs,
387	.is_visible = gpio_is_visible,
388};
389
390static const struct attribute_group *gpio_groups[] = {
391	&gpio_group,
392	NULL
393};
394
395/*
396 * /sys/class/gpio/gpiochipN/
397 *   /base ... matching gpio_chip.base (N)
398 *   /label ... matching gpio_chip.label
399 *   /ngpio ... matching gpio_chip.ngpio
400 */
401
402static ssize_t base_show(struct device *dev,
403			       struct device_attribute *attr, char *buf)
404{
405	const struct gpio_device *gdev = dev_get_drvdata(dev);
406
407	return sysfs_emit(buf, "%u\n", gdev->base);
408}
409static DEVICE_ATTR_RO(base);
410
411static ssize_t label_show(struct device *dev,
412			       struct device_attribute *attr, char *buf)
413{
414	const struct gpio_device *gdev = dev_get_drvdata(dev);
415
416	return sysfs_emit(buf, "%s\n", gdev->label);
417}
418static DEVICE_ATTR_RO(label);
419
420static ssize_t ngpio_show(struct device *dev,
421			       struct device_attribute *attr, char *buf)
422{
423	const struct gpio_device *gdev = dev_get_drvdata(dev);
424
425	return sysfs_emit(buf, "%u\n", gdev->ngpio);
426}
427static DEVICE_ATTR_RO(ngpio);
428
429static struct attribute *gpiochip_attrs[] = {
430	&dev_attr_base.attr,
431	&dev_attr_label.attr,
432	&dev_attr_ngpio.attr,
433	NULL,
434};
435ATTRIBUTE_GROUPS(gpiochip);
436
437/*
438 * /sys/class/gpio/export ... write-only
439 *	integer N ... number of GPIO to export (full access)
440 * /sys/class/gpio/unexport ... write-only
441 *	integer N ... number of GPIO to unexport
442 */
443static ssize_t export_store(const struct class *class,
444				const struct class_attribute *attr,
445				const char *buf, size_t len)
446{
447	struct gpio_desc *desc;
448	int status, offset;
449	long gpio;
450
451	status = kstrtol(buf, 0, &gpio);
452	if (status)
453		return status;
454
455	desc = gpio_to_desc(gpio);
456	/* reject invalid GPIOs */
457	if (!desc) {
458		pr_debug_ratelimited("%s: invalid GPIO %ld\n", __func__, gpio);
459		return -EINVAL;
460	}
461
462	CLASS(gpio_chip_guard, guard)(desc);
463	if (!guard.gc)
464		return -ENODEV;
465
466	offset = gpio_chip_hwgpio(desc);
467	if (!gpiochip_line_is_valid(guard.gc, offset)) {
468		pr_debug_ratelimited("%s: GPIO %ld masked\n", __func__, gpio);
469		return -EINVAL;
470	}
471
472	/* No extra locking here; FLAG_SYSFS just signifies that the
473	 * request and export were done by on behalf of userspace, so
474	 * they may be undone on its behalf too.
475	 */
476
477	status = gpiod_request_user(desc, "sysfs");
478	if (status)
 
 
479		goto done;
 
480
481	status = gpiod_set_transitory(desc, false);
482	if (status) {
483		gpiod_free(desc);
484		goto done;
485	}
486
487	status = gpiod_export(desc, true);
488	if (status < 0) {
489		gpiod_free(desc);
490	} else {
491		set_bit(FLAG_SYSFS, &desc->flags);
492		gpiod_line_state_notify(desc, GPIO_V2_LINE_CHANGED_REQUESTED);
493	}
494
495done:
496	if (status)
497		pr_debug("%s: status %d\n", __func__, status);
498	return status ? : len;
499}
500static CLASS_ATTR_WO(export);
501
502static ssize_t unexport_store(const struct class *class,
503				const struct class_attribute *attr,
504				const char *buf, size_t len)
505{
506	struct gpio_desc *desc;
507	int status;
508	long gpio;
509
510	status = kstrtol(buf, 0, &gpio);
511	if (status < 0)
512		goto done;
513
514	desc = gpio_to_desc(gpio);
515	/* reject bogus commands (gpiod_unexport() ignores them) */
516	if (!desc) {
517		pr_debug_ratelimited("%s: invalid GPIO %ld\n", __func__, gpio);
518		return -EINVAL;
519	}
520
521	status = -EINVAL;
522
523	/* No extra locking here; FLAG_SYSFS just signifies that the
524	 * request and export were done by on behalf of userspace, so
525	 * they may be undone on its behalf too.
526	 */
527	if (test_and_clear_bit(FLAG_SYSFS, &desc->flags)) {
528		gpiod_unexport(desc);
529		gpiod_free(desc);
530		status = 0;
531	}
532done:
533	if (status)
534		pr_debug("%s: status %d\n", __func__, status);
535	return status ? : len;
536}
537static CLASS_ATTR_WO(unexport);
538
539static struct attribute *gpio_class_attrs[] = {
540	&class_attr_export.attr,
541	&class_attr_unexport.attr,
542	NULL,
543};
544ATTRIBUTE_GROUPS(gpio_class);
545
546static const struct class gpio_class = {
547	.name =		"gpio",
548	.class_groups =	gpio_class_groups,
 
 
549};
550
 
551/**
552 * gpiod_export - export a GPIO through sysfs
553 * @desc: GPIO to make available, already requested
554 * @direction_may_change: true if userspace may change GPIO direction
555 * Context: arch_initcall or later
556 *
557 * When drivers want to make a GPIO accessible to userspace after they
558 * have requested it -- perhaps while debugging, or as part of their
559 * public interface -- they may use this routine.  If the GPIO can
560 * change direction (some can't) and the caller allows it, userspace
561 * will see "direction" sysfs attribute which may be used to change
562 * the gpio's direction.  A "value" attribute will always be provided.
563 *
564 * Returns:
565 * 0 on success, or negative errno on failure.
566 */
567int gpiod_export(struct gpio_desc *desc, bool direction_may_change)
568{
569	struct gpio_device *gdev;
570	struct gpiod_data *data;
571	struct device *dev;
572	int status;
 
 
 
 
573
574	/* can't export until sysfs is available ... */
575	if (!class_is_registered(&gpio_class)) {
576		pr_debug("%s: called too early!\n", __func__);
577		return -ENOENT;
578	}
579
580	if (!desc) {
581		pr_debug("%s: invalid gpio descriptor\n", __func__);
582		return -EINVAL;
583	}
584
585	CLASS(gpio_chip_guard, guard)(desc);
586	if (!guard.gc)
587		return -ENODEV;
588
589	if (test_and_set_bit(FLAG_EXPORT, &desc->flags))
590		return -EPERM;
591
592	gdev = desc->gdev;
 
593
594	guard(mutex)(&sysfs_lock);
595
596	/* check if chip is being removed */
597	if (!gdev->mockdev) {
598		status = -ENODEV;
599		goto err_clear_bit;
600	}
601
602	if (!test_bit(FLAG_REQUESTED, &desc->flags)) {
603		gpiod_dbg(desc, "%s: unavailable (not requested)\n", __func__);
 
 
 
 
 
 
604		status = -EPERM;
605		goto err_clear_bit;
606	}
 
607
608	data = kzalloc(sizeof(*data), GFP_KERNEL);
609	if (!data) {
610		status = -ENOMEM;
611		goto err_clear_bit;
612	}
613
614	data->desc = desc;
615	mutex_init(&data->mutex);
616	if (guard.gc->direction_input && guard.gc->direction_output)
617		data->direction_can_change = direction_may_change;
618	else
619		data->direction_can_change = false;
620
 
 
 
 
621	dev = device_create_with_groups(&gpio_class, &gdev->dev,
622					MKDEV(0, 0), data, gpio_groups,
623					"gpio%u", desc_to_gpio(desc));
 
624	if (IS_ERR(dev)) {
625		status = PTR_ERR(dev);
626		goto err_free_data;
627	}
628
 
 
629	return 0;
630
631err_free_data:
632	kfree(data);
633err_clear_bit:
634	clear_bit(FLAG_EXPORT, &desc->flags);
635	gpiod_dbg(desc, "%s: status %d\n", __func__, status);
636	return status;
637}
638EXPORT_SYMBOL_GPL(gpiod_export);
639
640static int match_export(struct device *dev, const void *desc)
641{
642	struct gpiod_data *data = dev_get_drvdata(dev);
643
644	return data->desc == desc;
645}
646
647/**
648 * gpiod_export_link - create a sysfs link to an exported GPIO node
649 * @dev: device under which to create symlink
650 * @name: name of the symlink
651 * @desc: GPIO to create symlink to, already exported
652 *
653 * Set up a symlink from /sys/.../dev/name to /sys/class/gpio/gpioN
654 * node. Caller is responsible for unlinking.
655 *
656 * Returns:
657 * 0 on success, or negative errno on failure.
658 */
659int gpiod_export_link(struct device *dev, const char *name,
660		      struct gpio_desc *desc)
661{
662	struct device *cdev;
663	int ret;
664
665	if (!desc) {
666		pr_warn("%s: invalid GPIO\n", __func__);
667		return -EINVAL;
668	}
669
670	cdev = class_find_device(&gpio_class, NULL, desc, match_export);
671	if (!cdev)
672		return -ENODEV;
673
674	ret = sysfs_create_link(&dev->kobj, &cdev->kobj, name);
675	put_device(cdev);
676
677	return ret;
678}
679EXPORT_SYMBOL_GPL(gpiod_export_link);
680
681/**
682 * gpiod_unexport - reverse effect of gpiod_export()
683 * @desc: GPIO to make unavailable
684 *
685 * This is implicit on gpiod_free().
686 */
687void gpiod_unexport(struct gpio_desc *desc)
688{
689	struct gpiod_data *data;
690	struct device *dev;
691
692	if (!desc) {
693		pr_warn("%s: invalid GPIO\n", __func__);
694		return;
695	}
696
697	scoped_guard(mutex, &sysfs_lock) {
698		if (!test_bit(FLAG_EXPORT, &desc->flags))
699			return;
700
701		dev = class_find_device(&gpio_class, NULL, desc, match_export);
702		if (!dev)
703			return;
704
705		data = dev_get_drvdata(dev);
706		clear_bit(FLAG_EXPORT, &desc->flags);
707		device_unregister(dev);
708
709		/*
710		 * Release irq after deregistration to prevent race with
711		 * edge_store.
712		 */
713		if (data->irq_flags)
714			gpio_sysfs_free_irq(dev);
715	}
 
 
 
 
 
 
 
 
 
 
 
 
 
716
717	put_device(dev);
718	kfree(data);
 
 
 
 
 
719}
720EXPORT_SYMBOL_GPL(gpiod_unexport);
721
722int gpiochip_sysfs_register(struct gpio_device *gdev)
723{
724	struct gpio_chip *chip;
725	struct device *parent;
726	struct device *dev;
727
728	/*
729	 * Many systems add gpio chips for SOC support very early,
730	 * before driver model support is available.  In those cases we
731	 * register later, in gpiolib_sysfs_init() ... here we just
732	 * verify that _some_ field of gpio_class got initialized.
733	 */
734	if (!class_is_registered(&gpio_class))
735		return 0;
736
737	guard(srcu)(&gdev->srcu);
738
739	chip = srcu_dereference(gdev->chip, &gdev->srcu);
740	if (!chip)
741		return -ENODEV;
742
743	/*
744	 * For sysfs backward compatibility we need to preserve this
745	 * preferred parenting to the gpio_chip parent field, if set.
746	 */
747	if (chip->parent)
748		parent = chip->parent;
749	else
750		parent = &gdev->dev;
751
752	/* use chip->base for the ID; it's already known to be unique */
753	dev = device_create_with_groups(&gpio_class, parent, MKDEV(0, 0), gdev,
754					gpiochip_groups, GPIOCHIP_NAME "%d",
755					chip->base);
756	if (IS_ERR(dev))
757		return PTR_ERR(dev);
758
759	guard(mutex)(&sysfs_lock);
760	gdev->mockdev = dev;
 
761
762	return 0;
763}
764
765void gpiochip_sysfs_unregister(struct gpio_device *gdev)
766{
767	struct gpio_desc *desc;
768	struct gpio_chip *chip;
 
769
770	scoped_guard(mutex, &sysfs_lock) {
771		if (!gdev->mockdev)
772			return;
773
774		device_unregister(gdev->mockdev);
775
776		/* prevent further gpiod exports */
777		gdev->mockdev = NULL;
778	}
779
780	guard(srcu)(&gdev->srcu);
781
782	chip = srcu_dereference(gdev->chip, &gdev->srcu);
783	if (!chip)
784		return;
785
786	/* unregister gpiod class devices owned by sysfs */
787	for_each_gpio_desc_with_flag(chip, desc, FLAG_SYSFS) {
788		gpiod_unexport(desc);
789		gpiod_free(desc);
 
790	}
791}
792
793/*
794 * We're not really looking for a device - we just want to iterate over the
795 * list and call this callback for each GPIO device. This is why this function
796 * always returns 0.
797 */
798static int gpiofind_sysfs_register(struct gpio_chip *gc, const void *data)
799{
800	struct gpio_device *gdev = gc->gpiodev;
801	int ret;
802
803	if (gdev->mockdev)
804		return 0;
805
806	ret = gpiochip_sysfs_register(gdev);
807	if (ret)
808		chip_err(gc, "failed to register the sysfs entry: %d\n", ret);
809
810	return 0;
811}
812
813static int __init gpiolib_sysfs_init(void)
814{
815	int status;
 
 
816
817	status = class_register(&gpio_class);
818	if (status < 0)
819		return status;
820
821	/* Scan and register the gpio_chips which registered very
822	 * early (e.g. before the class_register above was called).
823	 *
824	 * We run before arch_initcall() so chip->dev nodes can have
825	 * registered, and so arch_initcall() can always gpiod_export().
826	 */
827	(void)gpio_device_find(NULL, gpiofind_sysfs_register);
 
 
 
828
829	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830}
831postcore_initcall(gpiolib_sysfs_init);