diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2021-05-28 04:49:45 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2021-05-28 04:49:45 +0000 |
commit | 510e9bbacb3dc7406d8380b7480ecd31dcb7cef1 (patch) | |
tree | 9945b280632a56f917fbd226ec2d9e282da38652 | |
parent | ea5afbe6f9fc9b6848ee90af90f18d75a5e864b8 (diff) |
first cut at manpages for aplns(4)
-rw-r--r-- | share/man/man4/man4.arm64/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.arm64/aplns.4 | 38 | ||||
-rw-r--r-- | share/man/man4/nvme.4 | 6 |
3 files changed, 45 insertions, 5 deletions
diff --git a/share/man/man4/man4.arm64/Makefile b/share/man/man4/man4.arm64/Makefile index 63ca736fd42..e04d5898c03 100644 --- a/share/man/man4/man4.arm64/Makefile +++ b/share/man/man4/man4.arm64/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.14 2021/02/27 16:26:41 kettenis Exp $ +# $OpenBSD: Makefile,v 1.15 2021/05/28 04:49:44 dlg Exp $ -MAN= agtimer.4 ampintc.4 apldart.4 apldog.4 aplintc.4 aplpcie.4 apm.4 \ - efi.4 intro.4 smbios.4 +MAN= agtimer.4 ampintc.4 apldart.4 apldog.4 aplintc.4 aplns.4 aplpcie.4 \ + apm.4 efi.4 intro.4 smbios.4 MANSUBDIR=arm64 diff --git a/share/man/man4/man4.arm64/aplns.4 b/share/man/man4/man4.arm64/aplns.4 new file mode 100644 index 00000000000..a6721f2814d --- /dev/null +++ b/share/man/man4/man4.arm64/aplns.4 @@ -0,0 +1,38 @@ +.\" $OpenBSD: aplns.4,v 1.1 2021/05/28 04:49:44 dlg Exp $ +.\" +.\" Copyright (c) 2021 David Gwynne <dlg@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: May 28 2021 $ +.Dt APLNS 4 arm64 +.Os +.Sh NAME +.Nm aplns +.Nd Apple NVME Storage controller +.Sh SYNOPSIS +.Cd "aplns* at fdt?" +.Cd "nvme* at aplns?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the NVME Storage controller found on +various Apple SoCs. +.Sh SEE ALSO +.Xr intro 4 , +.Xr nvme 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 7.0 . diff --git a/share/man/man4/nvme.4 b/share/man/man4/nvme.4 index ebc29dff4ce..a934d0c661a 100644 --- a/share/man/man4/nvme.4 +++ b/share/man/man4/nvme.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: nvme.4,v 1.2 2016/04/14 11:53:37 jmc Exp $ +.\" $OpenBSD: nvme.4,v 1.3 2021/05/28 04:49:44 dlg Exp $ .\" .\" Copyright (c) 2016 David Gwynne <dlg@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: April 14 2016 $ +.Dd $Mdocdate: May 28 2021 $ .Dt NVME 4 .Os .Sh NAME @@ -22,6 +22,7 @@ .Nd Non-Volatile Memory Host Controller Interface .Sh SYNOPSIS .Cd "nvme* at pci?" +.Cd "nvme* at aplns? # arm64" .Sh DESCRIPTION The .Nm @@ -33,6 +34,7 @@ Although the NVMe specification provides its own command set, the .Nm driver provides access to the storage via a SCSI translation layer. .Sh SEE ALSO +.Xr aplns 4 , .Xr intro 4 , .Xr pci 4 , .Xr scsi 4 |