From cd039f42550bc16289c9ccb80cefdec84408d8a6 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 23 Dec 2013 22:25:33 +0100 Subject: Aries Sensors Signed-off-by: Paul Kocialkowski --- sensors/aries_sensors.c | 286 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 286 insertions(+) create mode 100644 sensors/aries_sensors.c (limited to 'sensors/aries_sensors.c') diff --git a/sensors/aries_sensors.c b/sensors/aries_sensors.c new file mode 100644 index 0000000..ef28b5f --- /dev/null +++ b/sensors/aries_sensors.c @@ -0,0 +1,286 @@ +/* + * Copyright (C) 2013 Paul Kocialkowski + * + * 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 . + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define LOG_TAG "aries_sensors" +#include + +#include "aries_sensors.h" + +/* + * Sensors list + */ + +struct sensor_t aries_sensors[] = { + { "SMB380 Acceleration Sensor", "Bosch", 1, SENSOR_TYPE_ACCELEROMETER, + SENSOR_TYPE_ACCELEROMETER, 2 * GRAVITY_EARTH, GRAVITY_EARTH / 256.0f, 0.20f, 10000, {}, }, + { "YAS529 Magnetic Sensor", "Yamaha", 1, SENSOR_TYPE_MAGNETIC_FIELD, + SENSOR_TYPE_MAGNETIC_FIELD, 2000.0f, 1.0f / 1000, 6.8f, 10000, {}, }, + { "YAS Orientation Sensor", "Yamaha", 1, SENSOR_TYPE_ORIENTATION, + SENSOR_TYPE_ORIENTATION, 360.0f, 0.1f, 0.0f, 10000, {}, }, + { "GP2A Light Sensor", "Sharp", 1, SENSOR_TYPE_LIGHT, + SENSOR_TYPE_LIGHT, 10240.0f, 1.0f, 0.75f, 0, {}, }, + { "GP2A Proximity Sensor", "Sharp", 1, SENSOR_TYPE_PROXIMITY, + SENSOR_TYPE_PROXIMITY, 5.0f, 5.0f, 0.75f, 0, {}, }, +}; + +int aries_sensors_count = sizeof(aries_sensors) / sizeof(struct sensor_t); + +struct aries_sensors_handlers *aries_sensors_handlers[] = { + &smb380, + &yas529, + &yas_orientation, + &gp2a_light, + &gp2a_proximity, +}; + +int aries_sensors_handlers_count = sizeof(aries_sensors_handlers) / + sizeof(struct aries_sensors_handlers *); + +/* + * Aries Sensors + */ + +int aries_sensors_activate(struct sensors_poll_device_t *dev, int handle, + int enabled) +{ + struct aries_sensors_device *device; + int i; + + ALOGD("%s(%p, %d, %d)", __func__, dev, handle, enabled); + + if (dev == NULL) + return -EINVAL; + + device = (struct aries_sensors_device *) dev; + + if (device->handlers == NULL || device->handlers_count <= 0) + return -EINVAL; + + for (i = 0; i < device->handlers_count; i++) { + if (device->handlers[i] == NULL) + continue; + + if (device->handlers[i]->handle == handle) { + if (enabled && device->handlers[i]->activate != NULL) { + device->handlers[i]->needed |= ARIES_SENSORS_NEEDED_API; + if (device->handlers[i]->needed == ARIES_SENSORS_NEEDED_API) + return device->handlers[i]->activate(device->handlers[i]); + else + return 0; + } else if (!enabled && device->handlers[i]->deactivate != NULL) { + device->handlers[i]->needed &= ~ARIES_SENSORS_NEEDED_API; + if (device->handlers[i]->needed == 0) + return device->handlers[i]->deactivate(device->handlers[i]); + else + return 0; + } + } + } + + return -1; +} + +int aries_sensors_set_delay(struct sensors_poll_device_t *dev, int handle, + int64_t ns) +{ + struct aries_sensors_device *device; + int i; + + ALOGD("%s(%p, %d, %ld)", __func__, dev, handle, (long int) ns); + + if (dev == NULL) + return -EINVAL; + + device = (struct aries_sensors_device *) dev; + + if (device->handlers == NULL || device->handlers_count <= 0) + return -EINVAL; + + for (i = 0; i < device->handlers_count; i++) { + if (device->handlers[i] == NULL) + continue; + + if (device->handlers[i]->handle == handle && device->handlers[i]->set_delay != NULL) + return device->handlers[i]->set_delay(device->handlers[i], (long int) ns); + } + + return 0; +} + +int aries_sensors_poll(struct sensors_poll_device_t *dev, + struct sensors_event_t* data, int count) +{ + struct aries_sensors_device *device; + int i, j; + int c, n; + int poll_rc, rc; + +// ALOGD("%s(%p, %p, %d)", __func__, dev, data, count); + + if (dev == NULL) + return -EINVAL; + + device = (struct aries_sensors_device *) dev; + + if (device->handlers == NULL || device->handlers_count <= 0 || + device->poll_fds == NULL || device->poll_fds_count <= 0) + return -EINVAL; + + n = 0; + + do { + poll_rc = poll(device->poll_fds, device->poll_fds_count, n > 0 ? 0 : -1); + if (poll_rc < 0) + return -1; + + for (i = 0; i < device->poll_fds_count; i++) { + if (!(device->poll_fds[i].revents & POLLIN)) + continue; + + for (j = 0; j < device->handlers_count; j++) { + if (device->handlers[j] == NULL || device->handlers[j]->poll_fd != device->poll_fds[i].fd || device->handlers[j]->get_data == NULL) + continue; + + rc = device->handlers[j]->get_data(device->handlers[j], &data[n]); + if (rc < 0) { + device->poll_fds[i].revents = 0; + poll_rc = -1; + } else { + n++; + count--; + } + } + } + } while ((poll_rc > 0 || n < 1) && count > 0); + + return n; +} + +/* + * Interface + */ + +int aries_sensors_close(hw_device_t *device) +{ + struct aries_sensors_device *aries_sensors_device; + int i; + + ALOGD("%s(%p)", __func__, device); + + if (device == NULL) + return -EINVAL; + + aries_sensors_device = (struct aries_sensors_device *) device; + + if (aries_sensors_device->poll_fds != NULL) + free(aries_sensors_device->poll_fds); + + for (i = 0; i < aries_sensors_device->handlers_count; i++) { + if (aries_sensors_device->handlers[i] == NULL || aries_sensors_device->handlers[i]->deinit == NULL) + continue; + + aries_sensors_device->handlers[i]->deinit(aries_sensors_device->handlers[i]); + } + + free(device); + + return 0; +} + +int aries_sensors_open(const struct hw_module_t* module, const char *id, + struct hw_device_t** device) +{ + struct aries_sensors_device *aries_sensors_device; + int p, i; + + ALOGD("%s(%p, %s, %p)", __func__, module, id, device); + + if (module == NULL || device == NULL) + return -EINVAL; + + aries_sensors_device = (struct aries_sensors_device *) + calloc(1, sizeof(struct aries_sensors_device)); + aries_sensors_device->device.common.tag = HARDWARE_DEVICE_TAG; + aries_sensors_device->device.common.version = 0; + aries_sensors_device->device.common.module = (struct hw_module_t *) module; + aries_sensors_device->device.common.close = aries_sensors_close; + aries_sensors_device->device.activate = aries_sensors_activate; + aries_sensors_device->device.setDelay = aries_sensors_set_delay; + aries_sensors_device->device.poll = aries_sensors_poll; + aries_sensors_device->handlers = aries_sensors_handlers; + aries_sensors_device->handlers_count = aries_sensors_handlers_count; + aries_sensors_device->poll_fds = (struct pollfd *) + calloc(1, aries_sensors_handlers_count * sizeof(struct pollfd)); + + p = 0; + for (i = 0; i < aries_sensors_handlers_count; i++) { + if (aries_sensors_handlers[i] == NULL || aries_sensors_handlers[i]->init == NULL) + continue; + + aries_sensors_handlers[i]->init(aries_sensors_handlers[i], aries_sensors_device); + if (aries_sensors_handlers[i]->poll_fd >= 0) { + aries_sensors_device->poll_fds[p].fd = aries_sensors_handlers[i]->poll_fd; + aries_sensors_device->poll_fds[p].events = POLLIN; + p++; + } + } + + aries_sensors_device->poll_fds_count = p; + + *device = &(aries_sensors_device->device.common); + + return 0; +} + +int aries_sensors_get_sensors_list(struct sensors_module_t* module, + const struct sensor_t **sensors_p) +{ + ALOGD("%s(%p, %p)", __func__, module, sensors_p); + + if (sensors_p == NULL) + return -EINVAL; + + *sensors_p = aries_sensors; + return aries_sensors_count; +} + +struct hw_module_methods_t aries_sensors_module_methods = { + .open = aries_sensors_open, +}; + +struct sensors_module_t HAL_MODULE_INFO_SYM = { + .common = { + .tag = HARDWARE_MODULE_TAG, + .version_major = 1, + .version_minor = 0, + .id = SENSORS_HARDWARE_MODULE_ID, + .name = "Aries Sensors", + .author = "Paul Kocialkowski", + .methods = &aries_sensors_module_methods, + }, + .get_sensors_list = aries_sensors_get_sensors_list, +}; -- cgit v1.1