summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorVisa Hankala <visa@cvs.openbsd.org>2022-02-16 13:07:37 +0000
committerVisa Hankala <visa@cvs.openbsd.org>2022-02-16 13:07:37 +0000
commitbca83fd5103112938de123de8c808b07c00b261d (patch)
tree832db565c75a16eb2e9b622426a41b37a8d35968 /share
parentae7c5baf4f91b9c178c50b1447cded19639991fe (diff)
Add mpfiic(4), a driver for the PolarFire SoC MSS I2C controller.
OK kettenis@
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/iic.47
-rw-r--r--share/man/man4/man4.riscv64/Makefile4
-rw-r--r--share/man/man4/man4.riscv64/mpfiic.440
3 files changed, 47 insertions, 4 deletions
diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4
index 46d652cb3cd..d0c9bc38cb7 100644
--- a/share/man/man4/iic.4
+++ b/share/man/man4/iic.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.4,v 1.122 2021/12/24 07:05:55 jmc Exp $
+.\" $OpenBSD: iic.4,v 1.123 2022/02/16 13:07:36 visa Exp $
.\"
.\" Copyright (c) 2004, 2006 Alexander Yurchenko <grange@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: December 24 2021 $
+.Dd $Mdocdate: February 16 2022 $
.Dt IIC 4
.Os
.Sh NAME
@@ -48,6 +48,7 @@
.Cd "iic* at mviic? # arm64"
.Cd "iic* at rkiic? # arm64 armv7"
.Cd "iic* at sxitwi? # arm64 armv7"
+.Cd "iic* at mpfiic? # riscv64"
.Cd "iic* at ociic? # riscv64"
.Sh DESCRIPTION
.Tn I2C
@@ -113,6 +114,8 @@ Intel ICH SMBus controller
Freescale i.MX I2C controller
.It Xr kiic 4
Apple Kauai I2C controller
+.It Xr mpfiic 4
+Microchip PolarFire SoC MSS I2C controller
.It Xr mviic 4
Marvell Armada 3700 I2C Controller
.It Xr nviic 4
diff --git a/share/man/man4/man4.riscv64/Makefile b/share/man/man4/man4.riscv64/Makefile
index 058e3cbe11c..4b5e28d66d0 100644
--- a/share/man/man4/man4.riscv64/Makefile
+++ b/share/man/man4/man4.riscv64/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.4 2022/01/05 03:32:43 visa Exp $
+# $OpenBSD: Makefile,v 1.5 2022/02/16 13:07:36 visa Exp $
-MAN= intro.4 mpfclock.4 plic.4 sfcc.4 sfclock.4 sfuart.4
+MAN= intro.4 mpfclock.4 mpfiic.4 plic.4 sfcc.4 sfclock.4 sfuart.4
MANSUBDIR=riscv64
diff --git a/share/man/man4/man4.riscv64/mpfiic.4 b/share/man/man4/man4.riscv64/mpfiic.4
new file mode 100644
index 00000000000..4f16e31a8e1
--- /dev/null
+++ b/share/man/man4/man4.riscv64/mpfiic.4
@@ -0,0 +1,40 @@
+.\" $OpenBSD: mpfiic.4,v 1.1 2022/02/16 13:07:36 visa Exp $
+.\"
+.\" Copyright (c) 2022 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: February 16 2022 $
+.Dt MPFIIC 4 riscv64
+.Os
+.Sh NAME
+.Nm mpfiic
+.Nd Microchip PolarFire SoC MSS I2C controller
+.Sh SYNOPSIS
+.Cd "mpfiic* at fdt?"
+.Cd "iic* at mpfiic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver supports the Microchip PolarFire SoC MSS I2C controller
+for use with the
+.Xr iic 4
+framework.
+.Sh SEE ALSO
+.Xr iic 4 ,
+.Xr intro 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 7.1 .