sys_clock_init.c 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Initialize system clock driver
  9. *
  10. * Initializing the timer driver is done in this module to reduce code
  11. * duplication.
  12. */
  13. #include <kernel.h>
  14. #include <init.h>
  15. #include <drivers/timer/system_timer.h>
  16. /* Weak-linked noop defaults for optional driver interfaces*/
  17. void __weak sys_clock_isr(void *arg)
  18. {
  19. __ASSERT_NO_MSG(false);
  20. }
  21. int __weak sys_clock_driver_init(const struct device *dev)
  22. {
  23. ARG_UNUSED(dev);
  24. return 0;
  25. }
  26. int __weak sys_clock_device_ctrl(const struct device *dev,
  27. enum pm_device_action action)
  28. {
  29. return -ENOSYS;
  30. }
  31. void __weak sys_clock_set_timeout(int32_t ticks, bool idle)
  32. {
  33. }
  34. void __weak sys_clock_idle_exit(void)
  35. {
  36. }
  37. void __weak sys_clock_disable(void)
  38. {
  39. }
  40. SYS_DEVICE_DEFINE("sys_clock", sys_clock_driver_init, sys_clock_device_ctrl,
  41. PRE_KERNEL_2, CONFIG_SYSTEM_CLOCK_INIT_PRIORITY);