diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2019-09-07 14:00:33 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2019-09-07 14:00:33 +0000 |
commit | c99661d40e5d2e0c918f4f84be5583b7d437afd3 (patch) | |
tree | 446e66d2cb05b48eac2c0d885d1793046da8fd81 /share | |
parent | 6d303dff98ce2e852a5184c325341d8a118f6291 (diff) |
Add a manual page for octpcie(4).
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/man4.octeon/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.octeon/octpcie.4 | 52 |
2 files changed, 55 insertions, 3 deletions
diff --git a/share/man/man4/man4.octeon/Makefile b/share/man/man4/man4.octeon/Makefile index bb38f0f6fd7..a99815f3340 100644 --- a/share/man/man4/man4.octeon/Makefile +++ b/share/man/man4/man4.octeon/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.17 2019/04/25 16:47:56 denis Exp $ +# $OpenBSD: Makefile,v 1.18 2019/09/07 14:00:32 visa Exp $ MAN= amdcf.4 cnmac.4 octcf.4 octcib.4 octcit.4 octciu.4 \ - octcrypto.4 octgpio.4 \ - octiic.4 octmmc.4 octrng.4 octrtc.4 octsctl.4 octuctl.4 octxctl.4 + octcrypto.4 octgpio.4 octiic.4 octmmc.4 octpcie.4 \ + octrng.4 octrtc.4 octsctl.4 octuctl.4 octxctl.4 MANSUBDIR=octeon diff --git a/share/man/man4/man4.octeon/octpcie.4 b/share/man/man4/man4.octeon/octpcie.4 new file mode 100644 index 00000000000..af6ab7ad5a7 --- /dev/null +++ b/share/man/man4/man4.octeon/octpcie.4 @@ -0,0 +1,52 @@ +.\" $OpenBSD: octpcie.4,v 1.1 2019/09/07 14:00:32 visa Exp $ +.\" +.\" Copyright (c) 2019 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: September 7 2019 $ +.Dt OCTPCIE 4 octeon +.Os +.Sh NAME +.Nm octpcie +.Nd OCTEON PCIe controller +.Sh SYNOPSIS +.Cd "octpcie* at iobus?" +.Cd "pci* at octpcie?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the OCTEON PCIe controller found +on OCTEON II and III. +It provides a host interface to the +.Xr pci 4 +bus. +.Sh DIAGNOSTICS +.Bl -diag +.It "octpcie0 port N: link timeout" +The PCIe link did not establish. +This happens if the PCIe slot is empty. +.It "octpcie0 port N: not in host mode" +The PCIe port is not in host mode and is ignored by the driver. +.It "octpcie0 port N: reset timeout" +The PCIe port failed to reset. +This can happen if the PCIe port has not been wired. +.El +.Sh SEE ALSO +.Xr intro 4 , +.Xr pci 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.6 . |