[50] | 1 | /* |
---|
| 2 | * sys_timeofday.c - Get current time |
---|
| 3 | * |
---|
[624] | 4 | * Author Alain Greiner (2016,2017,2018,2019) |
---|
[50] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[457] | 24 | #include <hal_kernel_types.h> |
---|
[50] | 25 | #include <hal_uspace.h> |
---|
[624] | 26 | #include <hal_vmm.h> |
---|
[50] | 27 | #include <thread.h> |
---|
| 28 | #include <printk.h> |
---|
| 29 | #include <errno.h> |
---|
| 30 | #include <process.h> |
---|
| 31 | #include <vmm.h> |
---|
| 32 | #include <core.h> |
---|
[407] | 33 | #include <shared_syscalls.h> |
---|
[50] | 34 | |
---|
[506] | 35 | #include <syscalls.h> |
---|
| 36 | |
---|
[50] | 37 | //////////////////////////////////////// |
---|
| 38 | int sys_timeofday( struct timeval * tv, |
---|
| 39 | struct timezone * tz ) |
---|
| 40 | { |
---|
| 41 | error_t error; |
---|
[440] | 42 | vseg_t * vseg; |
---|
[50] | 43 | |
---|
| 44 | uint32_t tm_s; |
---|
| 45 | uint32_t tm_us; |
---|
| 46 | |
---|
| 47 | struct timeval k_tv; |
---|
| 48 | |
---|
| 49 | thread_t * this = CURRENT_THREAD; |
---|
| 50 | process_t * process = this->process; |
---|
| 51 | |
---|
[637] | 52 | #if (DEBUG_SYS_TIMEOFDAY || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 53 | uint64_t tm_start = hal_get_cycles(); |
---|
| 54 | #endif |
---|
| 55 | |
---|
| 56 | #if DEBUG_SYS_TIMEOFDAY |
---|
| 57 | if( DEBUG_SYS_TIMEOFDAY < tm_start ) |
---|
| 58 | printk("\n[%s] thread[%x,%x] enter / cycle %d\n", |
---|
| 59 | __FUNCTION__, process->pid, this->trdid, (uint32_t)tm_start ); |
---|
| 60 | #endif |
---|
| 61 | |
---|
[50] | 62 | // check tz (non supported / must be null) |
---|
| 63 | if( tz ) |
---|
| 64 | { |
---|
[440] | 65 | |
---|
| 66 | #if DEBUG_SYSCALLS_ERROR |
---|
| 67 | printk("\n[ERROR] in %s for thread %x in process %x : tz argument must be NULL\n", |
---|
| 68 | __FUNCTION__ , this->trdid , process->pid ); |
---|
| 69 | #endif |
---|
[50] | 70 | this->errno = EINVAL; |
---|
| 71 | return -1; |
---|
| 72 | } |
---|
| 73 | |
---|
| 74 | // check tv |
---|
[440] | 75 | error = vmm_get_vseg( process , (intptr_t)tv , &vseg ); |
---|
[50] | 76 | |
---|
| 77 | if( error ) |
---|
| 78 | { |
---|
[440] | 79 | |
---|
| 80 | #if DEBUG_SYSCALLS_ERROR |
---|
| 81 | printk("\n[ERROR] in %s : user buffer tz unmapped / thread %x / process %x\n", |
---|
| 82 | __FUNCTION__ , (intptr_t)tz , this->trdid , process->pid ); |
---|
| 83 | #endif |
---|
[50] | 84 | this->errno = EINVAL; |
---|
| 85 | return -1; |
---|
| 86 | } |
---|
| 87 | |
---|
| 88 | // get time from calling core descriptor |
---|
| 89 | core_get_time( this->core , &tm_s , &tm_us ); |
---|
| 90 | k_tv.tv_sec = tm_s; |
---|
| 91 | k_tv.tv_usec = tm_us; |
---|
| 92 | |
---|
| 93 | // copy values to user space |
---|
[637] | 94 | hal_copy_to_uspace( tv, |
---|
| 95 | XPTR( local_cxy , &k_tv ), |
---|
[626] | 96 | sizeof(struct timeval) ); |
---|
[50] | 97 | |
---|
[124] | 98 | hal_fence(); |
---|
[50] | 99 | |
---|
[637] | 100 | #if (DEBUG_SYS_TIMEOFDAY || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 101 | uint64_t tm_end = hal_get_cycles(); |
---|
| 102 | #endif |
---|
| 103 | |
---|
| 104 | #if DEBUG_SYS_TIMEOFDAY |
---|
| 105 | if( DEBUG_SYS_TIMEOFDAY < tm_end ) |
---|
| 106 | printk("\n[%s] thread[%x,%x] exit / cycle %d\n", |
---|
| 107 | __FUNCTION__, process->pid, this->trdid, (uint32_t)tm_end ); |
---|
| 108 | #endif |
---|
| 109 | |
---|
| 110 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 111 | hal_atomic_add( &syscalls_cumul_cost[SYS_TIMEOFDAY] , tm_end - tm_start ); |
---|
| 112 | hal_atomic_add( &syscalls_occurences[SYS_TIMEOFDAY] , 1 ); |
---|
| 113 | #endif |
---|
| 114 | |
---|
[50] | 115 | return 0; |
---|
| 116 | |
---|
| 117 | } // end sys_timeofday() |
---|