vmi_time.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * VMI Time wrappers
  3. *
  4. * Copyright (C) 2006, VMware, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  14. * NON INFRINGEMENT. See the GNU General Public License for more
  15. * details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. *
  21. * Send feedback to dhecht@vmware.com
  22. *
  23. */
  24. #ifndef __VMI_TIME_H
  25. #define __VMI_TIME_H
  26. /*
  27. * Raw VMI call indices for timer functions
  28. */
  29. #define VMI_CALL_GetCycleFrequency 66
  30. #define VMI_CALL_GetCycleCounter 67
  31. #define VMI_CALL_SetAlarm 68
  32. #define VMI_CALL_CancelAlarm 69
  33. #define VMI_CALL_GetWallclockTime 70
  34. #define VMI_CALL_WallclockUpdated 71
  35. /* Cached VMI timer operations */
  36. extern struct vmi_timer_ops {
  37. u64 (*get_cycle_frequency)(void);
  38. u64 (*get_cycle_counter)(int);
  39. u64 (*get_wallclock)(void);
  40. int (*wallclock_updated)(void);
  41. void (*set_alarm)(u32 flags, u64 expiry, u64 period);
  42. void (*cancel_alarm)(u32 flags);
  43. } vmi_timer_ops;
  44. /* Prototypes */
  45. extern void __init vmi_time_init(void);
  46. extern unsigned long vmi_get_wallclock(void);
  47. extern int vmi_set_wallclock(unsigned long now);
  48. extern unsigned long long vmi_get_sched_cycles(void);
  49. extern unsigned long vmi_cpu_khz(void);
  50. #ifdef CONFIG_X86_LOCAL_APIC
  51. extern void __init vmi_timer_setup_boot_alarm(void);
  52. extern void __devinit vmi_timer_setup_secondary_alarm(void);
  53. extern void apic_vmi_timer_interrupt(void);
  54. #endif
  55. #ifdef CONFIG_NO_IDLE_HZ
  56. extern int vmi_stop_hz_timer(void);
  57. extern void vmi_account_time_restart_hz_timer(void);
  58. #else
  59. static inline int vmi_stop_hz_timer(void)
  60. {
  61. return 0;
  62. }
  63. static inline void vmi_account_time_restart_hz_timer(void)
  64. {
  65. }
  66. #endif
  67. /*
  68. * When run under a hypervisor, a vcpu is always in one of three states:
  69. * running, halted, or ready. The vcpu is in the 'running' state if it
  70. * is executing. When the vcpu executes the halt interface, the vcpu
  71. * enters the 'halted' state and remains halted until there is some work
  72. * pending for the vcpu (e.g. an alarm expires, host I/O completes on
  73. * behalf of virtual I/O). At this point, the vcpu enters the 'ready'
  74. * state (waiting for the hypervisor to reschedule it). Finally, at any
  75. * time when the vcpu is not in the 'running' state nor the 'halted'
  76. * state, it is in the 'ready' state.
  77. *
  78. * Real time is advances while the vcpu is 'running', 'ready', or
  79. * 'halted'. Stolen time is the time in which the vcpu is in the
  80. * 'ready' state. Available time is the remaining time -- the vcpu is
  81. * either 'running' or 'halted'.
  82. *
  83. * All three views of time are accessible through the VMI cycle
  84. * counters.
  85. */
  86. /* The cycle counters. */
  87. #define VMI_CYCLES_REAL 0
  88. #define VMI_CYCLES_AVAILABLE 1
  89. #define VMI_CYCLES_STOLEN 2
  90. /* The alarm interface 'flags' bits */
  91. #define VMI_ALARM_COUNTERS 2
  92. #define VMI_ALARM_COUNTER_MASK 0x000000ff
  93. #define VMI_ALARM_WIRED_IRQ0 0x00000000
  94. #define VMI_ALARM_WIRED_LVTT 0x00010000
  95. #define VMI_ALARM_IS_ONESHOT 0x00000000
  96. #define VMI_ALARM_IS_PERIODIC 0x00000100
  97. #define CONFIG_VMI_ALARM_HZ 100
  98. #endif