/* * Copyright (C) 2012-2014 Motorola, Inc. * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Adds ability to program periodic interrupts from user space that * can wake the phone out of low power modes. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define m4ped_err(format, args...) KDEBUG(M4SH_ERROR, format, ## args) #define M4PED_IRQ_ENABLED_BIT 0 struct m4ped_driver_data { struct platform_device *pdev; struct m4sensorhub_data *m4; struct mutex mutex; /* controls driver entry points */ struct m4sensorhub_pedometer_iio_data iiodat; int16_t samplerate; uint16_t status; }; static void m4ped_isr(enum m4sensorhub_irqs int_event, void *handle) { int err = 0; struct iio_dev *iio = handle; struct m4ped_driver_data *dd = iio_priv(iio); int size = 0; mutex_lock(&(dd->mutex)); size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_PEDOMETER_ACTIVITY); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_PEDOMETER_ACTIVITY, (char *)&(dd->iiodat.ped_activity)); if (err < 0) { m4ped_err("%s: Failed to read ped_activity data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "ped_activity"); err = -EBADE; goto m4ped_isr_fail; } size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_PEDOMETER_TOTATDISTANCE); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_PEDOMETER_TOTATDISTANCE, (char *)&(dd->iiodat.total_distance)); if (err < 0) { m4ped_err("%s: Failed to read total_distance data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "total_distance"); err = -EBADE; goto m4ped_isr_fail; } size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_PEDOMETER_TOTALSTEPS); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_PEDOMETER_TOTALSTEPS, (char *)&(dd->iiodat.total_steps)); if (err < 0) { m4ped_err("%s: Failed to read total_steps data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "total_steps"); err = -EBADE; goto m4ped_isr_fail; } size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_PEDOMETER_CURRENTSPEED); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_PEDOMETER_CURRENTSPEED, (char *)&(dd->iiodat.current_speed)); if (err < 0) { m4ped_err("%s: Failed to read current_speed data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "current_speed"); err = -EBADE; goto m4ped_isr_fail; } size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_PEDOMETER_FLOORSCLIMBED); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_PEDOMETER_FLOORSCLIMBED, (char *)&(dd->iiodat.floors_climbed)); if (err < 0) { m4ped_err("%s: Failed to read floors_climbed data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "floors_climbed"); err = -EBADE; goto m4ped_isr_fail; } size = m4sensorhub_reg_getsize(dd->m4, M4SH_REG_METS_CALORIES); err = m4sensorhub_reg_read(dd->m4, M4SH_REG_METS_CALORIES, (char *)&(dd->iiodat.calories)); if (err < 0) { m4ped_err("%s: Failed to read calories data.\n", __func__); goto m4ped_isr_fail; } else if (err != size) { m4ped_err("%s: Read %d bytes instead of %d for %s.\n", __func__, err, size, "calories"); err = -EBADE; goto m4ped_isr_fail; } dd->iiodat.timestamp = iio_get_time_ns(); iio_push_to_buffers(iio, (unsigned char *)&(dd->iiodat)); m4ped_isr_fail: if (err < 0) m4ped_err("%s: Failed with error code %d.\n", __func__, err); mutex_unlock(&(dd->mutex)); return; } static int m4ped_set_samplerate(struct iio_dev *iio, int16_t rate) { int err = 0; struct m4ped_driver_data *dd = iio_priv(iio); /* * Currently, there is no concept of setting a sample rate for this * sensor, so this function only enables/disables interrupt reporting. */ dd->samplerate = rate; if (rate >= 0) { /* Enable the IRQ if necessary */ if (!(dd->status & (1 << M4PED_IRQ_ENABLED_BIT))) { err = m4sensorhub_irq_enable(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY); if (err < 0) { m4ped_err("%s: Failed to enable ped irq.\n", __func__); goto m4ped_set_samplerate_fail; } err = m4sensorhub_irq_enable(dd->m4, M4SH_IRQ_ACTIVITY_CHANGE); if (err < 0) { m4ped_err("%s: Failed to enable act irq.\n", __func__); goto m4ped_set_samplerate_fail; } dd->status = dd->status | (1 << M4PED_IRQ_ENABLED_BIT); } } else { /* Disable the IRQ if necessary */ if (dd->status & (1 << M4PED_IRQ_ENABLED_BIT)) { err = m4sensorhub_irq_disable(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY); if (err < 0) { m4ped_err("%s: Failed to disable ped irq.\n", __func__); goto m4ped_set_samplerate_fail; } err = m4sensorhub_irq_disable(dd->m4, M4SH_IRQ_ACTIVITY_CHANGE); if (err < 0) { m4ped_err("%s: Failed to disable act irq.\n", __func__); goto m4ped_set_samplerate_fail; } dd->status = dd->status & ~(1 << M4PED_IRQ_ENABLED_BIT); } } m4ped_set_samplerate_fail: return err; } static ssize_t m4ped_setrate_show(struct device *dev, struct device_attribute *attr, char *buf) { struct platform_device *pdev = to_platform_device(dev); struct iio_dev *iio = platform_get_drvdata(pdev); struct m4ped_driver_data *dd = iio_priv(iio); ssize_t size = 0; mutex_lock(&(dd->mutex)); size = snprintf(buf, PAGE_SIZE, "Current rate: %hd\n", dd->samplerate); mutex_unlock(&(dd->mutex)); return size; } static ssize_t m4ped_setrate_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t size) { int err = 0; struct platform_device *pdev = to_platform_device(dev); struct iio_dev *iio = platform_get_drvdata(pdev); struct m4ped_driver_data *dd = iio_priv(iio); int value = 0; mutex_lock(&(dd->mutex)); err = kstrtoint(buf, 10, &value); if (err < 0) { m4ped_err("%s: Failed to convert value.\n", __func__); goto m4ped_enable_store_exit; } if ((value < -1) || (value > 32767)) { m4ped_err("%s: Invalid samplerate %d passed.\n", __func__, value); err = -EINVAL; goto m4ped_enable_store_exit; } err = m4ped_set_samplerate(iio, value); if (err < 0) { m4ped_err("%s: Failed to set sample rate.\n", __func__); goto m4ped_enable_store_exit; } m4ped_enable_store_exit: if (err < 0) { m4ped_err("%s: Failed with error code %d.\n", __func__, err); size = err; } mutex_unlock(&(dd->mutex)); return size; } static IIO_DEVICE_ATTR(setrate, S_IRUSR | S_IWUSR, m4ped_setrate_show, m4ped_setrate_store, 0); static ssize_t m4ped_iiodata_show(struct device *dev, struct device_attribute *attr, char *buf) { struct platform_device *pdev = to_platform_device(dev); struct iio_dev *iio = platform_get_drvdata(pdev); struct m4ped_driver_data *dd = iio_priv(iio); ssize_t size = 0; mutex_lock(&(dd->mutex)); size = snprintf(buf, PAGE_SIZE, "%s%hhu\n%s%u\n%s%hu\n%s%u\n%s%hu\n%s%u\n", "ped_activity: ", dd->iiodat.ped_activity, "total_distance: ", dd->iiodat.total_distance, "total_steps: ", dd->iiodat.total_steps, "current_speed: ", dd->iiodat.current_speed, "floors_climbed: ", dd->iiodat.floors_climbed, "calories: ", dd->iiodat.calories); mutex_unlock(&(dd->mutex)); return size; } static IIO_DEVICE_ATTR(iiodata, S_IRUGO, m4ped_iiodata_show, NULL, 0); static struct attribute *m4ped_iio_attributes[] = { &iio_dev_attr_setrate.dev_attr.attr, &iio_dev_attr_iiodata.dev_attr.attr, NULL, }; static const struct attribute_group m4ped_iio_attr_group = { .attrs = m4ped_iio_attributes, }; static const struct iio_info m4ped_iio_info = { .driver_module = THIS_MODULE, .attrs = &m4ped_iio_attr_group, }; static const struct iio_chan_spec m4ped_iio_channels[] = { { .type = IIO_PEDOMETER, .indexed = 1, .channel = 0, .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), .scan_index = 0, .scan_type = { .sign = 'u', .realbits = M4PED_DATA_STRUCT_SIZE_BITS, .storagebits = M4PED_DATA_STRUCT_SIZE_BITS, .shift = 0, }, }, }; static void m4ped_remove_iiodev(struct iio_dev *iio) { struct m4ped_driver_data *dd = iio_priv(iio); /* Remember, only call when dd->mutex is locked */ iio_kfifo_free(iio->buffer); iio_buffer_unregister(iio); iio_device_unregister(iio); mutex_destroy(&(dd->mutex)); iio_device_free(iio); /* dd is freed here */ return; } static int m4ped_create_iiodev(struct iio_dev *iio) { int err = 0; struct m4ped_driver_data *dd = iio_priv(iio); iio->name = M4PED_DRIVER_NAME; iio->modes = INDIO_DIRECT_MODE | INDIO_BUFFER_HARDWARE; iio->num_channels = 1; iio->info = &m4ped_iio_info; iio->channels = m4ped_iio_channels; iio->buffer = iio_kfifo_allocate(iio); if (iio->buffer == NULL) { m4ped_err("%s: Failed to allocate IIO buffer.\n", __func__); err = -ENOMEM; goto m4ped_create_iiodev_kfifo_fail; } iio->buffer->scan_timestamp = true; iio->buffer->access->set_bytes_per_datum(iio->buffer, sizeof(dd->iiodat)); err = iio_buffer_register(iio, iio->channels, iio->num_channels); if (err < 0) { m4ped_err("%s: Failed to register IIO buffer.\n", __func__); goto m4ped_create_iiodev_buffer_fail; } err = iio_device_register(iio); if (err < 0) { m4ped_err("%s: Failed to register IIO device.\n", __func__); goto m4ped_create_iiodev_iioreg_fail; } goto m4ped_create_iiodev_exit; m4ped_create_iiodev_iioreg_fail: iio_buffer_unregister(iio); m4ped_create_iiodev_buffer_fail: iio_kfifo_free(iio->buffer); m4ped_create_iiodev_kfifo_fail: iio_device_free(iio); /* dd is freed here */ m4ped_create_iiodev_exit: return err; } static int m4ped_driver_init(struct init_calldata *p_arg) { struct iio_dev *iio = p_arg->p_data; struct m4ped_driver_data *dd = iio_priv(iio); int err = 0; mutex_lock(&(dd->mutex)); dd->m4 = p_arg->p_m4sensorhub_data; if (dd->m4 == NULL) { m4ped_err("%s: M4 sensor data is NULL.\n", __func__); err = -ENODATA; goto m4ped_driver_init_fail; } err = m4ped_create_iiodev(iio); if (err < 0) { m4ped_err("%s: Failed to create IIO device.\n", __func__); goto m4ped_driver_init_fail; } err = m4sensorhub_irq_register(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY, m4ped_isr, iio); if (err < 0) { m4ped_err("%s: Failed to register M4 PED IRQ.\n", __func__); goto m4ped_driver_init_irq_ped_fail; } err = m4sensorhub_irq_register(dd->m4, M4SH_IRQ_ACTIVITY_CHANGE, m4ped_isr, iio); if (err < 0) { m4ped_err("%s: Failed to register M4 ACT IRQ.\n", __func__); goto m4ped_driver_init_irq_act_fail; } /* * NOTE: We're intentionally unlocking here instead of * at function end (after error cases). The reason * is that the mutex ceases to exist because IIO is * freed, so we would cause a panic putting the unlock * after m4ped_driver_init_exit. */ mutex_unlock(&(dd->mutex)); goto m4ped_driver_init_exit; m4ped_driver_init_irq_act_fail: m4sensorhub_irq_unregister(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY); m4ped_driver_init_irq_ped_fail: m4ped_remove_iiodev(iio); /* dd is freed here */ m4ped_driver_init_fail: m4ped_err("%s: Init failed with error code %d.\n", __func__, err); m4ped_driver_init_exit: return err; } static int m4ped_probe(struct platform_device *pdev) { struct m4ped_driver_data *dd = NULL; struct iio_dev *iio = NULL; int err = 0; iio = iio_device_alloc(sizeof(dd)); if (iio == NULL) { m4ped_err("%s: Failed to allocate IIO data.\n", __func__); err = -ENOMEM; goto m4ped_probe_fail_noiio; } dd = iio_priv(iio); dd->pdev = pdev; mutex_init(&(dd->mutex)); platform_set_drvdata(pdev, iio); dd->samplerate = -1; /* We always start disabled */ err = m4sensorhub_register_initcall(m4ped_driver_init, iio); if (err < 0) { m4ped_err("%s: Failed to register initcall.\n", __func__); goto m4ped_probe_fail; } return 0; m4ped_probe_fail: mutex_destroy(&(dd->mutex)); iio_device_free(iio); /* dd is freed here */ m4ped_probe_fail_noiio: m4ped_err("%s: Probe failed with error code %d.\n", __func__, err); return err; } static int __exit m4ped_remove(struct platform_device *pdev) { struct iio_dev *iio = platform_get_drvdata(pdev); struct m4ped_driver_data *dd = NULL; if (iio == NULL) goto m4ped_remove_exit; dd = iio_priv(iio); if (dd == NULL) goto m4ped_remove_exit; mutex_lock(&(dd->mutex)); if (dd->status & (1 << M4PED_IRQ_ENABLED_BIT)) { m4sensorhub_irq_disable(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY); m4sensorhub_irq_disable(dd->m4, M4SH_IRQ_ACTIVITY_CHANGE); dd->status = dd->status & ~(1 << M4PED_IRQ_ENABLED_BIT); } m4sensorhub_irq_unregister(dd->m4, M4SH_IRQ_PEDOMETER_DATA_READY); m4sensorhub_irq_unregister(dd->m4, M4SH_IRQ_ACTIVITY_CHANGE); m4sensorhub_unregister_initcall(m4ped_driver_init); mutex_destroy(&(dd->mutex)); m4ped_remove_iiodev(iio); /* dd is freed here */ m4ped_remove_exit: return 0; } static struct of_device_id m4pedometer_match_tbl[] = { { .compatible = "mot,m4pedometer" }, {}, }; static struct platform_driver m4ped_driver = { .probe = m4ped_probe, .remove = __exit_p(m4ped_remove), .shutdown = NULL, .suspend = NULL, .resume = NULL, .driver = { .name = M4PED_DRIVER_NAME, .owner = THIS_MODULE, .of_match_table = of_match_ptr(m4pedometer_match_tbl), }, }; static int __init m4ped_init(void) { return platform_driver_register(&m4ped_driver); } static void __exit m4ped_exit(void) { platform_driver_unregister(&m4ped_driver); } module_init(m4ped_init); module_exit(m4ped_exit); MODULE_ALIAS("platform:m4ped"); MODULE_DESCRIPTION("M4 Sensor Hub Pedometer client driver"); MODULE_AUTHOR("Motorola"); MODULE_LICENSE("GPL");