summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2022-09-12 15:49:37 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2022-09-12 15:49:37 +0000
commit203d46c6679836e9c65b9ee38820d96fe1acc0b3 (patch)
tree9ba8e7ab5831f0a7f95b7508d6e39f73f946d355
parentd15adc52994cc1a42056b99b66c0af44d86a19b3 (diff)
qcgpio(4) and qciic(4)
-rw-r--r--share/man/man4/acpi.48
-rw-r--r--share/man/man4/iic.47
-rw-r--r--share/man/man4/man4.arm64/qcgpio.445
-rw-r--r--share/man/man4/man4.arm64/qciic.446
4 files changed, 102 insertions, 4 deletions
diff --git a/share/man/man4/acpi.4 b/share/man/man4/acpi.4
index 43a4b85a2be..3996e88a204 100644
--- a/share/man/man4/acpi.4
+++ b/share/man/man4/acpi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: acpi.4,v 1.67 2021/09/08 20:29:21 jmc Exp $
+.\" $OpenBSD: acpi.4,v 1.68 2022/09/12 15:49:36 kettenis Exp $
.\"
.\" Copyright (c) 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: September 8 2021 $
+.Dd $Mdocdate: September 12 2022 $
.Dt ACPI 4
.Os
.Sh NAME
@@ -118,6 +118,10 @@ Intel Gemini Lake GPIO controller
i.MX onboard I2C controller
.It Xr pchgpio 4
Intel PCH GPIO controller
+.It Xr qcgpio 4
+Qualcomm Snapdragon GPIO controller
+.It Xr qciic(4)
+Qualcomm Snapdragon GENI I2C controller
.It Xr tpm 4
Trusted Platform Module device
.El
diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4
index 962310f09d3..acee610cd70 100644
--- a/share/man/man4/iic.4
+++ b/share/man/man4/iic.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.4,v 1.126 2022/08/06 12:09:59 jsg Exp $
+.\" $OpenBSD: iic.4,v 1.127 2022/09/12 15:49:36 kettenis 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: August 6 2022 $
+.Dd $Mdocdate: September 12 2022 $
.Dt IIC 4
.Os
.Sh NAME
@@ -47,6 +47,7 @@
.Cd "iic* at imxiic? # arm64 armv7"
.Cd "iic* at mviic? # arm64"
.Cd "iic* at rkiic? # arm64 armv7"
+.Cd "iic* at qciic? # arm64
.Cd "iic* at sxitwi? # arm64 armv7"
.Cd "iic* at mpfiic? # riscv64"
.Cd "iic* at ociic? # riscv64"
@@ -132,6 +133,8 @@ Apple via-pmu I2C controller
Intel PIIX SMBus controller
.It Xr rkiic 4
Rockchip I2C controller
+.It Xr qciic 4
+Qualcomm Snapdragon GENI I2C controller
.It Xr smu 4
Apple System Management Unit
.It Xr sxitwi 4
diff --git a/share/man/man4/man4.arm64/qcgpio.4 b/share/man/man4/man4.arm64/qcgpio.4
new file mode 100644
index 00000000000..db9ab50234d
--- /dev/null
+++ b/share/man/man4/man4.arm64/qcgpio.4
@@ -0,0 +1,45 @@
+.\" $OpenBSD: qcgpio.4,v 1.1 2022/09/12 15:49:36 kettenis Exp $
+.\"
+.\" Copyright (c) 2022 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: September 12 2022 $
+.Dt QCGPIO 4
+.Os
+.Sh NAME
+.Nm qcgpio
+.Nd Qualcomm Snapdragon GPIO controller
+.Sh SYNOPSIS
+.Cd "qcgpio* at acpi?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for the GPIO controller found on Qualcomm
+Snapdragon SoCs.
+It does not provide direct device driver entry points but makes its
+functions available to
+.Xr acpi 4 .
+.Sh SEE ALSO
+.Xr acpi 4 ,
+.Xr intro 4
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 7.2 .
+.Sh AUTHORS
+The
+.Nm
+driver was written by
+.An Mark Kettenis Aq Mt kettenis@openbsd.org .
diff --git a/share/man/man4/man4.arm64/qciic.4 b/share/man/man4/man4.arm64/qciic.4
new file mode 100644
index 00000000000..d7fc6c748cd
--- /dev/null
+++ b/share/man/man4/man4.arm64/qciic.4
@@ -0,0 +1,46 @@
+.\" $OpenBSD: qciic.4,v 1.1 2022/09/12 15:49:36 kettenis Exp $
+.\"
+.\" Copyright (c) 2016 Jonathan Gray <jsg@openbsd.org>
+.\" Copyright (c) 2022 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: September 12 2022 $
+.Dt QCIIC 4
+.Os
+.Sh NAME
+.Nm qciic
+.Nd Qualcomm Snapdragon GENI I2C controller
+.Sh SYNOPSIS
+.Cd "qciic* at acpi?"
+.Cd "iic* at qciic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver supports the GENI I2C controller found on Qualcomm Snapdragon
+SoCs for use with the
+.Xr iic 4
+framework.
+.Sh SEE ALSO
+.Xr acpi 4 ,
+.Xr iic 4
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 7.2 .
+.Sh AUTHORS
+The
+.Nm
+driver was written by
+.An Mark Kettenis Aq Mt kettenis@openbsd.org .