[BACK]Return to getsecs.c CVS log [TXT][DIR] Up to [local] / sys / arch / alpha / stand / netboot

File: [local] / sys / arch / alpha / stand / netboot / getsecs.c (download)

Revision 1.1, Tue Mar 4 16:04:49 2008 UTC (16 years, 3 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: getsecs.c,v 1.2 1996/11/27 19:54:55 niklas Exp $	*/

#include <sys/param.h>
#include "include/rpb.h"
#include "include/prom.h"

int
getsecs()
{
	static long tnsec;
	static long lastpcc, wrapsecs;
	long curpcc, pccdiff;

	if (tnsec == 0) {
		tnsec = 1;
		lastpcc = alpha_rpcc() & 0xffffffff;
		wrapsecs = (0xffffffff /
		    ((struct rpb *)HWRPB_ADDR)->rpb_cc_freq) + 1;

#if 0
		printf("getsecs: cc freq = %d, time to wrap = %d\n",
		    ((struct rpb *)HWRPB_ADDR)->rpb_cc_freq, wrapsecs);
#endif
	}

	curpcc = alpha_rpcc() & 0xffffffff;
	if (curpcc < lastpcc)
		curpcc += 0x100000000;

	tnsec += ((curpcc - lastpcc) * 1000000000) / ((struct rpb *)HWRPB_ADDR)->rpb_cc_freq;
	lastpcc = curpcc;

	return (tnsec / 1000000000);
}