adc_handlers.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <drivers/adc.h>
  7. #include <syscall_handler.h>
  8. #include <kernel.h>
  9. static inline int z_vrfy_adc_channel_setup(const struct device *dev,
  10. const struct adc_channel_cfg *user_channel_cfg)
  11. {
  12. struct adc_channel_cfg channel_cfg;
  13. Z_OOPS(Z_SYSCALL_DRIVER_ADC(dev, channel_setup));
  14. Z_OOPS(z_user_from_copy(&channel_cfg,
  15. (struct adc_channel_cfg *)user_channel_cfg,
  16. sizeof(struct adc_channel_cfg)));
  17. return z_impl_adc_channel_setup((const struct device *)dev,
  18. &channel_cfg);
  19. }
  20. #include <syscalls/adc_channel_setup_mrsh.c>
  21. static bool copy_sequence(struct adc_sequence *dst,
  22. struct adc_sequence_options *options,
  23. struct adc_sequence *src)
  24. {
  25. if (z_user_from_copy(dst, src, sizeof(struct adc_sequence)) != 0) {
  26. printk("couldn't copy adc_sequence struct\n");
  27. return false;
  28. }
  29. if (dst->options) {
  30. if (z_user_from_copy(options, dst->options,
  31. sizeof(struct adc_sequence_options)) != 0) {
  32. printk("couldn't copy adc_options struct\n");
  33. return false;
  34. }
  35. dst->options = options;
  36. }
  37. if (Z_SYSCALL_MEMORY_WRITE(dst->buffer, dst->buffer_size) != 0) {
  38. printk("no access to buffer memory\n");
  39. return false;
  40. }
  41. return true;
  42. }
  43. static inline int z_vrfy_adc_read(const struct device *dev,
  44. const struct adc_sequence *user_sequence)
  45. {
  46. struct adc_sequence sequence;
  47. struct adc_sequence_options options;
  48. Z_OOPS(Z_SYSCALL_DRIVER_ADC(dev, read));
  49. Z_OOPS(Z_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options,
  50. (struct adc_sequence *)user_sequence),
  51. "invalid ADC sequence"));
  52. if (sequence.options != NULL) {
  53. Z_OOPS(Z_SYSCALL_VERIFY_MSG(sequence.options->callback == NULL,
  54. "ADC sequence callbacks forbidden from user mode"));
  55. }
  56. return z_impl_adc_read((const struct device *)dev, &sequence);
  57. }
  58. #include <syscalls/adc_read_mrsh.c>
  59. #ifdef CONFIG_ADC_ASYNC
  60. static inline int z_vrfy_adc_read_async(const struct device *dev,
  61. const struct adc_sequence *user_sequence,
  62. struct k_poll_signal *async)
  63. {
  64. struct adc_sequence sequence;
  65. struct adc_sequence_options options;
  66. Z_OOPS(Z_SYSCALL_DRIVER_ADC(dev, read_async));
  67. Z_OOPS(Z_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options,
  68. (struct adc_sequence *)user_sequence),
  69. "invalid ADC sequence"));
  70. if (sequence.options != NULL) {
  71. Z_OOPS(Z_SYSCALL_VERIFY_MSG(sequence.options->callback == NULL,
  72. "ADC sequence callbacks forbidden from user mode"));
  73. }
  74. Z_OOPS(Z_SYSCALL_OBJ(async, K_OBJ_POLL_SIGNAL));
  75. return z_impl_adc_read_async((const struct device *)dev, &sequence,
  76. (struct k_poll_signal *)async);
  77. }
  78. #include <syscalls/adc_read_async_mrsh.c>
  79. #endif /* CONFIG_ADC_ASYNC */