forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
leds: trigger: implement a tty trigger
Usage is as follows: myled=ledname tty=ttyS0 echo tty > /sys/class/leds/$myled/trigger echo $tty > /sys/class/leds/$myled/ttyname . When this new trigger is active it periodically checks the tty's statistics and when it changed since the last check the led is flashed once. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
- Loading branch information
1 parent
c1ff1de
commit 4185c273a8de0340cee6655a363f98c3737665d0
Showing
4 changed files
with
203 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| What: /sys/class/leds/<led>/ttyname | ||
| Date: Jul 2020 | ||
| KernelVersion: 5.8 | ||
| Contact: linux-leds@vger.kernel.org | ||
| Description: | ||
| Specifies the tty device name of the triggering tty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,187 @@ | ||
| // SPDX-License-Identifier: GPL-2.0 | ||
|
|
||
| #include <linux/delay.h> | ||
| #include <linux/leds.h> | ||
| #include <linux/module.h> | ||
| #include <linux/slab.h> | ||
| #include <linux/tty.h> | ||
| #include <uapi/linux/serial.h> | ||
|
|
||
| struct ledtrig_tty_data { | ||
| struct led_classdev *led_cdev; | ||
| struct delayed_work dwork; | ||
| struct mutex mutex; | ||
| const char *ttyname; | ||
| struct tty_struct *tty; | ||
| int rx, tx; | ||
| }; | ||
|
|
||
| static void ledtrig_tty_halt(struct ledtrig_tty_data *trigger_data) | ||
| { | ||
| cancel_delayed_work_sync(&trigger_data->dwork); | ||
| } | ||
|
|
||
| static void ledtrig_tty_restart(struct ledtrig_tty_data *trigger_data) | ||
| { | ||
| schedule_delayed_work(&trigger_data->dwork, 0); | ||
| } | ||
|
|
||
| static ssize_t ttyname_show(struct device *dev, | ||
| struct device_attribute *attr, char *buf) | ||
| { | ||
| struct ledtrig_tty_data *trigger_data = led_trigger_get_drvdata(dev); | ||
| ssize_t len = 0; | ||
|
|
||
| mutex_lock(&trigger_data->mutex); | ||
|
|
||
| if (trigger_data->ttyname) | ||
| len = sprintf(buf, "%s\n", trigger_data->ttyname); | ||
|
|
||
| mutex_unlock(&trigger_data->mutex); | ||
|
|
||
| return len; | ||
| } | ||
|
|
||
| static ssize_t ttyname_store(struct device *dev, | ||
| struct device_attribute *attr, const char *buf, | ||
| size_t size) | ||
| { | ||
| struct ledtrig_tty_data *trigger_data = led_trigger_get_drvdata(dev); | ||
| char *ttyname; | ||
| ssize_t ret = size; | ||
|
|
||
| ledtrig_tty_halt(trigger_data); | ||
|
|
||
| mutex_lock(&trigger_data->mutex); | ||
|
|
||
| if (size > 0 && buf[size - 1] == '\n') | ||
| size -= 1; | ||
|
|
||
| if (size) { | ||
| ttyname = kmemdup_nul(buf, size, GFP_KERNEL); | ||
| if (!ttyname) { | ||
| ret = -ENOMEM; | ||
| goto out_unlock; | ||
| } | ||
| } else { | ||
| ttyname = NULL; | ||
| } | ||
|
|
||
| kfree(trigger_data->ttyname); | ||
| tty_kref_put(trigger_data->tty); | ||
| trigger_data->tty = NULL; | ||
|
|
||
| trigger_data->ttyname = ttyname; | ||
|
|
||
| out_unlock: | ||
| mutex_unlock(&trigger_data->mutex); | ||
|
|
||
| if (ttyname) | ||
| ledtrig_tty_restart(trigger_data); | ||
|
|
||
| return ret; | ||
| } | ||
| static DEVICE_ATTR_RW(ttyname); | ||
|
|
||
| static void ledtrig_tty_work(struct work_struct *work) | ||
| { | ||
| struct ledtrig_tty_data *trigger_data = | ||
| container_of(work, struct ledtrig_tty_data, dwork.work); | ||
| struct serial_icounter_struct icount; | ||
| int ret; | ||
| bool firstrun = false; | ||
|
|
||
| mutex_lock(&trigger_data->mutex); | ||
|
|
||
| BUG_ON(!trigger_data->ttyname); | ||
|
|
||
| /* try to get the tty corresponding to $ttyname */ | ||
| if (!trigger_data->tty) { | ||
| dev_t devno; | ||
| struct tty_struct *tty; | ||
| int ret; | ||
|
|
||
| firstrun = true; | ||
|
|
||
| ret = tty_dev_name_to_number(trigger_data->ttyname, &devno); | ||
| if (ret < 0) | ||
| /* | ||
| * A device with this name might appear later, so keep | ||
| * retrying. | ||
| */ | ||
| goto out; | ||
|
|
||
| tty = tty_kopen_shared(devno); | ||
| if (IS_ERR(tty) || !tty) | ||
| /* What to do? retry or abort */ | ||
| goto out; | ||
|
|
||
| trigger_data->tty = tty; | ||
| } | ||
|
|
||
| ret = tty_get_icount(trigger_data->tty, &icount); | ||
| if (ret) { | ||
| mutex_unlock(&trigger_data->mutex); | ||
| dev_info(trigger_data->tty->dev, "Failed to get icount, stopped polling\n"); | ||
| mutex_unlock(&trigger_data->mutex); | ||
| return; | ||
| } | ||
|
|
||
| if (icount.rx != trigger_data->rx || | ||
| icount.tx != trigger_data->tx) { | ||
| led_set_brightness(trigger_data->led_cdev, LED_ON); | ||
|
|
||
| trigger_data->rx = icount.rx; | ||
| trigger_data->tx = icount.tx; | ||
| } else { | ||
| led_set_brightness(trigger_data->led_cdev, LED_OFF); | ||
| } | ||
|
|
||
| out: | ||
| mutex_unlock(&trigger_data->mutex); | ||
| schedule_delayed_work(&trigger_data->dwork, msecs_to_jiffies(100)); | ||
| } | ||
|
|
||
| static struct attribute *ledtrig_tty_attrs[] = { | ||
| &dev_attr_ttyname.attr, | ||
| NULL | ||
| }; | ||
| ATTRIBUTE_GROUPS(ledtrig_tty); | ||
|
|
||
| static int ledtrig_tty_activate(struct led_classdev *led_cdev) | ||
| { | ||
| struct ledtrig_tty_data *trigger_data; | ||
|
|
||
| trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL); | ||
| if (!trigger_data) | ||
| return -ENOMEM; | ||
|
|
||
| led_set_trigger_data(led_cdev, trigger_data); | ||
|
|
||
| INIT_DELAYED_WORK(&trigger_data->dwork, ledtrig_tty_work); | ||
| trigger_data->led_cdev = led_cdev; | ||
| mutex_init(&trigger_data->mutex); | ||
|
|
||
| return 0; | ||
| } | ||
|
|
||
| static void ledtrig_tty_deactivate(struct led_classdev *led_cdev) | ||
| { | ||
| struct ledtrig_tty_data *trigger_data = led_get_trigger_data(led_cdev); | ||
|
|
||
| cancel_delayed_work_sync(&trigger_data->dwork); | ||
|
|
||
| kfree(trigger_data); | ||
| } | ||
|
|
||
| struct led_trigger ledtrig_tty = { | ||
| .name = "tty", | ||
| .activate = ledtrig_tty_activate, | ||
| .deactivate = ledtrig_tty_deactivate, | ||
| .groups = ledtrig_tty_groups, | ||
| }; | ||
| module_led_trigger(ledtrig_tty); | ||
|
|
||
| MODULE_AUTHOR("Uwe Kleine-König <u.kleine-koenig@pengutronix.de>"); | ||
| MODULE_DESCRIPTION("UART LED trigger"); | ||
| MODULE_LICENSE("GPL v2"); |