vibrator_acts.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <sys/__assert.h>
  8. #include <stdbool.h>
  9. #include <kernel.h>
  10. #include <device.h>
  11. #include <init.h>
  12. #include <drivers/pwm.h>
  13. #include <drivers/vibrator.h>
  14. #include <soc.h>
  15. #include <board_cfg.h>
  16. #define LOG_LEVEL CONFIG_VIBRATOR_LOG_LEVEL
  17. #include <logging/log.h>
  18. LOG_MODULE_REGISTER(vibrator);
  19. #define VIBRATOR_DEFAULT_FREQ_PARAM_HZ 8000
  20. struct vibrat_acts_data {
  21. const struct device *pwm_dev;
  22. u32_t chan_freq[4];
  23. };
  24. static int vibrat_acts_start(const struct device *dev, u32_t chan, u8_t dutycycle)
  25. {
  26. struct vibrat_acts_data *data = dev->data;
  27. u32_t freq;
  28. if (data->chan_freq[chan] == 0)
  29. freq = VIBRATOR_DEFAULT_FREQ_PARAM_HZ;
  30. else
  31. freq = data->chan_freq[chan];
  32. return pwm_pin_set_freq_duty(data->pwm_dev, chan, freq, dutycycle, 1);
  33. }
  34. static int vibrat_acts_stop(const struct device *dev, u32_t chan)
  35. {
  36. struct vibrat_acts_data *data = dev->data;
  37. return pwm_pin_stop(data->pwm_dev, chan);
  38. }
  39. static int vibrat_acts_set_freq_param(const struct device *dev, u32_t chan, u32_t freq)
  40. {
  41. struct vibrat_acts_data *data = dev->data;
  42. data->chan_freq[chan] = freq;
  43. return 0;
  44. }
  45. const struct vibrat_driver_api vibrat_acts_driver_api = {
  46. .start = vibrat_acts_start,
  47. .stop = vibrat_acts_stop,
  48. .set_freq_param = vibrat_acts_set_freq_param,
  49. };
  50. int vibrat_acts_init(const struct device *dev)
  51. {
  52. struct vibrat_acts_data *data = dev->data;
  53. data->pwm_dev = device_get_binding(CONFIG_PWM_NAME);
  54. if (!data->pwm_dev) {
  55. LOG_ERR("Bind PWM device error");
  56. return -ENOENT;
  57. }
  58. return 0;
  59. }
  60. static struct vibrat_acts_data vibrat_acts_data;
  61. #if IS_ENABLED(CONFIG_VIBRATOR)
  62. DEVICE_DEFINE(vibrator_acts, CONFIG_VIBRATOR_DEV_NAME,
  63. vibrat_acts_init, NULL,
  64. &vibrat_acts_data, NULL,
  65. POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
  66. &vibrat_acts_driver_api);
  67. #endif