sensor_handlers.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <drivers/sensor.h>
  7. #include <syscall_handler.h>
  8. static inline int z_vrfy_sensor_attr_set(const struct device *dev,
  9. enum sensor_channel chan,
  10. enum sensor_attribute attr,
  11. const struct sensor_value *val)
  12. {
  13. Z_OOPS(Z_SYSCALL_DRIVER_SENSOR(dev, attr_set));
  14. Z_OOPS(Z_SYSCALL_MEMORY_READ(val, sizeof(struct sensor_value)));
  15. return z_impl_sensor_attr_set((const struct device *)dev, chan, attr,
  16. (const struct sensor_value *)val);
  17. }
  18. #include <syscalls/sensor_attr_set_mrsh.c>
  19. static inline int z_vrfy_sensor_attr_get(const struct device *dev,
  20. enum sensor_channel chan,
  21. enum sensor_attribute attr,
  22. struct sensor_value *val)
  23. {
  24. Z_OOPS(Z_SYSCALL_DRIVER_SENSOR(dev, attr_get));
  25. Z_OOPS(Z_SYSCALL_MEMORY_WRITE(val, sizeof(struct sensor_value)));
  26. return z_impl_sensor_attr_get((const struct device *)dev, chan, attr,
  27. (struct sensor_value *)val);
  28. }
  29. #include <syscalls/sensor_attr_get_mrsh.c>
  30. static inline int z_vrfy_sensor_sample_fetch(const struct device *dev)
  31. {
  32. Z_OOPS(Z_SYSCALL_DRIVER_SENSOR(dev, sample_fetch));
  33. return z_impl_sensor_sample_fetch((const struct device *)dev);
  34. }
  35. #include <syscalls/sensor_sample_fetch_mrsh.c>
  36. static inline int z_vrfy_sensor_sample_fetch_chan(const struct device *dev,
  37. enum sensor_channel type)
  38. {
  39. Z_OOPS(Z_SYSCALL_DRIVER_SENSOR(dev, sample_fetch));
  40. return z_impl_sensor_sample_fetch_chan((const struct device *)dev,
  41. type);
  42. }
  43. #include <syscalls/sensor_sample_fetch_chan_mrsh.c>
  44. static inline int z_vrfy_sensor_channel_get(const struct device *dev,
  45. enum sensor_channel chan,
  46. struct sensor_value *val)
  47. {
  48. Z_OOPS(Z_SYSCALL_DRIVER_SENSOR(dev, channel_get));
  49. Z_OOPS(Z_SYSCALL_MEMORY_WRITE(val, sizeof(struct sensor_value)));
  50. return z_impl_sensor_channel_get((const struct device *)dev, chan,
  51. (struct sensor_value *)val);
  52. }
  53. #include <syscalls/sensor_channel_get_mrsh.c>