diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-11 01:39:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-11 01:39:55 +0000 |
commit | 6bd316d42b70bddd2340ec6842993751ed25be6a (patch) | |
tree | 239db47917bf1389eb88272c55fa0608430220ec /share | |
parent | bec10fd5952d12d67bdfd36a07ff2be06e0921d9 (diff) |
First shot at an apci(4) man page, derived from dca.4 and the comments in
apci.c.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/man4.hp300/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.hp300/apci.4 | 83 |
2 files changed, 86 insertions, 3 deletions
diff --git a/share/man/man4/man4.hp300/Makefile b/share/man/man4/man4.hp300/Makefile index 83e19c88a99..91b132eeabe 100644 --- a/share/man/man4/man4.hp300/Makefile +++ b/share/man/man4/man4.hp300/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.3 2001/05/11 01:24:19 millert Exp $ +# $OpenBSD: Makefile,v 1.4 2001/05/11 01:39:54 millert Exp $ # from: @(#)Makefile 5.1 (Berkeley) 6/29/90 -MAN= autoconf.4 cons.4 ct.4 dca.4 dcl.4 dcm.4 dv.4 gb.4 grf.4 hd.4 hil.4 \ - intro.4 ite.4 le.4 mem.4 ppi.4 rb.4 tc.4 +MAN= apci.4 autoconf.4 cons.4 ct.4 dca.4 dcl.4 dcm.4 dv.4 gb.4 grf.4 \ + hd.4 hil.4 intro.4 ite.4 le.4 mem.4 ppi.4 rb.4 tc.4 MLINKS= mem.4 kmem.4 MANSUBDIR=/hp300 diff --git a/share/man/man4/man4.hp300/apci.4 b/share/man/man4/man4.hp300/apci.4 new file mode 100644 index 00000000000..cca62d2866c --- /dev/null +++ b/share/man/man4/man4.hp300/apci.4 @@ -0,0 +1,83 @@ +.\" $OpenBSD: apci.4,v 1.1 2001/05/11 01:39:54 millert Exp $ +.\ +.\" Copyright (c) 1990, 1991, 1993 +.\" The Regents of the University of California. All rights reserved. +.\" +.\" This code is derived from software contributed to Berkeley by +.\" the Systems Programming Group of the University of Utah Computer +.\" Science Department. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. All advertising materials mentioning features or use of this software +.\" must display the following acknowledgement: +.\" This product includes software developed by the University of +.\" California, Berkeley and its contributors. +.\" 4. Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" from: @(#)dca.4 8.1 (Berkeley) 6/9/93 +.\" +.Dd May 10, 2001 +.Dt APCI 4 hp300 +.Os +.Sh NAME +.Nm apci +.Nd Apollo utility chip serial communications interface +.Sh SYNOPSIS +.Cd "apci* at frodo? offset ?" +.Sh DESCRIPTION +The Apollo utility chip contains four 8250-like UARTs and is found on +all series 400 machines. +The first UART is used to communicate with the Domain keyboard. +The second is the serial console port when the firmware is in Domain/OS +mode, and is mapped to select code 9 by the HP-UX firmware (except +on 425e models). As such, the second UART is handled by the +.Xr dca 4 +driver on all models but the 425e. +.Pp +There is no tty attached to the first UART as it lacks modem/flow +control and is directly connected to the keyboard connector. +.Pp +Input and output for each line may set to one of following baud rates; +50, 75, 110, 134.5, 150, 300, 600, 1200, 1800, 2400, 4800, 9600, +19200, or 38400. +.Sh FILES +.Bl -tag -width Pa +.It Pa /dev/ttya[0-3] +.It Pa /dev/cuaa[0-3] +.El +.Sh DIAGNOSTICS +.Bl -diag +.It apci%d: silo overflow. +The single-character input +.Dq silo +has overflowed and incoming data has been lost. +.El +.Sh SEE ALSO +.Xr tty 4 +.Sh BUGS +Much of the code in the +.Nm +driver could be shared with the +.Xr dca 4 +driver. |