summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2018-03-29 18:23:11 +0000
committerkettenis <kettenis@openbsd.org>2018-03-29 18:23:11 +0000
commite30a3632401c0aa888c86b54d23dd894cad9c0fd (patch)
tree367914887be960685ea525886594355078d8cdde
parentAdd mvrtc(4), a driver for the RTC integrated on various Marvell Armada SoCs. (diff)
downloadwireguard-openbsd-e30a3632401c0aa888c86b54d23dd894cad9c0fd.tar.xz
wireguard-openbsd-e30a3632401c0aa888c86b54d23dd894cad9c0fd.zip
mvrtc(4)
-rw-r--r--share/man/man4/Makefile5
-rw-r--r--share/man/man4/mvrtc.441
2 files changed, 44 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index a512595e1c3..0a19ffd19df 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.666 2018/02/24 14:10:36 kettenis Exp $
+# $OpenBSD: Makefile,v 1.667 2018/03/29 18:23:11 kettenis Exp $
MAN= aac.4 ac97.4 acphy.4 acrtc.4 \
acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \
@@ -40,7 +40,8 @@ MAN= aac.4 ac97.4 acphy.4 acrtc.4 \
maestro.4 mainbus.4 malo.4 maxds.4 maxrtc.4 maxtmp.4 mbg.4 midi.4 \
mii.4 mfi.4 \
mfii.4 mlphy.4 mobileip.4 moscom.4 mos.4 mpe.4 mpath.4 mpi.4 mpii.4 \
- mpu.4 msk.4 mpw.4 msts.4 mtd.4 mtdphy.4 multicast.4 mtio.4 myx.4 \
+ mpu.4 msk.4 mpw.4 msts.4 mtd.4 mtdphy.4 multicast.4 mtio.4 \
+ mvrtc.4 myx.4 \
ne.4 neo.4 nep.4 netintro.4 nfe.4 nge.4 nmea.4 \
nsclpcsio.4 nsgphy.4 nsphy.4 nsphyter.4 null.4 nviic.4 nvme.4 nvt.4 \
oce.4 ohci.4 options.4 onewire.4 oosiop.4 osiop.4 otus.4 \
diff --git a/share/man/man4/mvrtc.4 b/share/man/man4/mvrtc.4
new file mode 100644
index 00000000000..051196793a6
--- /dev/null
+++ b/share/man/man4/mvrtc.4
@@ -0,0 +1,41 @@
+.\" $OpenBSD: mvrtc.4,v 1.1 2018/03/29 18:23:11 kettenis Exp $
+.\"
+.\" Copyright (c) 2018 Mark Kettenis <kettenis@openbsd.org>
+.\"
+.\" 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: March 29 2018 $
+.Dt MVRTC 4
+.Os
+.Sh NAME
+.Nm mvrtc
+.Nd Marvell Armada Real Time Clock
+.Sh SYNOPSIS
+.Cd "mvrtc* at fdt?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for the RTC found on Marvell Armada SoCs.
+.Sh SEE ALSO
+.Xr intro 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 6.3 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Mark Kettenis Aq Mt kettenis@openbsd.org .