average.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef _LINUX_AVERAGE_H
  2. #define _LINUX_AVERAGE_H
  3. #include <linux/bug.h>
  4. #include <linux/compiler.h>
  5. #include <linux/log2.h>
  6. /*
  7. * Exponentially weighted moving average (EWMA)
  8. *
  9. * This implements a fixed-precision EWMA algorithm, with both the
  10. * precision and fall-off coefficient determined at compile-time
  11. * and built into the generated helper funtions.
  12. *
  13. * The first argument to the macro is the name that will be used
  14. * for the struct and helper functions.
  15. *
  16. * The second argument, the precision, expresses how many bits are
  17. * used for the fractional part of the fixed-precision values.
  18. *
  19. * The third argument, the weight reciprocal, determines how the
  20. * new values will be weighed vs. the old state, new values will
  21. * get weight 1/weight_rcp and old values 1-1/weight_rcp. Note
  22. * that this parameter must be a power of two for efficiency.
  23. */
  24. #define DECLARE_EWMA(name, _precision, _weight_rcp) \
  25. struct ewma_##name { \
  26. unsigned long internal; \
  27. }; \
  28. static inline void ewma_##name##_init(struct ewma_##name *e) \
  29. { \
  30. BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
  31. BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
  32. /* \
  33. * Even if you want to feed it just 0/1 you should have \
  34. * some bits for the non-fractional part... \
  35. */ \
  36. BUILD_BUG_ON((_precision) > 30); \
  37. BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
  38. e->internal = 0; \
  39. } \
  40. static inline unsigned long \
  41. ewma_##name##_read(struct ewma_##name *e) \
  42. { \
  43. BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
  44. BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
  45. BUILD_BUG_ON((_precision) > 30); \
  46. BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
  47. return e->internal >> (_precision); \
  48. } \
  49. static inline void ewma_##name##_add(struct ewma_##name *e, \
  50. unsigned long val) \
  51. { \
  52. unsigned long internal = READ_ONCE(e->internal); \
  53. unsigned long weight_rcp = ilog2(_weight_rcp); \
  54. unsigned long precision = _precision; \
  55. \
  56. BUILD_BUG_ON(!__builtin_constant_p(_precision)); \
  57. BUILD_BUG_ON(!__builtin_constant_p(_weight_rcp)); \
  58. BUILD_BUG_ON((_precision) > 30); \
  59. BUILD_BUG_ON_NOT_POWER_OF_2(_weight_rcp); \
  60. \
  61. WRITE_ONCE(e->internal, internal ? \
  62. (((internal << weight_rcp) - internal) + \
  63. (val << precision)) >> weight_rcp : \
  64. (val << precision)); \
  65. }
  66. #endif /* _LINUX_AVERAGE_H */