diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-07 10:25:43 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-07 10:25:43 +0000 |
commit | 235cb4fb101d3686aa90a331099ff8de0ba3e693 (patch) | |
tree | 25c3ee039b003786deb8ba888b52030a759c9c28 /share/man | |
parent | f88ed21d957ecf3e8c86fdd6b9d90b6dd83731d9 (diff) |
I'm really bored: acpi(4) and acpitimer(4) man pages...
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/Makefile | 5 | ||||
-rw-r--r-- | share/man/man4/acpi.4 | 65 | ||||
-rw-r--r-- | share/man/man4/acpitimer.4 | 46 |
3 files changed, 114 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index b85f6976a6e..364b5ec2562 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.332 2006/01/04 01:37:33 dlg Exp $ +# $OpenBSD: Makefile,v 1.333 2006/01/07 10:25:42 grange Exp $ -MAN= aac.4 ac97.4 acphy.4 adc.4 addcom.4 admcts.4 admlc.4 admtemp.4 \ +MAN= aac.4 ac97.4 acphy.4 acpi.4 acpitimer.4 \ + adc.4 addcom.4 admcts.4 admlc.4 admtemp.4 \ admtm.4 admtmp.4 admtt.4 adt.4 adv.4 aha.4 ahb.4 ahc.4 ahd.4 aic.4 \ alipm.4 amdiic.4 amdpm.4 ami.4 amphy.4 an.4 aps.4 aria.4 art.4 \ asbtm.4 ast.4 atalk.4 atapiscsi.4 ath.4 atu.4 atw.4 audio.4 aue.4 \ diff --git a/share/man/man4/acpi.4 b/share/man/man4/acpi.4 new file mode 100644 index 00000000000..b96a15e4a05 --- /dev/null +++ b/share/man/man4/acpi.4 @@ -0,0 +1,65 @@ +.\" $OpenBSD: acpi.4,v 1.1 2006/01/07 10:25:42 grange Exp $ +.\" +.\" Copyright (c) 2006 Alexander Yurchenko <grange@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 January 7, 2006 +.Dt ACPI 4 +.Os +.Sh NAME +.Nm acpi +.Nd Advanced Configuration and Power Interface +.Sh SYNOPSIS +.Cd "acpi0 at mainbus?" +.Pp +.Cd "option ACPIVERBOSE" +.Cd "option ACPI_ENABLE" +.Sh DESCRIPTION +The +.Nm +driver provides basic support for the ACPI including loading ACPI tables from +the firmware, parsing and interpreting AML code, events handling, +suspending and powering off, attaching device drivers. +.Pp +If configuration option +.Dq Dv ACPIVERBOSE +is set the information about all found ACPI devices will be displayed on boot. +.Pp +If configuration option +.Dq Dv ACPI_ENABLE +is set the +.Nm +driver will take over the ACPI control. +WARNING: this may cause an overheating on some machines since the +.Nm +doesn't provide any thermal and cooling control. +.Sh SUPPORTED DEVICES +.Bl -tag -width 12n -offset ind -compact +.It Xr acpitimer 4 +ACPI power management timer +.El +.Sh SEE ALSO +.Xr acpitimer 4 , +.Xr intro 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 3.8 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Thorsten Lockert Aq tholo@sigmasoft.com . diff --git a/share/man/man4/acpitimer.4 b/share/man/man4/acpitimer.4 new file mode 100644 index 00000000000..6ec12076873 --- /dev/null +++ b/share/man/man4/acpitimer.4 @@ -0,0 +1,46 @@ +.\" $OpenBSD: acpitimer.4,v 1.1 2006/01/07 10:25:42 grange Exp $ +.\" +.\" Copyright (c) 2006 Alexander Yurchenko <grange@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 January 7, 2006 +.Dt ACPITIMER 4 +.Os +.Sh NAME +.Nm acpitimer +.Nd ACPI power management timer +.Sh SYNOPSIS +.Cd "acpitimer* at acpi?" +.Sh DESCRIPTION +The +.Nm +driver allows to access a power management timer through the ACPI. +The timer is used as a timecounter for the +.Xr tc_init 9 +framework. +.Sh SEE ALSO +.Xr acpi 4 , +.Xr intro 4 , +.Xr tc_init 9 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 3.8 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Thorsten Lockert Aq tholo@sigmasoft.com . |