]> git.baikalelectronics.ru Git - kernel.git/commit
pwm: Send a uevent on the pwmchip device upon channel sysfs (un)export
authorFabrice Gasnier <fabrice.gasnier@st.com>
Mon, 1 Oct 2018 13:23:57 +0000 (15:23 +0200)
committerThierry Reding <thierry.reding@gmail.com>
Fri, 12 Oct 2018 11:51:33 +0000 (13:51 +0200)
commit97da8963e389182eb954fb60ed92f0e003cc6109
tree53a28e6dca26ab1e000c1ae4e6ed1ad8c72e665e
parent663600d1d4243869bae34c6be30334bec2df67f9
pwm: Send a uevent on the pwmchip device upon channel sysfs (un)export

This patch sends a uevent (KOBJ_CHANGE) on the pwmchipN device,
everytime a pwmX channel has been exported/unexported via sysfs. This
allows udev to implement rules on such events, like:

SUBSYSTEM=="pwm*", PROGRAM="/bin/sh -c '\
        chown -R root:gpio /sys/class/pwm && chmod -R 770 /sys/class/pwm;\
        chown -R root:gpio
/sys/devices/platform/soc/*.pwm/pwm/pwmchip* && chmod -R 770
/sys/devices/platform/soc/*.pwm/pwm/pwmchip*\
'"

This is a replacement patch for commit b4c7764392af ("pwm: Set class for
exported channels in sysfs"), see [1].

basic testing:
$ udevadm monitor --environment &
$ echo 0 > /sys/class/pwm/pwmchip0/export
KERNEL[197.321736] change   /devices/.../pwm/pwmchip0 (pwm)
ACTION=change
DEVPATH=/devices/.../pwm/pwmchip0
EXPORT=pwm0
SEQNUM=2045
SUBSYSTEM=pwm

[1] https://lkml.org/lkml/2018/9/25/713

Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
Tested-by: Gottfried Haider <gottfried.haider@gmail.com>
Tested-by: Michal Vokáč <michal.vokac@ysoft.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/sysfs.c