2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Portable interface to the CPU cycle counter
|
|
|
|
*
|
2014-02-06 15:11:55 +01:00
|
|
|
* Copyright (C) 2006-2014, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#if defined(POLARSSL_SELF_TEST) && defined(POLARSSL_PLATFORM_C)
|
|
|
|
#include "polarssl/platform.h"
|
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
#define polarssl_printf printf
|
|
|
|
#endif
|
|
|
|
|
2014-02-06 15:11:55 +01:00
|
|
|
#if defined(POLARSSL_TIMING_C) && !defined(POLARSSL_TIMING_ALT)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/timing.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
|
|
|
|
struct _hr_time
|
|
|
|
{
|
|
|
|
LARGE_INTEGER start;
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
struct _hr_time
|
|
|
|
{
|
|
|
|
struct timeval start;
|
|
|
|
};
|
|
|
|
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long tsc;
|
|
|
|
__asm rdtsc
|
|
|
|
__asm mov [tsc], eax
|
|
|
|
return( tsc );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
|
|
|
defined(__GNUC__) && defined(__i386__)
|
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
2011-10-19 16:27:36 +02:00
|
|
|
unsigned long lo, hi;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
|
2011-10-19 16:27:36 +02:00
|
|
|
return( lo );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && __i386__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
|
2012-10-31 10:53:08 +01:00
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long lo, hi;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
|
2014-06-17 16:39:18 +02:00
|
|
|
return( lo | ( hi << 32 ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && ( __amd64__ || __x86_64__ ) */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
|
2012-10-31 10:53:08 +01:00
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long tbl, tbu0, tbu1;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "mftbu %0" : "=r" (tbu0) );
|
|
|
|
asm volatile( "mftb %0" : "=r" (tbl ) );
|
|
|
|
asm volatile( "mftbu %0" : "=r" (tbu1) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
while( tbu0 != tbu1 );
|
|
|
|
|
|
|
|
return( tbl );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && ( __powerpc__ || __ppc__ ) */
|
2012-10-31 10:53:08 +01:00
|
|
|
|
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
|
|
|
defined(__GNUC__) && defined(__sparc64__)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
#warning OpenBSD does not allow access to tick register using software version instead
|
2009-01-03 22:22:43 +01:00
|
|
|
#else
|
2012-10-31 10:53:08 +01:00
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long tick;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
|
2012-10-31 10:53:08 +01:00
|
|
|
return( tick );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* __OpenBSD__ */
|
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && __sparc64__ */
|
2012-10-31 10:53:08 +01:00
|
|
|
|
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
|
|
|
defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
|
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long tick;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
|
|
|
|
asm volatile( "mov %%g1, %0" : "=r" (tick) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( tick );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && __sparc__ && !__sparc64__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
|
|
|
defined(__GNUC__) && defined(__alpha__)
|
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long cc;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rpcc %0" : "=r" (cc) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( cc & 0xFFFFFFFF );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && __alpha__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(POLARSSL_HAVE_ASM) && \
|
|
|
|
defined(__GNUC__) && defined(__ia64__)
|
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
unsigned long itc;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( itc );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && POLARSSL_HAVE_ASM &&
|
|
|
|
__GNUC__ && __ia64__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK) && defined(_MSC_VER) && \
|
|
|
|
!defined(EFIX64) && !defined(EFI32)
|
2012-10-31 10:53:08 +01:00
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2011-04-24 17:28:55 +02:00
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
LARGE_INTEGER offset;
|
2013-10-28 18:48:30 +01:00
|
|
|
|
2014-03-27 19:02:07 +01:00
|
|
|
QueryPerformanceCounter( &offset );
|
2011-04-24 17:28:55 +02:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( (unsigned long)( offset.QuadPart ) );
|
2011-04-24 17:28:55 +02:00
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
|
2011-04-24 17:28:55 +02:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if !defined(POLARSSL_HAVE_HARDCLOCK)
|
|
|
|
|
|
|
|
#define POLARSSL_HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
static int hardclock_init = 0;
|
|
|
|
static struct timeval tv_init;
|
|
|
|
|
|
|
|
unsigned long hardclock( void )
|
|
|
|
{
|
|
|
|
struct timeval tv_cur;
|
|
|
|
|
|
|
|
if( hardclock_init == 0 )
|
|
|
|
{
|
|
|
|
gettimeofday( &tv_init, NULL );
|
|
|
|
hardclock_init = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gettimeofday( &tv_cur, NULL );
|
|
|
|
return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
|
|
|
|
+ ( tv_cur.tv_usec - tv_init.tv_usec ) );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* !POLARSSL_HAVE_HARDCLOCK */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-04-24 17:28:55 +02:00
|
|
|
volatile int alarmed = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long get_timer( struct hr_time *val, int reset )
|
|
|
|
{
|
|
|
|
unsigned long delta;
|
|
|
|
LARGE_INTEGER offset, hfreq;
|
|
|
|
struct _hr_time *t = (struct _hr_time *) val;
|
|
|
|
|
|
|
|
QueryPerformanceCounter( &offset );
|
|
|
|
QueryPerformanceFrequency( &hfreq );
|
|
|
|
|
|
|
|
delta = (unsigned long)( ( 1000 *
|
|
|
|
( offset.QuadPart - t->start.QuadPart ) ) /
|
|
|
|
hfreq.QuadPart );
|
|
|
|
|
|
|
|
if( reset )
|
|
|
|
QueryPerformanceCounter( &t->start );
|
|
|
|
|
|
|
|
return( delta );
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI TimerProc( LPVOID uElapse )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2009-01-03 22:22:43 +01:00
|
|
|
Sleep( (DWORD) uElapse );
|
2014-03-27 19:02:07 +01:00
|
|
|
alarmed = 1;
|
2009-01-03 22:22:43 +01:00
|
|
|
return( TRUE );
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_alarm( int seconds )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2009-01-03 22:22:43 +01:00
|
|
|
DWORD ThreadId;
|
|
|
|
|
2014-03-27 19:02:07 +01:00
|
|
|
alarmed = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
CloseHandle( CreateThread( NULL, 0, TimerProc,
|
|
|
|
(LPVOID) ( seconds * 1000 ), 0, &ThreadId ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void m_sleep( int milliseconds )
|
|
|
|
{
|
|
|
|
Sleep( milliseconds );
|
|
|
|
}
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#else /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
unsigned long get_timer( struct hr_time *val, int reset )
|
|
|
|
{
|
|
|
|
unsigned long delta;
|
|
|
|
struct timeval offset;
|
|
|
|
struct _hr_time *t = (struct _hr_time *) val;
|
|
|
|
|
|
|
|
gettimeofday( &offset, NULL );
|
|
|
|
|
|
|
|
if( reset )
|
|
|
|
{
|
|
|
|
t->start.tv_sec = offset.tv_sec;
|
|
|
|
t->start.tv_usec = offset.tv_usec;
|
2014-07-14 22:32:21 +02:00
|
|
|
return( 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2014-07-14 22:32:21 +02:00
|
|
|
delta = ( offset.tv_sec - t->start.tv_sec ) * 1000
|
|
|
|
+ ( offset.tv_usec - t->start.tv_usec ) / 1000;
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
return( delta );
|
|
|
|
}
|
|
|
|
|
2012-09-26 17:22:07 +02:00
|
|
|
#if defined(INTEGRITY)
|
|
|
|
void m_sleep( int milliseconds )
|
|
|
|
{
|
|
|
|
usleep( milliseconds * 1000 );
|
|
|
|
}
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#else /* INTEGRITY */
|
2012-09-26 17:22:07 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
static void sighandler( int signum )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2009-01-03 22:22:43 +01:00
|
|
|
alarmed = 1;
|
|
|
|
signal( signum, sighandler );
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_alarm( int seconds )
|
|
|
|
{
|
|
|
|
alarmed = 0;
|
|
|
|
signal( SIGALRM, sighandler );
|
|
|
|
alarm( seconds );
|
|
|
|
}
|
|
|
|
|
|
|
|
void m_sleep( int milliseconds )
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
tv.tv_sec = milliseconds / 1000;
|
2014-02-20 22:16:43 +01:00
|
|
|
tv.tv_usec = ( milliseconds % 1000 ) * 1000;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
select( 0, NULL, NULL, NULL, &tv );
|
|
|
|
}
|
2012-09-26 17:22:07 +02:00
|
|
|
#endif /* INTEGRITY */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#endif /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#if defined(POLARSSL_SELF_TEST)
|
|
|
|
|
2014-04-02 18:42:01 +02:00
|
|
|
/* To test net_usleep against our functions */
|
2014-07-21 17:37:01 +02:00
|
|
|
#if defined(POLARSSL_NET_C) && defined(POLARSSL_HAVE_TIME)
|
2014-04-02 18:42:01 +02:00
|
|
|
#include "polarssl/net.h"
|
|
|
|
#endif
|
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
/*
|
|
|
|
* Busy-waits for the given number of milliseconds.
|
|
|
|
* Used for testing hardclock.
|
|
|
|
*/
|
|
|
|
static void busy_msleep( unsigned long msec )
|
|
|
|
{
|
|
|
|
struct hr_time hires;
|
|
|
|
unsigned long i = 0; /* for busy-waiting */
|
|
|
|
volatile unsigned long j; /* to prevent optimisation */
|
|
|
|
|
|
|
|
(void) get_timer( &hires, 1 );
|
|
|
|
|
|
|
|
while( get_timer( &hires, 0 ) < msec )
|
|
|
|
i++;
|
|
|
|
|
|
|
|
j = i;
|
|
|
|
(void) j;
|
|
|
|
}
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
/*
|
|
|
|
* Checkup routine
|
2014-04-09 09:56:16 +02:00
|
|
|
*
|
|
|
|
* Warning: this is work in progress, some tests may not be reliable enough
|
|
|
|
* yet! False positives may happen.
|
2014-03-27 20:07:08 +01:00
|
|
|
*/
|
|
|
|
int timing_self_test( int verbose )
|
|
|
|
{
|
|
|
|
unsigned long cycles, ratio;
|
|
|
|
unsigned long millisecs, secs;
|
|
|
|
int hardfail;
|
|
|
|
struct hr_time hires;
|
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
if( verbose != 0 )
|
2014-05-28 11:44:20 +02:00
|
|
|
polarssl_printf( " TIMING tests note: will take some time!\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( " TIMING test #1 (m_sleep / get_timer): " );
|
|
|
|
|
|
|
|
for( secs = 1; secs <= 3; secs++ )
|
|
|
|
{
|
|
|
|
(void) get_timer( &hires, 1 );
|
|
|
|
|
2014-08-16 12:45:52 +02:00
|
|
|
m_sleep( (int)( 500 * secs ) );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
millisecs = get_timer( &hires, 0 );
|
|
|
|
|
2014-04-02 18:42:01 +02:00
|
|
|
if( millisecs < 450 * secs || millisecs > 550 * secs )
|
2014-03-27 20:07:08 +01:00
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "failed\n" );
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "passed\n" );
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( " TIMING test #2 (set_alarm / get_timer): " );
|
|
|
|
|
|
|
|
for( secs = 1; secs <= 3; secs++ )
|
|
|
|
{
|
|
|
|
(void) get_timer( &hires, 1 );
|
|
|
|
|
2014-08-16 12:45:52 +02:00
|
|
|
set_alarm( (int) secs );
|
2014-03-27 20:07:08 +01:00
|
|
|
while( !alarmed )
|
|
|
|
;
|
|
|
|
|
|
|
|
millisecs = get_timer( &hires, 0 );
|
|
|
|
|
|
|
|
if( millisecs < 900 * secs || millisecs > 1100 * secs )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "failed\n" );
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "passed\n" );
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2014-05-28 11:44:20 +02:00
|
|
|
polarssl_printf( " TIMING test #3 (hardclock / get_timer): " );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow one failure for possible counter wrapping.
|
|
|
|
* On a 4Ghz 32-bit machine the cycle counter wraps about once per second;
|
|
|
|
* since the whole test is about 10ms, it shouldn't happen twice in a row.
|
|
|
|
*/
|
|
|
|
hardfail = 0;
|
|
|
|
|
|
|
|
hard_test:
|
|
|
|
if( hardfail > 1 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "failed\n" );
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a reference ratio cycles/ms */
|
2014-05-28 11:44:20 +02:00
|
|
|
millisecs = 1;
|
2014-03-27 20:07:08 +01:00
|
|
|
cycles = hardclock();
|
2014-05-28 11:44:20 +02:00
|
|
|
busy_msleep( millisecs );
|
2014-03-27 20:07:08 +01:00
|
|
|
cycles = hardclock() - cycles;
|
2014-05-28 11:44:20 +02:00
|
|
|
ratio = cycles / millisecs;
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
/* Check that the ratio is mostly constant */
|
2014-03-27 20:07:08 +01:00
|
|
|
for( millisecs = 2; millisecs <= 4; millisecs++ )
|
|
|
|
{
|
|
|
|
cycles = hardclock();
|
2014-05-28 11:44:20 +02:00
|
|
|
busy_msleep( millisecs );
|
2014-03-27 20:07:08 +01:00
|
|
|
cycles = hardclock() - cycles;
|
|
|
|
|
|
|
|
/* Allow variation up to 20% */
|
|
|
|
if( cycles / millisecs < ratio - ratio / 5 ||
|
|
|
|
cycles / millisecs > ratio + ratio / 5 )
|
|
|
|
{
|
|
|
|
hardfail++;
|
|
|
|
goto hard_test;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "passed\n" );
|
|
|
|
|
2014-07-21 17:37:01 +02:00
|
|
|
#if defined(POLARSSL_NET_C) && defined(POLARSSL_HAVE_TIME)
|
2014-04-02 18:42:01 +02:00
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( " TIMING test #4 (net_usleep/ get_timer): " );
|
|
|
|
|
|
|
|
for( secs = 1; secs <= 3; secs++ )
|
|
|
|
{
|
|
|
|
(void) get_timer( &hires, 1 );
|
|
|
|
|
|
|
|
net_usleep( 500000 * secs );
|
|
|
|
|
|
|
|
millisecs = get_timer( &hires, 0 );
|
|
|
|
|
|
|
|
if( millisecs < 450 * secs || millisecs > 550 * secs )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "failed\n" );
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "passed\n" );
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* POLARSSL_NET_C */
|
2014-04-02 18:42:01 +02:00
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
if( verbose != 0 )
|
|
|
|
polarssl_printf( "\n" );
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* POLARSSL_SELF_TEST */
|
|
|
|
|
|
|
|
#endif /* POLARSSL_TIMING_C && !POLARSSL_TIMING_ALT */
|