-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lights.cpp
279 lines (236 loc) · 8.2 KB
/
Lights.cpp
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
/*
* Copyright (C) 2021, The Linux Foundation. All rights reserved.
* Not a Contribution.
*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Changes from Qualcomm Innovation Center are provided under the following license:
*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted (subject to the limitations in the disclaimer
* below) provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* * Neither the name of Qualcomm Innovation Center, Inc.nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT
* RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS
* PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define LOG_TAG "vendor.qti.lights"
#include "Lights.h"
#include <log/log.h>
#include <android-base/logging.h>
#include <errno.h>
#include <fcntl.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
namespace {
enum rgb_led {
LED_RED,
LED_GREEN,
LED_BLUE,
};
static const char *rgb_led_name[] = {
[LED_RED] = "red",
[LED_GREEN] = "green",
[LED_BLUE] = "blue",
};
static int write_str_to_file(const char *path, char const *str) {
int fd;
fd = open(path, O_WRONLY);
if (fd >= 0) {
ssize_t amt = write(fd, str, strlen(str));
close(fd);
if (amt == -1) {
ALOGE("Write to %s failed: %d", path, -errno);
return -errno;
}
return 0;
}
ALOGE("Could not open %s: %d", path, -errno);
return -errno;
}
static int write_int_to_file(const char *path, int value) {
int fd;
fd = open(path, O_WRONLY);
if (fd >= 0) {
char buf[16];
size_t bytes = snprintf(buf, sizeof(buf), "%d\n", value);
ssize_t amt = write(fd, buf, bytes);
close(fd);
if (amt == -1) {
ALOGE("Write to %s failed: %d", path, -errno);
return -errno;
}
return 0;
}
ALOGE("Could not open %s: %d", path, -errno);
return -errno;
}
static int setLedDelayParams(enum rgb_led led, int flashOnMs, int flashOffMs) {
char file[48];
int rc;
snprintf(file, sizeof(file), "/sys/class/leds/%s/delay_on", rgb_led_name[led]);
rc = write_int_to_file(file, flashOnMs);
if (rc < 0)
goto out;
snprintf(file, sizeof(file), "/sys/class/leds/%s/delay_off", rgb_led_name[led]);
rc = write_int_to_file(file, flashOffMs);
if (rc < 0)
goto out;
return 0;
out:
ALOGE("%s does not support timer trigger", rgb_led_name[led]);
return rc;
}
static int setLedBrightness(enum rgb_led led, int brightness) {
int rc;
char file[48];
snprintf(file, sizeof(file), "/sys/class/leds/%s/brightness", rgb_led_name[led]);
rc = write_int_to_file(file, brightness);
if (rc < 0)
return rc;
/* Reset trigger to timer if LED's brightness is cleared */
if (brightness == 0) {
snprintf(file, sizeof(file), "/sys/class/leds/%s/trigger", rgb_led_name[led]);
rc = write_str_to_file(file, "timer");
if (rc < 0)
ALOGE("Couldn't reset timer trigger on %s led: %d", rgb_led_name[led], rc);
}
return rc;
}
} // namespace anonymous
namespace aidl {
namespace android {
namespace hardware {
namespace light {
const static std::vector<LightType> kLogicalLights = {
LightType::BACKLIGHT,
LightType::KEYBOARD,
LightType::BUTTONS,
LightType::BATTERY,
LightType::NOTIFICATIONS,
LightType::ATTENTION,
LightType::BLUETOOTH,
LightType::WIFI,
};
Lights::Lights() {
for (auto i = kLogicalLights.begin(); i != kLogicalLights.end(); i++) {
HwLight hwLight{};
hwLight.id = (int)(*i);
hwLight.type = *i;
hwLight.ordinal = 0;
mAvailableLights.emplace_back(hwLight);
}
}
int Lights::setRgbLedsParams(const HwLightState& state) {
int rc = 0;
int const colorRGB = state.color;
int const red = (colorRGB >> 16) & 0xFF;
int const green = (colorRGB >> 8) & 0xFF;
int const blue = colorRGB & 0xFF;
switch (state.flashMode) {
case FlashMode::TIMED:
if (!!red)
rc = setLedDelayParams(LED_RED, state.flashOnMs, state.flashOffMs);
if (!!green)
rc |= setLedDelayParams(LED_GREEN, state.flashOnMs, state.flashOffMs);
if (!!blue)
rc |= setLedDelayParams(LED_BLUE, state.flashOnMs, state.flashOffMs);
/* Fallback to constant on if blinking is not supported */
if (rc == 0)
break;
case FlashMode::NONE:
FALLTHROUGH_INTENDED;
default:
rc = setLedBrightness(LED_RED, red);
rc |= setLedBrightness(LED_GREEN, green);
rc |= setLedBrightness(LED_BLUE, blue);
break;
}
ALOGD("colorRGB = %08X, onMs = %d, offMs = %d, rc: %d", colorRGB, state.flashOnMs, state.flashOffMs, rc);
return rc;
}
ndk::ScopedAStatus Lights::setLightState(int id, const HwLightState& state) {
/* For QMAA compliance, return OK even if leds device doesn't exist */
if (!mLedDetected) {
ALOGE("Tri Leds device doesn't exist");
return ndk::ScopedAStatus::ok();
}
if (id < 0 || id >= mAvailableLights.size()) {
ALOGE("Invalid Light id : %d", id);
return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION);
}
HwLight const& light = mAvailableLights[id];
// Don't set LEDs for other notifications if battery notification is set
if (light.type != LightType::BATTERY && mBatteryNotification)
return ndk::ScopedAStatus::ok();
int ret = setRgbLedsParams(state);
if (ret != 0)
return ndk::ScopedAStatus::fromServiceSpecificError(ret);
if (light.type == LightType::BATTERY)
mBatteryNotification = (state.color & 0x00FFFFFF);
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus Lights::getLights(std::vector<HwLight>* lights) {
char file[48];
int fd;
for (auto i = mAvailableLights.begin(); i != mAvailableLights.end(); i++) {
lights->push_back(*i);
}
mLedDetected = false;
snprintf(file, sizeof(file), "/sys/class/leds/%s/brightness", rgb_led_name[LED_RED]);
fd = open(file, O_RDONLY);
if (fd >= 0) {
mLedDetected = true;
close(fd);
} else {
ALOGE("Couldn't open %s", file);
}
return ndk::ScopedAStatus::ok();
}
} // namespace light
} // namespace hardware
} // namespace android
} // namespace aidl