iio-trig-hrtimer.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /**
  2. * The industrial I/O periodic hrtimer trigger driver
  3. *
  4. * Copyright (C) Intuitive Aerial AB
  5. * Written by Marten Svanfeldt, marten@intuitiveaerial.com
  6. * Copyright (C) 2012, Analog Device Inc.
  7. * Author: Lars-Peter Clausen <lars@metafoo.de>
  8. * Copyright (C) 2015, Intel Corporation
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License version 2 as published by
  12. * the Free Software Foundation.
  13. *
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/slab.h>
  17. #include <linux/hrtimer.h>
  18. #include <linux/iio/iio.h>
  19. #include <linux/iio/trigger.h>
  20. #include <linux/iio/sw_trigger.h>
  21. /* default sampling frequency - 100Hz */
  22. #define HRTIMER_DEFAULT_SAMPLING_FREQUENCY 100
  23. struct iio_hrtimer_info {
  24. struct iio_sw_trigger swt;
  25. struct hrtimer timer;
  26. unsigned long sampling_frequency;
  27. ktime_t period;
  28. };
  29. static const struct config_item_type iio_hrtimer_type = {
  30. .ct_owner = THIS_MODULE,
  31. };
  32. static
  33. ssize_t iio_hrtimer_show_sampling_frequency(struct device *dev,
  34. struct device_attribute *attr,
  35. char *buf)
  36. {
  37. struct iio_trigger *trig = to_iio_trigger(dev);
  38. struct iio_hrtimer_info *info = iio_trigger_get_drvdata(trig);
  39. return snprintf(buf, PAGE_SIZE, "%lu\n", info->sampling_frequency);
  40. }
  41. static
  42. ssize_t iio_hrtimer_store_sampling_frequency(struct device *dev,
  43. struct device_attribute *attr,
  44. const char *buf, size_t len)
  45. {
  46. struct iio_trigger *trig = to_iio_trigger(dev);
  47. struct iio_hrtimer_info *info = iio_trigger_get_drvdata(trig);
  48. unsigned long val;
  49. int ret;
  50. ret = kstrtoul(buf, 10, &val);
  51. if (ret)
  52. return ret;
  53. if (!val || val > NSEC_PER_SEC)
  54. return -EINVAL;
  55. info->sampling_frequency = val;
  56. info->period = NSEC_PER_SEC / val;
  57. return len;
  58. }
  59. static DEVICE_ATTR(sampling_frequency, S_IRUGO | S_IWUSR,
  60. iio_hrtimer_show_sampling_frequency,
  61. iio_hrtimer_store_sampling_frequency);
  62. static struct attribute *iio_hrtimer_attrs[] = {
  63. &dev_attr_sampling_frequency.attr,
  64. NULL
  65. };
  66. static const struct attribute_group iio_hrtimer_attr_group = {
  67. .attrs = iio_hrtimer_attrs,
  68. };
  69. static const struct attribute_group *iio_hrtimer_attr_groups[] = {
  70. &iio_hrtimer_attr_group,
  71. NULL
  72. };
  73. static enum hrtimer_restart iio_hrtimer_trig_handler(struct hrtimer *timer)
  74. {
  75. struct iio_hrtimer_info *info;
  76. info = container_of(timer, struct iio_hrtimer_info, timer);
  77. hrtimer_forward_now(timer, info->period);
  78. iio_trigger_poll(info->swt.trigger);
  79. return HRTIMER_RESTART;
  80. }
  81. static int iio_trig_hrtimer_set_state(struct iio_trigger *trig, bool state)
  82. {
  83. struct iio_hrtimer_info *trig_info;
  84. trig_info = iio_trigger_get_drvdata(trig);
  85. if (state)
  86. hrtimer_start(&trig_info->timer, trig_info->period,
  87. HRTIMER_MODE_REL);
  88. else
  89. hrtimer_cancel(&trig_info->timer);
  90. return 0;
  91. }
  92. static const struct iio_trigger_ops iio_hrtimer_trigger_ops = {
  93. .set_trigger_state = iio_trig_hrtimer_set_state,
  94. };
  95. static struct iio_sw_trigger *iio_trig_hrtimer_probe(const char *name)
  96. {
  97. struct iio_hrtimer_info *trig_info;
  98. int ret;
  99. trig_info = kzalloc(sizeof(*trig_info), GFP_KERNEL);
  100. if (!trig_info)
  101. return ERR_PTR(-ENOMEM);
  102. trig_info->swt.trigger = iio_trigger_alloc("%s", name);
  103. if (!trig_info->swt.trigger) {
  104. ret = -ENOMEM;
  105. goto err_free_trig_info;
  106. }
  107. iio_trigger_set_drvdata(trig_info->swt.trigger, trig_info);
  108. trig_info->swt.trigger->ops = &iio_hrtimer_trigger_ops;
  109. trig_info->swt.trigger->dev.groups = iio_hrtimer_attr_groups;
  110. hrtimer_init(&trig_info->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
  111. trig_info->timer.function = iio_hrtimer_trig_handler;
  112. trig_info->sampling_frequency = HRTIMER_DEFAULT_SAMPLING_FREQUENCY;
  113. trig_info->period = NSEC_PER_SEC / trig_info->sampling_frequency;
  114. ret = iio_trigger_register(trig_info->swt.trigger);
  115. if (ret)
  116. goto err_free_trigger;
  117. iio_swt_group_init_type_name(&trig_info->swt, name, &iio_hrtimer_type);
  118. return &trig_info->swt;
  119. err_free_trigger:
  120. iio_trigger_free(trig_info->swt.trigger);
  121. err_free_trig_info:
  122. kfree(trig_info);
  123. return ERR_PTR(ret);
  124. }
  125. static int iio_trig_hrtimer_remove(struct iio_sw_trigger *swt)
  126. {
  127. struct iio_hrtimer_info *trig_info;
  128. trig_info = iio_trigger_get_drvdata(swt->trigger);
  129. iio_trigger_unregister(swt->trigger);
  130. /* cancel the timer after unreg to make sure no one rearms it */
  131. hrtimer_cancel(&trig_info->timer);
  132. iio_trigger_free(swt->trigger);
  133. kfree(trig_info);
  134. return 0;
  135. }
  136. static const struct iio_sw_trigger_ops iio_trig_hrtimer_ops = {
  137. .probe = iio_trig_hrtimer_probe,
  138. .remove = iio_trig_hrtimer_remove,
  139. };
  140. static struct iio_sw_trigger_type iio_trig_hrtimer = {
  141. .name = "hrtimer",
  142. .owner = THIS_MODULE,
  143. .ops = &iio_trig_hrtimer_ops,
  144. };
  145. module_iio_sw_trigger_driver(iio_trig_hrtimer);
  146. MODULE_AUTHOR("Marten Svanfeldt <marten@intuitiveaerial.com>");
  147. MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
  148. MODULE_DESCRIPTION("Periodic hrtimer trigger for the IIO subsystem");
  149. MODULE_LICENSE("GPL v2");