forked from g7/mce-plugin-libhybris
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sysfs-led-htcvision.c
336 lines (270 loc) · 9.5 KB
/
sysfs-led-htcvision.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/** @file sysfs-led-htcvision.c
*
* mce-plugin-libhybris - Libhybris plugin for Mode Control Entity
* <p>
* Copyright (C) 2013-2017 Jolla Ltd.
* <p>
* @author Simo Piiroinen <[email protected]>
*
* mce-plugin-libhybris is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License.
*
* mce-plugin-libhybris is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with mce-plugin-libhybris; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* ========================================================================= *
* Amber/green led control: Htcvision backend
*
* Two channels (amber and green), both of which:
* - must have 'brightness' control file
* - must have 'max_brightness' control file
* - must have 'blink' enable/disable control file
*
* Assumptions built into code:
* - while there are two channels, kernel and/or hw only allows one of them
* to be active -> Map rgb form request from mce to amber/green and try
* to minimize color error.
* ========================================================================= */
#include "sysfs-led-htcvision.h"
#include "sysfs-led-util.h"
#include "sysfs-val.h"
#include "plugin-config.h"
#include <stdio.h>
#include <string.h>
#include <glib.h>
/* ========================================================================= *
* PROTOTYPES
* ========================================================================= */
typedef struct
{
const char *max_brightness;
const char *brightness;
const char *blink;
} led_paths_htcvision_t;
typedef struct
{
sysfsval_t * cached_max_brightness;
sysfsval_t * cached_brightness;
sysfsval_t * cached_blink;
} led_channel_htcvision_t;
/* ------------------------------------------------------------------------- *
* ONE_CHANNEL
* ------------------------------------------------------------------------- */
static void led_channel_htcvision_init (led_channel_htcvision_t *self);
static void led_channel_htcvision_close (led_channel_htcvision_t *self);
static bool led_channel_htcvision_probe (led_channel_htcvision_t *self, const led_paths_htcvision_t *path);
static void led_channel_htcvision_set_value (const led_channel_htcvision_t *self, int value);
static void led_channel_htcvision_set_blink (const led_channel_htcvision_t *self, int blink);
/* ------------------------------------------------------------------------- *
* ALL_CHANNELS
* ------------------------------------------------------------------------- */
static void led_control_htcvision_map_color (int r, int g, int b, int *amber, int *green);
static void led_control_htcvision_blink_cb (void *data, int on_ms, int off_ms);
static void led_control_htcvision_value_cb (void *data, int r, int g, int b);
static void led_control_htcvision_close_cb (void *data);
bool led_control_htcvision_probe (led_control_t *self);
/* ========================================================================= *
* ONE_CHANNEL
* ========================================================================= */
static void
led_channel_htcvision_init(led_channel_htcvision_t *self)
{
self->cached_max_brightness = sysfsval_create();
self->cached_brightness = sysfsval_create();
self->cached_blink = sysfsval_create();
}
static void
led_channel_htcvision_close(led_channel_htcvision_t *self)
{
sysfsval_delete(self->cached_max_brightness),
self->cached_max_brightness = 0;
sysfsval_delete(self->cached_brightness),
self->cached_brightness = 0;
sysfsval_delete(self->cached_blink),
self->cached_blink = 0;
}
static bool
led_channel_htcvision_probe(led_channel_htcvision_t *self,
const led_paths_htcvision_t *path)
{
bool res = false;
if( !sysfsval_open_rw(self->cached_blink, path->blink) )
goto cleanup;
if( !sysfsval_open_rw(self->cached_brightness, path->brightness) )
goto cleanup;
if( sysfsval_open_ro(self->cached_max_brightness, path->max_brightness) )
sysfsval_refresh(self->cached_max_brightness);
if( sysfsval_get(self->cached_max_brightness) <= 0 )
sysfsval_assume(self->cached_max_brightness, 1);
res = true;
cleanup:
/* Always close the max_brightness file */
sysfsval_close(self->cached_max_brightness);
/* On failure close the other files too */
if( !res ) {
sysfsval_close(self->cached_brightness);
sysfsval_close(self->cached_blink);
}
return res;
}
static void
led_channel_htcvision_set_value(const led_channel_htcvision_t *self,
int value)
{
value = led_util_scale_value(value,
sysfsval_get(self->cached_max_brightness));
sysfsval_set(self->cached_brightness, value);
}
static void
led_channel_htcvision_set_blink(const led_channel_htcvision_t *self, int blink)
{
sysfsval_set(self->cached_blink, blink ? 0 : 1);
}
/* ========================================================================= *
* ALL_CHANNELS
* ========================================================================= */
#define HTCVISION_CHANNELS 2
static void
led_control_htcvision_map_color(int r, int g, int b,
int *amber, int *green)
{
/* Only "amber" or "green" color can be used.
*
* Assume amber = r:ff g:7f b:00
* green = r:00 g:ff b:00
*
* Try to choose the one with smaller delta to the
* requested rgb color by using the 'r':'g' ratio.
*
* The 'b' is used for intensity preservation only.
*/
if( r * 3 < g * 4)
{
*amber = 0;
*green = (g > b) ? g : b;
}
else
{
*amber = (r > b) ? r : b;
*green = 0;
}
}
static void
led_control_htcvision_blink_cb(void *data, int on_ms, int off_ms)
{
const led_channel_htcvision_t *channel = data;
int blink = (on_ms && off_ms);
led_channel_htcvision_set_blink(channel + 0, blink);
led_channel_htcvision_set_blink(channel + 1, blink);
}
static void
led_control_htcvision_value_cb(void *data, int r, int g, int b)
{
const led_channel_htcvision_t *channel = data;
int amber = 0;
int green = 0;
led_control_htcvision_map_color(r, g, b, &amber, &green);
led_channel_htcvision_set_value(channel + 0, amber);
led_channel_htcvision_set_value(channel + 1, green);
}
static void
led_control_htcvision_close_cb(void *data)
{
led_channel_htcvision_t *channel = data;
led_channel_htcvision_close(channel + 0);
led_channel_htcvision_close(channel + 1);
}
static bool
led_control_htcvision_static_probe(led_channel_htcvision_t *channel)
{
/** Sysfs control paths for Amber/Green leds */
static const led_paths_htcvision_t paths[][3] =
{
// htc vision, htc ace
{
{
.max_brightness = "/sys/class/leds/amber/max_brightness",
.brightness = "/sys/class/leds/amber/brightness",
.blink = "/sys/class/leds/amber/blink",
},
{
.max_brightness = "/sys/class/leds/green/max_brightness",
.brightness = "/sys/class/leds/green/brightness",
.blink = "/sys/class/leds/green/blink",
},
},
};
bool ack = false;
for( size_t i = 0; i < G_N_ELEMENTS(paths); ++i ) {
if( led_channel_htcvision_probe(&channel[0], &paths[i][0]) &&
led_channel_htcvision_probe(&channel[1], &paths[i][1]) ) {
ack = true;
break;
}
}
return ack;
}
static bool
led_control_htcvision_dynamic_probe(led_channel_htcvision_t *channel)
{
/* See inifiles/60-htcvision.ini for example */
static const objconf_t htcvision_conf[] =
{
OBJCONF_FILE(led_paths_htcvision_t, brightness, Brightness),
OBJCONF_FILE(led_paths_htcvision_t, max_brightness, MaxBrightness),
OBJCONF_FILE(led_paths_htcvision_t, blink, Blink),
OBJCONF_STOP
};
static const char * const pfix[HTCVISION_CHANNELS] =
{
"Amber", "Green"
};
bool ack = false;
led_paths_htcvision_t paths[HTCVISION_CHANNELS];
memset(paths, 0, sizeof paths);
for( size_t i = 0; i < HTCVISION_CHANNELS; ++i )
objconf_init(htcvision_conf, &paths[i]);
for( size_t i = 0; i < HTCVISION_CHANNELS; ++i )
{
if( !objconf_parse(htcvision_conf, &paths[i], pfix[i]) )
goto cleanup;
if( !led_channel_htcvision_probe(channel+i, &paths[i]) )
goto cleanup;
}
ack = true;
cleanup:
for( size_t i = 0; i < HTCVISION_CHANNELS; ++i )
objconf_quit(htcvision_conf, &paths[i]);
return ack;
}
bool
led_control_htcvision_probe(led_control_t *self)
{
static led_channel_htcvision_t channel[HTCVISION_CHANNELS];
bool ack = false;
led_channel_htcvision_init(channel+0);
led_channel_htcvision_init(channel+1);
self->name = "htcvision";
self->data = channel;
self->enable = 0;
self->blink = led_control_htcvision_blink_cb;
self->value = led_control_htcvision_value_cb;
self->close = led_control_htcvision_close_cb;
/* TODO: check if breathing can be left enabled */
self->can_breathe = true;
if( self->use_config )
ack = led_control_htcvision_dynamic_probe(channel);
if( !ack )
ack = led_control_htcvision_static_probe(channel);
if( !ack )
led_control_close(self);
return ack;
}