Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 1 | /* |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike{addtoit,linux.intel}.com) |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 3 | * Licensed under the GPL |
| 4 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 6 | #include <stddef.h> |
| 7 | #include <errno.h> |
| 8 | #include <signal.h> |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 9 | #include <time.h> |
| 10 | #include <sys/time.h> |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 11 | #include "kern_util.h" |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 12 | #include "kern_constants.h" |
| 13 | #include "os.h" |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 14 | #include "user.h" |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 15 | |
Jeff Dike | 537ae94 | 2006-09-25 23:33:05 -0700 | [diff] [blame] | 16 | int set_interval(int is_virtual) |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 17 | { |
| 18 | int usec = 1000000/hz(); |
Jeff Dike | 537ae94 | 2006-09-25 23:33:05 -0700 | [diff] [blame] | 19 | int timer_type = is_virtual ? ITIMER_VIRTUAL : ITIMER_REAL; |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 20 | struct itimerval interval = ((struct itimerval) { { 0, usec }, |
| 21 | { 0, usec } }); |
| 22 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 23 | if (setitimer(timer_type, &interval, NULL) == -1) |
Jeff Dike | 537ae94 | 2006-09-25 23:33:05 -0700 | [diff] [blame] | 24 | return -errno; |
| 25 | |
| 26 | return 0; |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 27 | } |
| 28 | |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 29 | void disable_timer(void) |
| 30 | { |
| 31 | struct itimerval disable = ((struct itimerval) { { 0, 0 }, { 0, 0 }}); |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 32 | |
| 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 Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 38 | /* If there are signals already queued, after unblocking ignore them */ |
Jeff Dike | 4b84c69 | 2006-09-25 23:33:04 -0700 | [diff] [blame] | 39 | signal(SIGALRM, SIG_IGN); |
| 40 | signal(SIGVTALRM, SIG_IGN); |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | void switch_timers(int to_real) |
| 44 | { |
| 45 | struct itimerval disable = ((struct itimerval) { { 0, 0 }, { 0, 0 }}); |
| 46 | struct itimerval enable = ((struct itimerval) { { 0, 1000000/hz() }, |
| 47 | { 0, 1000000/hz() }}); |
| 48 | int old, new; |
| 49 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 50 | if (to_real) { |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 51 | old = ITIMER_VIRTUAL; |
| 52 | new = ITIMER_REAL; |
| 53 | } |
| 54 | else { |
| 55 | old = ITIMER_REAL; |
| 56 | new = ITIMER_VIRTUAL; |
| 57 | } |
| 58 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 59 | if ((setitimer(old, &disable, NULL) < 0) || |
| 60 | (setitimer(new, &enable, NULL))) |
| 61 | printk(UM_KERN_ERR "switch_timers - setitimer failed, " |
| 62 | "errno = %d\n", errno); |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 65 | unsigned long long os_nsecs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | struct timeval tv; |
| 68 | |
| 69 | gettimeofday(&tv, NULL); |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame^] | 70 | return (unsigned long long) tv.tv_sec * BILLION + tv.tv_usec * 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 73 | void idle_sleep(int secs) |
| 74 | { |
| 75 | struct timespec ts; |
| 76 | |
| 77 | ts.tv_sec = secs; |
| 78 | ts.tv_nsec = 0; |
| 79 | nanosleep(&ts, NULL); |
| 80 | } |