kernpps.html   [plain text]


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<title>PPSAPI Interface for Precision Time Signals</title>
		<link href="scripts/style.css" type="text/css" rel="stylesheet">
	</head>

	<body>
		<h3>PPSAPI Interface for Precision Time Signals</h3>
		<img src="pic/tonea.gif" alt="gif" align="left"><a href="http://www.eecis.udel.edu/%7emills/pictures.html">from <i>NBS Special Publication 432, 1979</i></a> (out of print)
		<p>Last update: <csobj format="ShortTime" h="25" locale="00000409" region="0" t="DateTime" w="61">15:40</csobj> UTC <csobj format="LongDate" h="25" locale="00000409" region="0" t="DateTime" w="250">Sunday, March 02, 2008</csobj></p>
		<br clear="left">
		<h4>Related Links</h4>
		<p>
			<script type="text/javascript" language="javascript" src="scripts/misc.txt"></script>
			<br clear="left">
		</p>
		<hr>
		<h4>Introduction</h4>
		<p>RFC-2783 describes the PPSAPI application programming interface for external precision time signals, such as the pulse-per-second (PPS) signal generated by some radio clocks and cesium oscillators. The PPSAPI provides a generic capability in the ubiquitous Unix kernel which can be used for a wide variety of measurement applications, including network time synchronization and related experiments. The hardware to do this requires only a serial port and a modem control lead, such as the data carrier detect (DCD) lead, which can be driven by an external source via a level converter/pulse generator such as described on the <a href="pps.html">Pulse-per-second (PPS) Signal Interfacing</a> page. In some systems a parallel port can be used for the same purpose.</p>
		<p>The PPSAPI interface defined in RFC-2783 is the only PPS interface supported in NTP Version 4. The PPSAPI is supported in stock FreeBSD and, with the addition of the <tt>PPSkit</tt> kernel module, in Linux.</p>
		<p>The special header file <tt>/usr/include/sys/timepps.h</tt> implements the PPSAPI using whatever primitives are available in each archeticture and operating system. It obsoletes previous APIs based on the <tt>tty_clock</tt> and <tt>ppsclock</tt> line disciplines and streams modules, which are no longer supported.</p>
		<p>The <a href="drivers/driver22.html">PPS Clock Discipline</a> driver (type 22) uses the PPSAPI in conjunction with a local radio clock or remote NTP&nbsp;server as a reference clock. The driver can also use the PPSAPI&nbsp;as an interface directly to the kernel PPS facility as described on the <a href="kern.html">Kernel Model for Precision Timekeeping</a> page.</p>
		<h4>PPSAPI Application Program Interface</h4>
		<p>The PPSAPI interface provides the following functions:</p>
		<dl>
			<dt><tt>time_pps_create</tt>
			<dd>Creates a PPS interface instance and returns a handle to it.
			<dt><tt>time_pps_destroy</tt>
			<dd>Destroys a PPS interface and returns the resources used.
			<dt><tt>time_pps_setparams</tt>
			<dd>Sets the parameters associated with a PPS interface instance, including offsets to be automatically added to captured timestamps.
			<dt><tt>time_pps_getparams</tt>
			<dd>Returns the parameters associated with a PPS interface instance.
			<dt><tt>time_pps_getcap</tt>
			<dd>Returns the capabilities of the current interface and kernel implementation.
			<dt><tt>time_pps_fetch</tt>
			<dd>Returns the current timestamps associated with a PPS interface instance in either nanoseconds and nanoseconds (Unix <tt>timespec</tt>) or seconds and fraction (NTP) format.
			<dt><tt>time_pps_kcbind</tt>
			<dd>If kernel PPS processing is supported, this binds the support to the associated PPS interface instance.
		</dl>
		<p>The entire PPS interface functionality is currently provided by inline code in the <tt>timepps.h</tt> header file. While not all implementations support the full PPSAPI specification, they do support all the functions required for the PPS driver described next. The FreeBSD, Linux and Solaris implementations can be used with the stock kernels provided with those systems; however, the Tru64 and SunOS kernels require additional functions not provided in the stock kernels. Solaris users are cautioned that these functions operate improperly in Solaris versions prior to 2.8 with patch Generic_108528-02. Header files for other systems can be found via the web at <a href="ftp://ftp.udel.edu/pub/ntp/software/nanokernel.tar.gz">nanokernel.tar.gz</a>.</p>
<hr>			<hr>
<script type="text/javascript" language="javascript" src="scripts/footer.txt"></script>
	</body>

</html>