Initial import from FreeBSD RELENG_4:
[dragonfly.git] / share / man / man9 / bus_alloc_resource.9
1 .\" -*- nroff -*-
2 .\"
3 .\" Copyright (c) 2000 Alexander Langer
4 .\"
5 .\" All rights reserved.
6 .\"
7 .\" This program is free software.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
19 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD: src/share/man/man9/bus_alloc_resource.9,v 1.2.2.9 2001/12/17 11:30:18 ru Exp $
30 .\"
31 .Dd May 18, 2000
32 .Dt BUS_ALLOC_RESOURCE 9
33 .Os
34 .Sh NAME
35 .Nm bus_alloc_resource
36 .Nd alloc resources on a bus
37 .Sh SYNOPSIS
38 .In sys/param.h
39 .In sys/bus.h
40 .Pp
41 .In machine/bus.h
42 .In sys/rman.h
43 .In machine/resource.h
44 .Ft struct resource *
45 .Fn bus_alloc_resource "device_t dev" "int type" "int *rid" "u_long start" "u_long end" "u_long count" "u_int flags"
46 .Sh DESCRIPTION
47 This is an easy interface to the resource-management functions.
48 It hides the indirection through the parent's method table.
49 This function generally should be called in attach, but (except in some
50 race cases) never earlier.
51 .Pp
52 Its arguments are as follows:
53 .Bl -item
54 .It
55 .Fa dev
56 is the device that requests ownership of the resource.
57 Before allocation, the resource is owned by the parent bus.
58 .It
59 .Fa type
60 is the type of resource you want to allocate.
61 It is one of:
62 .Bl -tag -width SYS_RES_MEMORY
63 .It Dv SYS_RES_IRQ
64 for IRQs
65 .It Dv SYS_RES_DRQ
66 for ISA DMA lines
67 .It Dv SYS_RES_IOPORT
68 for I/O ports
69 .It Dv SYS_RES_MEMORY
70 for I/O memory
71 .El
72 .It
73 .Fa rid
74 points to a bus specific handle that identifies the resource being allocated.
75 For ISA this is an index into an array of resources that have been setup
76 for this device by either the PnP mechanism, or via the hints mechanism.
77 For PCCARD, similar things are used as of writing,
78 but that may change in the future with newcard.
79 For PCI it just happens to be the offset into pci config space which has
80 a word that describes the resource.
81 The bus methods are free to change the RIDs that they are given as a parameter.
82 You must not depend on the value you gave it earlier.
83 .It
84 .Fa start
85 and
86 .Fa end
87 are the start/end addresses of the resource.
88 If you specify values of
89 .Dv 0
90 for start and
91 .Dv ~0
92 for end, the default values for the bus are calculated.
93 .It
94 .Fa count
95 is the size of the resource, e.g. the size of an I/O port (often
96 .Dv 1
97 on PCI and device-dependent on ISA and PCCARD).
98 If you specified the default values for
99 .Fa start
100 and
101 .Fa end ,
102 then the default value of the bus is used if
103 .Fa count
104 is smaller than the default value and
105 .Fa count
106 is used, if it is bigger as the default value.
107 .It
108 .Fa flags
109 sets the flags for the resource.
110 You can set one or more of these flags:
111 .Bl -tag -width RF_SHAREABLE
112 .It Dv RF_ALLOCATED
113 resource has been reserved.
114 The resource still needs to be activated with
115 .Xr rman_activate_resource 9 .
116 .It Dv RF_ACTIVE
117 activate resource atomically.
118 .It Dv RF_SHAREABLE
119 resource permits contemporaneous sharing.
120 Should always be set unless you know, that the resource cannot be shared.
121 It is the bus-code's task to filter out the flag if the bus doesn't
122 support sharing, which is, for example, the case for pccard/cardbus,
123 which can or cannot share devices, depending on the bus.
124 .It Dv RF_TIMESHARE
125 resource permits time-division sharing.
126 .El
127 .El
128 .Sh RETURN VALUES
129 A pointer to
130 .Va struct res
131 is returned on success, a null pointer otherwise.
132 .Sh EXAMPLES
133 This is some example code.
134 The values of
135 .Va portid
136 and
137 .Va irqid
138 should be saved in the softc of the device after these calls.
139 .Bd -literal
140         struct resource *portres, irqres;
141         int portid, irqid;
142
143         portid = 0;
144         irqid = 0;
145         portres = bus_alloc_resource(dev, SYS_RES_IOPORT, &portid,
146                         0ul, ~0ul, 32, RF_ACTIVE);
147         irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &irqid,
148                         0ul, ~0ul, 1, RF_ACTIVE | RF_SHAREABLE);
149 .Ed
150 .Sh SEE ALSO
151 .Xr bus_release_resource 9 ,
152 .Xr device 9 ,
153 .Xr driver 9
154 .Sh AUTHORS
155 .An -nosplit
156 This man page was written by
157 .An Alexander Langer Aq alex@big.endian.de
158 with parts by
159 .An Warner Losh Aq imp@FreeBSD.org .