diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2016-11-17 15:06:17 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2016-11-17 15:06:17 +0000 |
commit | 078208c3be1d6690a7ab138d4144166ab6fb86f4 (patch) | |
tree | fcb917fead8a0b42253a237918c2fc6bb9252259 /share | |
parent | 2bd0bc65b363ffa61e4d152ba63e03d897dbb312 (diff) |
Add htb(4) and leioc(4).
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/man4.loongson/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.loongson/htb.4 | 39 | ||||
-rw-r--r-- | share/man/man4/man4.loongson/leioc.4 | 68 |
3 files changed, 110 insertions, 3 deletions
diff --git a/share/man/man4/man4.loongson/Makefile b/share/man/man4/man4.loongson/Makefile index 9bb8c92e526..6e133c04f62 100644 --- a/share/man/man4/man4.loongson/Makefile +++ b/share/man/man4/man4.loongson/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.9 2016/03/30 06:38:44 jmc Exp $ +# $OpenBSD: Makefile,v 1.10 2016/11/17 15:06:16 visa Exp $ -MAN= apm.4 autoconf.4 bonito.4 gdiumiic.4 glxclk.4 glxpcib.4 intro.4 \ - mem.4 mfokclock.4 sisfb.4 smfb.4 stsec.4 voyager.4 ykbec.4 +MAN= apm.4 autoconf.4 bonito.4 gdiumiic.4 glxclk.4 glxpcib.4 htb.4 intro.4 \ + leioc.4 mem.4 mfokclock.4 sisfb.4 smfb.4 stsec.4 voyager.4 ykbec.4 MANSUBDIR=loongson .include <bsd.prog.mk> diff --git a/share/man/man4/man4.loongson/htb.4 b/share/man/man4/man4.loongson/htb.4 new file mode 100644 index 00000000000..b9d0874b6f6 --- /dev/null +++ b/share/man/man4/man4.loongson/htb.4 @@ -0,0 +1,39 @@ +.\" $OpenBSD: htb.4,v 1.1 2016/11/17 15:06:16 visa Exp $ +.\" +.\" Copyright (c) 2016 Visa Hankala +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: November 17 2016 $ +.Dt HTB 4 loongson +.Os +.Sh NAME +.Nm htb +.Nd PCI host bridge +.Sh SYNOPSIS +.Cd "htb* at mainbus0" +.Cd "pci* at htb?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the +.Xr pci 4 +bus on Loongson 3A systems. +.Sh SEE ALSO +.Xr mainbus 4 , +.Xr pci 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.1 . diff --git a/share/man/man4/man4.loongson/leioc.4 b/share/man/man4/man4.loongson/leioc.4 new file mode 100644 index 00000000000..20c2b132dec --- /dev/null +++ b/share/man/man4/man4.loongson/leioc.4 @@ -0,0 +1,68 @@ +.\" $OpenBSD: leioc.4,v 1.1 2016/11/17 15:06:16 visa Exp $ +.\" +.\" Copyright (c) 2016 Visa Hankala +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: November 17 2016 $ +.Dt LEIOC 4 loongson +.Os +.Sh NAME +.Nm leioc +.Nd Loongson 3A low-end IO controller +.Sh SYNOPSIS +.Cd "leioc* at mainbus0" +.Cd "com* at leioc?" +.Sh DESCRIPTION +The +.Nm +driver supports the low-end IO controller present in Loongson 3A CPU packages. +.Pp +The controller provides several IO interfaces: +.Pp +.Bl -dash -compact -offset indent +.It +a conventional +.Xr pci 4 +bus +.It +a Low Pin Count +.Pq LPC +bus +.It +a Serial Peripheral Interface +.Pq SPI +bus +.It +16 +.Xr gpio 4 +pins +.It +two +.Xr com 4 +interfaces +.El +.Pp +Currently, only the +.Xr com 4 +interfaces are supported by the +.Nm +driver. +.Sh SEE ALSO +.Xr com 4 , +.Xr mainbus 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.1 . |