patch-5.15.79-rt54.patch
[platform/kernel/linux-rpi.git] / drivers / leds / trigger / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 menuconfig LEDS_TRIGGERS
3         bool "LED Trigger support"
4         depends on LEDS_CLASS
5         help
6           This option enables trigger support for the leds class.
7           These triggers allow kernel events to drive the LEDs and can
8           be configured via sysfs. If unsure, say Y.
9
10 if LEDS_TRIGGERS
11
12 config LEDS_TRIGGER_TIMER
13         tristate "LED Timer Trigger"
14         help
15           This allows LEDs to be controlled by a programmable timer
16           via sysfs. Some LED hardware can be programmed to start
17           blinking the LED without any further software interaction.
18           For more details read Documentation/leds/leds-class.rst.
19
20           If unsure, say Y.
21
22 config LEDS_TRIGGER_ONESHOT
23         tristate "LED One-shot Trigger"
24         help
25           This allows LEDs to blink in one-shot pulses with parameters
26           controlled via sysfs.  It's useful to notify the user on
27           sporadic events, when there are no clear begin and end trap points,
28           or on dense events, where this blinks the LED at constant rate if
29           rearmed continuously.
30
31           It also shows how to use the led_blink_set_oneshot() function.
32
33           If unsure, say Y.
34
35 config LEDS_TRIGGER_DISK
36         bool "LED Disk Trigger"
37         depends on ATA
38         help
39           This allows LEDs to be controlled by disk activity.
40           If unsure, say Y.
41
42 config LEDS_TRIGGER_MTD
43         bool "LED MTD (NAND/NOR) Trigger"
44         depends on MTD
45         help
46           This allows LEDs to be controlled by MTD activity.
47           If unsure, say N.
48
49 config LEDS_TRIGGER_HEARTBEAT
50         tristate "LED Heartbeat Trigger"
51         help
52           This allows LEDs to be controlled by a CPU load average.
53           The flash frequency is a hyperbolic function of the 1-minute
54           load average.
55           If unsure, say Y.
56
57 config LEDS_TRIGGER_BACKLIGHT
58         tristate "LED backlight Trigger"
59         help
60           This allows LEDs to be controlled as a backlight device: they
61           turn off and on when the display is blanked and unblanked.
62
63           If unsure, say N.
64
65 config LEDS_TRIGGER_CPU
66         bool "LED CPU Trigger"
67         depends on !PREEMPT_RT
68         help
69           This allows LEDs to be controlled by active CPUs. This shows
70           the active CPUs across an array of LEDs so you can see which
71           CPUs are active on the system at any given moment.
72
73           If unsure, say N.
74
75 config LEDS_TRIGGER_ACTIVITY
76         tristate "LED activity Trigger"
77         help
78           This allows LEDs to be controlled by an immediate CPU usage.
79           The flash frequency and duty cycle varies from faint flashes to
80           intense brightness depending on the instant CPU load.
81           If unsure, say N.
82
83 config LEDS_TRIGGER_GPIO
84         tristate "LED GPIO Trigger"
85         depends on GPIOLIB || COMPILE_TEST
86         help
87           This allows LEDs to be controlled by gpio events. It's good
88           when using gpios as switches and triggering the needed LEDs
89           from there. One use case is n810's keypad LEDs that could
90           be triggered by this trigger when user slides up to show
91           keypad.
92
93           If unsure, say N.
94
95 config LEDS_TRIGGER_DEFAULT_ON
96         tristate "LED Default ON Trigger"
97         help
98           This allows LEDs to be initialised in the ON state.
99           If unsure, say Y.
100
101 comment "iptables trigger is under Netfilter config (LED target)"
102         depends on LEDS_TRIGGERS
103
104 config LEDS_TRIGGER_TRANSIENT
105         tristate "LED Transient Trigger"
106         help
107           This allows one time activation of a transient state on
108           GPIO/PWM based hardware.
109           If unsure, say Y.
110
111 config LEDS_TRIGGER_CAMERA
112         tristate "LED Camera Flash/Torch Trigger"
113         help
114           This allows LEDs to be controlled as a camera flash/torch device.
115           This enables direct flash/torch on/off by the driver, kernel space.
116           If unsure, say Y.
117
118 config LEDS_TRIGGER_INPUT
119         tristate "LED Input Trigger"
120         depends on LEDS_TRIGGERS
121         help
122           This allows the GPIOs assigned to be LEDs to be initialised to inputs.
123           If unsure, say Y.
124
125 config LEDS_TRIGGER_PANIC
126         bool "LED Panic Trigger"
127         help
128           This allows LEDs to be configured to blink on a kernel panic.
129           Enabling this option will allow to mark certain LEDs as panic indicators,
130           allowing to blink them on a kernel panic, even if they are set to
131           a different trigger.
132           If unsure, say Y.
133
134 config LEDS_TRIGGER_NETDEV
135         tristate "LED Netdev Trigger"
136         depends on NET
137         help
138           This allows LEDs to be controlled by network device activity.
139           If unsure, say Y.
140
141 config LEDS_TRIGGER_PATTERN
142         tristate "LED Pattern Trigger"
143         help
144           This allows LEDs to be controlled by a software or hardware pattern
145           which is a series of tuples, of brightness and duration (ms).
146           If unsure, say N
147
148 config LEDS_TRIGGER_AUDIO
149         tristate "Audio Mute LED Trigger"
150         help
151           This allows LEDs to be controlled by audio drivers for following
152           the audio mute and mic-mute changes.
153           If unsure, say N
154
155 config LEDS_TRIGGER_TTY
156         tristate "LED Trigger for TTY devices"
157         depends on TTY
158         help
159           This allows LEDs to be controlled by activity on ttys which includes
160           serial devices like /dev/ttyS0.
161
162           When build as a module this driver will be called ledtrig-tty.
163
164 config LEDS_TRIGGER_ACTPWR
165         tristate "ACT/PWR Input Trigger"
166         depends on LEDS_TRIGGERS
167         help
168           This trigger is intended for platforms that have one software-
169           controllable LED and no dedicated activity or power LEDs, hence the
170           need to make the one LED perform both functions. It cycles between
171           default-on and an inverted mmc0 every 500ms, guaranteeing that it is
172           on for at least half of the time.
173           If unsure, say N.
174
175 endif # LEDS_TRIGGERS