From 461ddc6b40106afab0bdeb7fb186911ada9119ca Mon Sep 17 00:00:00 2001 From: patrick Date: Thu, 10 Nov 2022 13:08:57 +0000 Subject: [PATCH] qcpon(4), qcpwm(4), qcrtc(4) --- share/man/man4/Makefile | 5 +++-- share/man/man4/qcpmic.4 | 8 +++++++- share/man/man4/qcpon.4 | 43 +++++++++++++++++++++++++++++++++++++++++ share/man/man4/qcpwm.4 | 43 +++++++++++++++++++++++++++++++++++++++++ share/man/man4/qcrtc.4 | 43 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 139 insertions(+), 3 deletions(-) create mode 100644 share/man/man4/qcpon.4 create mode 100644 share/man/man4/qcpwm.4 create mode 100644 share/man/man4/qcrtc.4 diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 20912aef4cc..2e3c0f4f499 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.824 2022/11/10 12:57:08 patrick Exp $ +# $OpenBSD: Makefile,v 1.825 2022/11/10 13:08:57 patrick Exp $ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -71,7 +71,8 @@ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ pgt.4 piixpm.4 pijuice.4 pinctrl.4 pipex.4 plgpio.4 plrtc.4 pluart.4 \ pms.4 ppb.4 ppp.4 pppoe.4 pppx.4 psci.4 pty.4 puc.4 pvbus.4 \ pvclock.4 pwdog.4 pwmbl.4 pwmfan.4 pwmreg.4 \ - qcdwusb.4 qcgpio.4 qciic.4 qcpdc.4 qcpmic.4 qcpmicgpio.4 qcspmi.4 \ + qcdwusb.4 qcgpio.4 qciic.4 qcpdc.4 qcpmic.4 qcpmicgpio.4 qcpon.4 \ + qcpwm.4 qcrtc.4 qcspmi.4 \ qla.4 qle.4 qlw.4 qsphy.4 \ radio.4 ral.4 random.4 rdomain.4 rd.4 rdac.4 re.4 rdcphy.4 rgephy.4 \ rge.4 ricohrtc.4 rkanxdp.4 rkclock.4 rkdrm.4 rkdwhdmi.4 rkdwusb.4 \ diff --git a/share/man/man4/qcpmic.4 b/share/man/man4/qcpmic.4 index 5c015e5fd40..693e745b874 100644 --- a/share/man/man4/qcpmic.4 +++ b/share/man/man4/qcpmic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: qcpmic.4,v 1.1 2022/11/10 12:57:08 patrick Exp $ +.\" $OpenBSD: qcpmic.4,v 1.2 2022/11/10 13:08:57 patrick Exp $ .\" .\" Copyright (c) 2022 Patrick Wildt .\" @@ -23,6 +23,9 @@ .Sh SYNOPSIS .Cd "qcpmic* at qcspmi?" .Cd "qcpmicgpio* at qcpmic?" +.Cd "qcpon* at qcpmic?" +.Cd "qcpwm* at qcpmic?" +.Cd "qcrtc* at qcpmic?" .Sh DESCRIPTION The .Nm @@ -33,6 +36,9 @@ implemented in the children attaching to this driver. .Sh SEE ALSO .Xr qcspmi 4 , .Xr qcpmicgpio 4 , +.Xr qcpon 4 , +.Xr qcpwm 4 , +.Xr qcrtc 4 , .Xr intro 4 .Sh HISTORY The diff --git a/share/man/man4/qcpon.4 b/share/man/man4/qcpon.4 new file mode 100644 index 00000000000..2bd24bd5403 --- /dev/null +++ b/share/man/man4/qcpon.4 @@ -0,0 +1,43 @@ +.\" $OpenBSD: qcpon.4,v 1.1 2022/11/10 13:08:57 patrick Exp $ +.\" +.\" Copyright (c) 2022 Patrick Wildt +.\" +.\" 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: November 10 2022 $ +.Dt QCPON 4 +.Os +.Sh NAME +.Nm qcpon +.Nd Qualcomm PON controller +.Sh SYNOPSIS +.Cd "qcpon* at qcpmic?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the PON controllers integrated on various +Qualcomm Snapdragon SoCs. This controller contains the power button. +.Sh SEE ALSO +.Xr qcpmic 4 , +.Xr intro 4 +.Sh HISTORY +The +.Nm +device driver first appeared in +.Ox 7.3 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Patrick Wildt Aq Mt patrick@blueri.se . diff --git a/share/man/man4/qcpwm.4 b/share/man/man4/qcpwm.4 new file mode 100644 index 00000000000..5b1affb4d50 --- /dev/null +++ b/share/man/man4/qcpwm.4 @@ -0,0 +1,43 @@ +.\" $OpenBSD: qcpwm.4,v 1.1 2022/11/10 13:08:57 patrick Exp $ +.\" +.\" Copyright (c) 2022 Patrick Wildt +.\" +.\" 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: November 10 2022 $ +.Dt QCPWM 4 +.Os +.Sh NAME +.Nm qcpwm +.Nd Qualcomm PWM controller +.Sh SYNOPSIS +.Cd "qcpwm* at qcpmic?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the PWM controllers integrated on various +Qualcomm Snapdragon SoCs. +.Sh SEE ALSO +.Xr qcpmic 4 , +.Xr intro 4 +.Sh HISTORY +The +.Nm +device driver first appeared in +.Ox 7.3 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Patrick Wildt Aq Mt patrick@blueri.se . diff --git a/share/man/man4/qcrtc.4 b/share/man/man4/qcrtc.4 new file mode 100644 index 00000000000..0a41b4beb6b --- /dev/null +++ b/share/man/man4/qcrtc.4 @@ -0,0 +1,43 @@ +.\" $OpenBSD: qcrtc.4,v 1.1 2022/11/10 13:08:57 patrick Exp $ +.\" +.\" Copyright (c) 2022 Patrick Wildt +.\" +.\" 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: November 10 2022 $ +.Dt QCRTC 4 +.Os +.Sh NAME +.Nm qcrtc +.Nd Qualcomm real-time clock +.Sh SYNOPSIS +.Cd "qcrtc* at qcpmic?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the RTC integrated on various Qualcomm +Snapdragon SoCs. +.Sh SEE ALSO +.Xr qcpmic 4 , +.Xr intro 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 7.3 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Patrick Wildt Aq Mt patrick@blueri.se . -- 2.20.1