This source file includes following definitions.
- lcdev_to_flcdev
- led_set_flash_strobe
- led_get_flash_strobe
1
2
3
4
5
6
7
8 #ifndef __LINUX_FLASH_LEDS_H_INCLUDED
9 #define __LINUX_FLASH_LEDS_H_INCLUDED
10
11 #include <linux/leds.h>
12
13 struct device_node;
14 struct led_classdev_flash;
15
16
17
18
19
20 #define LED_FAULT_OVER_VOLTAGE (1 << 0)
21 #define LED_FAULT_TIMEOUT (1 << 1)
22 #define LED_FAULT_OVER_TEMPERATURE (1 << 2)
23 #define LED_FAULT_SHORT_CIRCUIT (1 << 3)
24 #define LED_FAULT_OVER_CURRENT (1 << 4)
25 #define LED_FAULT_INDICATOR (1 << 5)
26 #define LED_FAULT_UNDER_VOLTAGE (1 << 6)
27 #define LED_FAULT_INPUT_VOLTAGE (1 << 7)
28 #define LED_FAULT_LED_OVER_TEMPERATURE (1 << 8)
29 #define LED_NUM_FLASH_FAULTS 9
30
31 #define LED_FLASH_SYSFS_GROUPS_SIZE 5
32
33 struct led_flash_ops {
34
35 int (*flash_brightness_set)(struct led_classdev_flash *fled_cdev,
36 u32 brightness);
37
38 int (*flash_brightness_get)(struct led_classdev_flash *fled_cdev,
39 u32 *brightness);
40
41 int (*strobe_set)(struct led_classdev_flash *fled_cdev, bool state);
42
43 int (*strobe_get)(struct led_classdev_flash *fled_cdev, bool *state);
44
45 int (*timeout_set)(struct led_classdev_flash *fled_cdev, u32 timeout);
46
47 int (*fault_get)(struct led_classdev_flash *fled_cdev, u32 *fault);
48 };
49
50
51
52
53
54 struct led_flash_setting {
55
56 u32 min;
57
58 u32 max;
59
60 u32 step;
61
62 u32 val;
63 };
64
65 struct led_classdev_flash {
66
67 struct led_classdev led_cdev;
68
69
70 const struct led_flash_ops *ops;
71
72
73 struct led_flash_setting brightness;
74
75
76 struct led_flash_setting timeout;
77
78
79 const struct attribute_group *sysfs_groups[LED_FLASH_SYSFS_GROUPS_SIZE];
80 };
81
82 static inline struct led_classdev_flash *lcdev_to_flcdev(
83 struct led_classdev *lcdev)
84 {
85 return container_of(lcdev, struct led_classdev_flash, led_cdev);
86 }
87
88
89
90
91
92
93
94
95
96
97 extern int led_classdev_flash_register_ext(struct device *parent,
98 struct led_classdev_flash *fled_cdev,
99 struct led_init_data *init_data);
100
101 #define led_classdev_flash_register(parent, fled_cdev) \
102 led_classdev_flash_register_ext(parent, fled_cdev, NULL)
103
104
105
106
107
108
109
110
111 extern void led_classdev_flash_unregister(struct led_classdev_flash *fled_cdev);
112
113
114
115
116
117
118
119
120
121
122 static inline int led_set_flash_strobe(struct led_classdev_flash *fled_cdev,
123 bool state)
124 {
125 if (!fled_cdev)
126 return -EINVAL;
127 return fled_cdev->ops->strobe_set(fled_cdev, state);
128 }
129
130
131
132
133
134
135
136
137
138
139 static inline int led_get_flash_strobe(struct led_classdev_flash *fled_cdev,
140 bool *state)
141 {
142 if (!fled_cdev)
143 return -EINVAL;
144 if (fled_cdev->ops->strobe_get)
145 return fled_cdev->ops->strobe_get(fled_cdev, state);
146
147 return -EINVAL;
148 }
149
150
151
152
153
154
155
156
157
158
159 extern int led_set_flash_brightness(struct led_classdev_flash *fled_cdev,
160 u32 brightness);
161
162
163
164
165
166
167
168
169
170
171 extern int led_update_flash_brightness(struct led_classdev_flash *fled_cdev);
172
173
174
175
176
177
178
179
180
181
182 extern int led_set_flash_timeout(struct led_classdev_flash *fled_cdev,
183 u32 timeout);
184
185
186
187
188
189
190
191
192
193
194 extern int led_get_flash_fault(struct led_classdev_flash *fled_cdev,
195 u32 *fault);
196
197 #endif