diff options
author | marcel <marcel@FreeBSD.org> | 2003-09-24 05:17:06 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-09-24 05:17:06 +0000 |
commit | 62aa772f501399c5f216fd4a1e11aea09ce877aa (patch) | |
tree | deceb8c372c8c6e5d3284c73843399ca97ec3d29 /share | |
parent | 1108c6ed8bd6078fa1ef915ae795523465316002 (diff) | |
download | FreeBSD-src-62aa772f501399c5f216fd4a1e11aea09ce877aa.zip FreeBSD-src-62aa772f501399c5f216fd4a1e11aea09ce877aa.tar.gz |
Add a manpage for BUS_CONFIG_INTR.
Reminded by: eivind
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/BUS_CONFIG_INTR.9 | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/share/man/man9/BUS_CONFIG_INTR.9 b/share/man/man9/BUS_CONFIG_INTR.9 new file mode 100644 index 0000000..05cd374 --- /dev/null +++ b/share/man/man9/BUS_CONFIG_INTR.9 @@ -0,0 +1,104 @@ +.\" Copyright (c) 2003 Marcel Moolenaar +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd September 23, 2003 +.Dt BUS_CONFIG_INTR 9 +.Os +.\" +.Sh NAME +.Nm BUS_CONFIG_INTR +.Nd Configure interrupt polarity and trigger mode +.\" +.Sh SYNOPSIS +.In sys/param.h +.In sys/bus.h +.Ft int +.Fn BUS_CONFIG_INTR "device_t dev" "int irq" "enum intr_trigger trig" "enum intr_polarity pol" +.\" +.Sh DESCRIPTION +The +.Nm +method allows bus or device drivers to provide interrupt polarity and trigger +mode to parent busses. +This typically bubbles all the way up to the root bus (e.g. nexus) where the +necessary actions are taken to actually program the hardware. +Since the +.Nm +method takes an interrupt number, it is assumed but not necessarily required +that it is called prior to +.Xr BUS_SETUP_INTR 9 . +.Pp +The +.Fa trig +argument can be one of +.Bl -tag -width INTR_TRIGGER_CONFORM +.It Dv INTR_TRIGGER_CONFORM +The interrupt trigger mode is standard for the bus to which the device is +attached. +.It Dv INTR_TRIGGER_EDGE +The interrupt is edge triggered. +This means that the interrupt is raised by the rising edge of the signal on +the interrupt line. +The signal typically revert to the original state so as to cause a spike. +.Dv INTR_TRIGGER_LEVEL +The interrupt is level triggered. +This means that the interrupt is raised when the signal on the interrupt line +transitions and remains unchanged after that until the interrupt has been +serviced, after which the signal transitions back. +.El +.Pp +The +.Fa pol +argument can be any one of +.Bl -tag -width INTR_POLARITY_CONFORM +.It Dv INTR_POLARITY_CONFORM +The interrupt polarity is standard for the bus to which the device is attached. +.It Dv INTR_POLARITY_HIGH +The interrupt is activated by a high voltage on the interrupt line. +.It Dv INTR_POLARITY_LOW +The interrupt is activated by a low voltage on the interrupt line. +.El +.\" +.Sh RETURN VALUES +Zero is returned on success, otherwise an appropriate error is returned. +.\" +.Sh SEE ALSO +.Xr BUS_SETUP_INTR 9 , +.Xr BUS_TEARDOWN_INTR 9 , +.Xr device 9 , +.Xr driver 9 +.\" +.Sh HISTORY +The +.Nm +method first appeared in +.Fx 5.2 . +.\" +.Sh AUTHORS +This man page was written by +.An Marcel Moolenaar +.Aq marcel@xcllnt.net |