Initial import from FreeBSD RELENG_4:
[dragonfly.git] / share / man / man9 / BUS_SETUP_INTR.9
1 .\" Copyright (c) 2000 Jeroen Ruigrok van der Werven
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/share/man/man9/BUS_SETUP_INTR.9,v 1.1.2.6 2001/12/17 11:30:18 ru Exp $
26 .\"
27 .Dd April 2, 2000
28 .Dt BUS_SETUP_INTR 9
29 .Os
30 .Sh NAME
31 .Nm BUS_SETUP_INTR
32 .Nd create and attach to an interrupt handler
33 .Sh SYNOPSIS
34 .In sys/param.h
35 .In sys/bus.h
36 .Ft int
37 .Fn BUS_SETUP_INTR "device_t dev" "device_t child" "struct resource *irq" "int flags" "driver_intr_t *intr" "void *arg" "void **cookiep"
38 .Sh DESCRIPTION
39 The method
40 .Nm
41 will create and attach an interrupt handler to an interrupt
42 previously allocated by the resource manager's
43 .Xr BUS_ALLOC_RESOURCE 9
44 method.
45 The handler
46 .Fa intr
47 will be called with the value
48 .Fa arg
49 as its only argument.
50 .Pp
51 The interrupt handler will be detached by
52 .Fn BUS_TEARDOWN_INTR .
53 The cookie needs to be passed to
54 .Fn BUS_TEARDOWN_INTR
55 in order to tear down the correct interrupt handler.
56 .Sh RETURN VALUES
57 Zero is returned on success,
58 otherwise an appropriate error is returned.
59 .Sh SEE ALSO
60 .Xr BUS_TEARDOWN_INTR 9 ,
61 .Xr device 9 ,
62 .Xr driver 9
63 .Sh AUTHORS
64 .An -nosplit
65 This man page was written by
66 .An Jeroen Ruigrok van der Werven
67 .Aq asmodai@FreeBSD.org
68 based on the manpages for BUS_CREATE_INTR and BUS_CONNECT_INTR written by
69 .An Doug Rabson
70 .Aq dfr@FreeBSD.org .