time.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Common time prototypes and such for all ppc machines.
  3. *
  4. * Written by Cort Dougan (cort@cs.nmt.edu) to merge
  5. * Paul Mackerras' version and mine for PReP and Pmac.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #ifndef __PPC64_TIME_H
  13. #define __PPC64_TIME_H
  14. #ifdef __KERNEL__
  15. #include <linux/config.h>
  16. #include <linux/types.h>
  17. #include <linux/mc146818rtc.h>
  18. #include <asm/processor.h>
  19. #include <asm/paca.h>
  20. #include <asm/iSeries/HvCall.h>
  21. /* time.c */
  22. extern unsigned long tb_ticks_per_jiffy;
  23. extern unsigned long tb_ticks_per_usec;
  24. extern unsigned long tb_ticks_per_sec;
  25. extern unsigned long tb_to_xs;
  26. extern unsigned tb_to_us;
  27. extern unsigned long tb_last_stamp;
  28. struct rtc_time;
  29. extern void to_tm(int tim, struct rtc_time * tm);
  30. extern time_t last_rtc_update;
  31. /*
  32. * By putting all of this stuff into a single struct we
  33. * reduce the number of cache lines touched by do_gettimeofday.
  34. * Both by collecting all of the data in one cache line and
  35. * by touching only one TOC entry
  36. */
  37. struct gettimeofday_vars {
  38. unsigned long tb_to_xs;
  39. unsigned long stamp_xsec;
  40. unsigned long tb_orig_stamp;
  41. };
  42. struct gettimeofday_struct {
  43. unsigned long tb_ticks_per_sec;
  44. struct gettimeofday_vars vars[2];
  45. struct gettimeofday_vars * volatile varp;
  46. unsigned var_idx;
  47. unsigned tb_to_us;
  48. };
  49. struct div_result {
  50. unsigned long result_high;
  51. unsigned long result_low;
  52. };
  53. int via_calibrate_decr(void);
  54. static __inline__ unsigned long get_tb(void)
  55. {
  56. return mftb();
  57. }
  58. /* Accessor functions for the decrementer register. */
  59. static __inline__ unsigned int get_dec(void)
  60. {
  61. return (mfspr(SPRN_DEC));
  62. }
  63. static __inline__ void set_dec(int val)
  64. {
  65. #ifdef CONFIG_PPC_ISERIES
  66. struct paca_struct *lpaca = get_paca();
  67. int cur_dec;
  68. if (lpaca->lppaca.shared_proc) {
  69. lpaca->lppaca.virtual_decr = val;
  70. cur_dec = get_dec();
  71. if (cur_dec > val)
  72. HvCall_setVirtualDecr();
  73. } else
  74. #endif
  75. mtspr(SPRN_DEC, val);
  76. }
  77. static inline unsigned long tb_ticks_since(unsigned long tstamp)
  78. {
  79. return get_tb() - tstamp;
  80. }
  81. #define mulhwu(x,y) \
  82. ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
  83. #define mulhdu(x,y) \
  84. ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
  85. unsigned mulhwu_scale_factor(unsigned, unsigned);
  86. void div128_by_32( unsigned long dividend_high, unsigned long dividend_low,
  87. unsigned divisor, struct div_result *dr );
  88. /* Used to store Processor Utilization register (purr) values */
  89. struct cpu_usage {
  90. u64 current_tb; /* Holds the current purr register values */
  91. };
  92. DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array);
  93. #endif /* __KERNEL__ */
  94. #endif /* __PPC64_TIME_H */