summaryrefslogtreecommitdiff
path: root/gpxe/src/core/timer.c
blob: 4e047ea722078c6c7de57ef5c61dcf9c69af83ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * core/timer.c
 *
 * Copyright (C) 2007 Alexey Zaytsev <alexey.zaytsev@gmail.com>
 *
 * 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 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <stddef.h>
#include <assert.h>
#include <gpxe/timer.h>

static struct timer ts_table[0]
	__table_start ( struct timer, timers );
static struct timer ts_table_end[0]
	__table_end ( struct timer, timers );

/*
 * This function may be used in custom timer driver.
 *
 * This udelay implementation works well if you've got a
 * fast currticks().
 */
void generic_currticks_udelay ( unsigned int usecs ) {
	tick_t start;
	tick_t elapsed;
	
	start = currticks();
	do {
		/* xxx: Relax the cpu some way. */
		elapsed = ( currticks() - start );
	} while ( elapsed < usecs );
}

/**
 * Identify timer source
 *
 * @ret timer		Timer source
 */
static struct timer * timer ( void ) {
	static struct timer *ts = NULL;

	/* If we have a timer, use it */
	if ( ts )
		return ts;

	/* Scan for a usable timer */
	for ( ts = ts_table ; ts < ts_table_end ; ts++ ) {
		if ( ts->init() == 0 )
			return ts;
	}

	/* No timer found; we cannot continue */
	assert ( 0 );
	while ( 1 ) {};
}

/**
 * Read current time
 *
 * @ret ticks	Current time, in ticks
 */
tick_t currticks ( void ) {
	tick_t ct;

	ct = timer()->currticks();
	DBG ( "currticks: %ld.%06ld seconds\n",
	      ct / USECS_IN_SEC, ct % USECS_IN_SEC );

	return ct;
}

/**
 * Delay
 *
 * @v usecs	Time to delay, in microseconds
 */
void udelay ( unsigned int usecs ) {
	timer()->udelay ( usecs );
}

/**
 * Delay
 *
 * @v msecs	Time to delay, in milliseconds
 */
void mdelay ( unsigned int msecs ) {
	while ( msecs-- )
		udelay ( USECS_IN_MSEC );
}

/**
 * Delay
 *
 * @v secs	Time to delay, in seconds
 */
unsigned int sleep ( unsigned int secs ) {
	while ( secs-- )
		mdelay ( MSECS_IN_SEC );
	return 0;
}