From owner-cvs-src@FreeBSD.ORG Thu Sep 11 16:06:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DD6816A4BF; Thu, 11 Sep 2003 16:06:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C490843FDF; Thu, 11 Sep 2003 16:06:42 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h8BN6g0U052988; Thu, 11 Sep 2003 16:06:42 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h8BN6goj052987; Thu, 11 Sep 2003 16:06:42 -0700 (PDT) Message-Id: <200309112306.h8BN6goj052987@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 11 Sep 2003 16:06:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES options src/sys/dev/uart uart_bus.h uart_core.c uart_tty.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Sep 2003 23:06:43 -0000 marcel 2003/09/11 16:06:42 PDT FreeBSD src repository Modified files: sys/conf NOTES options sys/dev/uart uart_bus.h uart_core.c uart_tty.c Log: Add support for using uart(4) for pulse capturing for the Pulse Per Second (PPS) timing interface. The support is non-optional and by default uses the DCD line signal as the pulse input. A compile-time option (UART_PPS_ON_CTS) can be used to have uart(4) use the CTS line signal. Include in uart_bus.h to avoid having to add the inclusion of that header in all source files. Reviewed by: phk Revision Changes Path 1.1175 +4 -0 src/sys/conf/NOTES 1.414 +3 -0 src/sys/conf/options 1.2 +17 -0 src/sys/dev/uart/uart_bus.h 1.2 +12 -0 src/sys/dev/uart/uart_core.c 1.2 +9 -2 src/sys/dev/uart/uart_tty.c