blob: b156f03e1713421d22fbd8bedaedd60641d51305 [file] [log] [blame]
Gennady Sharapovcff65c42006-01-18 17:42:42 -08001/*
Jeff Dike4c9e1382007-10-16 01:26:54 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike{addtoit,linux.intel}.com)
Gennady Sharapovcff65c42006-01-18 17:42:42 -08003 * Licensed under the GPL
4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Jeff Dike4c9e1382007-10-16 01:26:54 -07006#include <stddef.h>
7#include <errno.h>
8#include <signal.h>
Gennady Sharapovcff65c42006-01-18 17:42:42 -08009#include <time.h>
10#include <sys/time.h>
Gennady Sharapovcff65c42006-01-18 17:42:42 -080011#include "kern_constants.h"
12#include "os.h"
Jeff Dike4c9e1382007-10-16 01:26:54 -070013#include "user.h"
Gennady Sharapovcff65c42006-01-18 17:42:42 -080014
Jeff Dike181bde82007-10-16 01:27:22 -070015static int is_real_timer = 0;
16
Jeff Dikea2f018b2007-10-16 01:27:22 -070017int set_interval(void)
Gennady Sharapovcff65c42006-01-18 17:42:42 -080018{
Jeff Dike532d0fa2007-10-16 01:27:21 -070019 int usec = 1000000/UM_HZ;
Gennady Sharapovcff65c42006-01-18 17:42:42 -080020 struct itimerval interval = ((struct itimerval) { { 0, usec },
21 { 0, usec } });
22
Jeff Dikea2f018b2007-10-16 01:27:22 -070023 if (setitimer(ITIMER_VIRTUAL, &interval, NULL) == -1)
Jeff Dike537ae942006-09-25 23:33:05 -070024 return -errno;
25
26 return 0;
Gennady Sharapovcff65c42006-01-18 17:42:42 -080027}
28
Gennady Sharapovcff65c42006-01-18 17:42:42 -080029void disable_timer(void)
30{
31 struct itimerval disable = ((struct itimerval) { { 0, 0 }, { 0, 0 }});
Jeff Dike4c9e1382007-10-16 01:26:54 -070032
33 if ((setitimer(ITIMER_VIRTUAL, &disable, NULL) < 0) ||
34 (setitimer(ITIMER_REAL, &disable, NULL) < 0))
35 printk(UM_KERN_ERR "disable_timer - setitimer failed, "
36 "errno = %d\n", errno);
37
Gennady Sharapovcff65c42006-01-18 17:42:42 -080038 /* If there are signals already queued, after unblocking ignore them */
Jeff Dike4b84c692006-09-25 23:33:04 -070039 signal(SIGALRM, SIG_IGN);
40 signal(SIGVTALRM, SIG_IGN);
Gennady Sharapovcff65c42006-01-18 17:42:42 -080041}
42
Jeff Dike181bde82007-10-16 01:27:22 -070043int switch_timers(int to_real)
Gennady Sharapovcff65c42006-01-18 17:42:42 -080044{
45 struct itimerval disable = ((struct itimerval) { { 0, 0 }, { 0, 0 }});
Jeff Dike181bde82007-10-16 01:27:22 -070046 struct itimerval enable;
47 int old, new, old_type = is_real_timer;
48
49 if(to_real == old_type)
50 return to_real;
Gennady Sharapovcff65c42006-01-18 17:42:42 -080051
Jeff Dike4c9e1382007-10-16 01:26:54 -070052 if (to_real) {
Gennady Sharapovcff65c42006-01-18 17:42:42 -080053 old = ITIMER_VIRTUAL;
54 new = ITIMER_REAL;
55 }
56 else {
57 old = ITIMER_REAL;
58 new = ITIMER_VIRTUAL;
59 }
60
Jeff Dike181bde82007-10-16 01:27:22 -070061 if (setitimer(old, &disable, &enable) < 0)
62 printk(UM_KERN_ERR "switch_timers - setitimer disable failed, "
Jeff Dike4c9e1382007-10-16 01:26:54 -070063 "errno = %d\n", errno);
Jeff Dike181bde82007-10-16 01:27:22 -070064
65 if((enable.it_value.tv_sec == 0) && (enable.it_value.tv_usec == 0))
66 enable.it_value = enable.it_interval;
67
68 if (setitimer(new, &enable, NULL))
69 printk(UM_KERN_ERR "switch_timers - setitimer enable failed, "
70 "errno = %d\n", errno);
71
72 is_real_timer = to_real;
73 return old_type;
Gennady Sharapovcff65c42006-01-18 17:42:42 -080074}
75
Gennady Sharapovcff65c42006-01-18 17:42:42 -080076unsigned long long os_nsecs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct timeval tv;
79
80 gettimeofday(&tv, NULL);
Jeff Dike4c9e1382007-10-16 01:26:54 -070081 return (unsigned long long) tv.tv_sec * BILLION + tv.tv_usec * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Gennady Sharapovcff65c42006-01-18 17:42:42 -080084void idle_sleep(int secs)
85{
86 struct timespec ts;
87
88 ts.tv_sec = secs;
89 ts.tv_nsec = 0;
90 nanosleep(&ts, NULL);
91}