aboutsummaryrefslogtreecommitdiffstats
path: root/libsensors/light.c
blob: f84691f12f9085edab13b6d5c84cda1313108ec7 (plain)
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
/*
 * Copyright (C) 2013 Paul Kocialkowski <contact@paulk.fr>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdint.h>
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <sys/types.h>
#include <linux/ioctl.h>
#include <linux/input.h>

#include <hardware/sensors.h>
#include <hardware/hardware.h>

#define LOG_TAG "piranha_sensors"
#include <utils/Log.h>

#include "piranha_sensors.h"

enum {
	SENSOR_TYPE_BH1721 = 1,
	SENSOR_TYPE_AL3201,
	SENSOR_TYPE_GP2A,
};

struct light_data {
	char path_enable[PATH_MAX];
	char path_delay[PATH_MAX];
	int sensor_type;
};

int light_init(struct piranha_sensors_handlers *handlers,
	struct piranha_sensors_device *device)
{
	struct light_data *data = NULL;
	char path[PATH_MAX] = { 0 };
	int input_fd = -1;
	int rc;

	ALOGD("%s(%p, %p)", __func__, handlers, device);

	if (handlers == NULL)
		return -EINVAL;

	data = (struct light_data *) calloc(1, sizeof(struct light_data));

	input_fd = input_open("light_sensor");
	if (input_fd < 0) {
		ALOGE("%s: Unable to open input", __func__);
		goto error;
	}

	rc = sysfs_path_prefix("light_sensor", (char *) &path);
	if (rc < 0 || path[0] == '\0') {
		ALOGE("%s: Unable to open sysfs", __func__);
		goto error;
	}

	snprintf(data->path_enable, PATH_MAX, "%s/enable", path);
	snprintf(data->path_delay, PATH_MAX, "%s/poll_delay", path);

	handlers->poll_fd = input_fd;
	handlers->data = (void *) data;

	char device_variant[16];
	FILE *f = fopen(DEVICE_VARIANT_SYSFS, "r");
	if (!f || fgets(device_variant, 16, f) == NULL) {
		ALOGE("Failed to read " DEVICE_VARIANT_SYSFS ", assuming P51xx\n");
		strcpy(device_variant, "espresso10");
	}
	if (f)
		fclose(f);

	ALOGD("Device: %s", device_variant);

	if (strcmp(device_variant, "espresso10") == 0) {
		/* Device is P51xx */
		data->sensor_type = SENSOR_TYPE_BH1721;
	} else if (strcmp(device_variant, "espressowifi") == 0) {
		/* Device is P3110 */
		data->sensor_type = SENSOR_TYPE_AL3201;
	} else {
		/* Device is P3100 */
		data->sensor_type = SENSOR_TYPE_GP2A;
	}

	return 0;

error:
	if (data != NULL)
		free(data);

	if (input_fd >= 0)
		close(input_fd);

	handlers->poll_fd = -1;
	handlers->data = NULL;

	return -1;
}

int light_deinit(struct piranha_sensors_handlers *handlers)
{
	ALOGD("%s(%p)", __func__, handlers);

	if (handlers == NULL)
		return -EINVAL;

	if (handlers->poll_fd >= 0)
		close(handlers->poll_fd);
	handlers->poll_fd = -1;

	if (handlers->data != NULL)
		free(handlers->data);
	handlers->data = NULL;

	return 0;
}

int light_activate(struct piranha_sensors_handlers *handlers)
{
	struct light_data *data;
	int rc;

	ALOGD("%s(%p)", __func__, handlers);

	if (handlers == NULL || handlers->data == NULL)
		return -EINVAL;

	data = (struct light_data *) handlers->data;

	rc = sysfs_value_write(data->path_enable, 1);
	if (rc < 0) {
		ALOGE("%s: Unable to write sysfs value", __func__);
		return -1;
	}

	handlers->activated = 1;

	return 0;
}

int light_deactivate(struct piranha_sensors_handlers *handlers)
{
	struct light_data *data;
	int rc;

	ALOGD("%s(%p)", __func__, handlers);

	if (handlers == NULL || handlers->data == NULL)
		return -EINVAL;

	data = (struct light_data *) handlers->data;

	rc = sysfs_value_write(data->path_enable, 0);
	if (rc < 0) {
		ALOGE("%s: Unable to write sysfs value", __func__);
		return -1;
	}

	handlers->activated = 1;

	return 0;
}

int light_set_delay(struct piranha_sensors_handlers *handlers, int64_t delay)
{
	struct light_data *data;
	int rc;

	ALOGD("%s(%p, %" PRId64 ")", __func__, handlers, delay);

	if (handlers == NULL || handlers->data == NULL)
		return -EINVAL;

	data = (struct light_data *) handlers->data;

	rc = sysfs_value_write(data->path_delay, delay);
	if (rc < 0) {
		ALOGE("%s: Unable to write sysfs value", __func__);
		return -1;
	}

	return 0;
}

float light_convert(int value, int sensor_type)
{
	// Converting the AL3201 raw value to lux:
	// I = 10 * log(light) uA
	// U = raw * 3300 / 4095 (max ADC value is 3.3V for 4095 LSB)
	// R = 47kOhm
	// => light = 10 ^ (I / 10) = 10 ^ (U / R / 10)
	// => light = 10 ^ (raw * 330 / 4095 / 47)
	// Only 1/4 of light reaches the sensor:
	// => light = 4 * (10 ^ (raw * 330 / 4095 / 47))

	// Converting the GP2A raw value to lux:
	// I = 10 * log(Ev) uA
	// R = 24kOhm
	// Max adc value 1023 = 1.25V
	// 1/4 of light reaches sensor

	switch (sensor_type) {
		case SENSOR_TYPE_AL3201:
			return powf(10, value * (330.0f / 4095.0f / 47.0f)) * 4;
		case SENSOR_TYPE_BH1721:
			return value * 0.712f;
		case SENSOR_TYPE_GP2A:
			return powf(10, value * (125.0f / 1023.0f / 24.0f)) * 4;
		default:
			ALOGE("%s: Unknown sensor type", __func__);
	}

	return 0;
}

int light_get_data(struct piranha_sensors_handlers *handlers,
	struct sensors_event_t *event)
{
	struct light_data *data = (struct light_data *) handlers->data;
	struct input_event input_event;
	int input_fd;
	int rc;

//	ALOGD("%s(%p, %p)", __func__, handlers, event);

	if (handlers == NULL || event == NULL)
		return -EINVAL;

	input_fd = handlers->poll_fd;
	if (input_fd < 0)
		return -EINVAL;

	memset(event, 0, sizeof(struct sensors_event_t));
	event->version = sizeof(struct sensors_event_t);
	event->sensor = handlers->handle;
	event->type = handlers->handle;

	do {
		rc = read(input_fd, &input_event, sizeof(input_event));
		if (rc < (int) sizeof(input_event))
			break;

		if (input_event.type == EV_REL) {
			if (input_event.code == REL_MISC)
				event->light = light_convert(input_event.value, data->sensor_type);
		} else if (input_event.type == EV_SYN) {
			if (input_event.code == SYN_REPORT)
				event->timestamp = input_timestamp(&input_event);
		}
	} while (input_event.type != EV_SYN);

	return 0;
}

struct piranha_sensors_handlers light = {
	.name = "Light",
	.handle = SENSOR_TYPE_LIGHT,
	.init = light_init,
	.deinit = light_deinit,
	.activate = light_activate,
	.deactivate = light_deactivate,
	.set_delay = light_set_delay,
	.get_data = light_get_data,
	.activated = 0,
	.needed = 0,
	.poll_fd = -1,
	.data = NULL,
};