3 .\" Copyright (c) 2000 Alexander Langer
5 .\" All rights reserved.
7 .\" This program is free software.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
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.
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.
32 .Dt BUS_ALLOC_RESOURCE 9
35 .Nm bus_alloc_resource ,
36 .Nm bus_alloc_resource_any
37 .Nd allocate resources from a parent bus
44 .In machine/resource.h
46 .Fn bus_alloc_resource "device_t dev" "int type" "int *rid" "u_long start" "u_long end" "u_long count" "u_int flags"
48 .Fn bus_alloc_resource_any "device_t dev" "int type" "int *rid" "u_int flags"
50 This is an easy interface to the resource-management functions.
51 It hides the indirection through the parent's method table.
52 This function generally should be called in attach, but (except in some
53 rare cases) never earlier.
56 .Fn bus_alloc_resource_any
57 function is a convenience wrapper for
58 .Fn bus_alloc_resource .
59 It sets the values for
64 to the default resource (see description of
68 The arguments are as follows:
72 is the device that requests ownership of the resource.
73 Before allocation, the resource is owned by the parent bus.
76 is the type of resource you want to allocate.
78 .Bl -tag -width SYS_RES_MEMORY
90 points to a bus specific handle that identifies the resource being allocated.
91 For ISA this is an index into an array of resources that have been setup
92 for this device by either the PnP mechanism, or via the hints mechanism.
93 For PCCARD, this is an index into the array of resources described by the PC Card's
95 For PCI, the offset into pci config space which has the BAR to use to access
97 The bus methods are free to change the RIDs that they are given as a parameter.
98 You must not depend on the value you gave it earlier.
103 are the start/end addresses of the resource.
104 If you specify values of 0ul for
110 the default values for the bus are calculated.
113 is the size of the resource.
114 For example, the size of an I/O port is usually 1 byte (but some devices
116 If you specified the default values for
120 then the default value of the bus is used if
122 is smaller than the default value and
124 is used, if it is bigger than the default value.
127 sets the flags for the resource.
128 You can set one or more of these flags:
129 .Bl -tag -width RF_SHAREABLE
131 resource has been reserved.
132 The resource still needs to be activated with
133 .Xr bus_activate_resource 9 .
135 activate resource atomically.
137 resource permits contemporaneous sharing.
138 It should always be set unless you know that the resource cannot be shared.
139 It is the bus driver's task to filter out the flag if the bus does not
143 cannot share IRQs while
147 resource permits time-division sharing.
153 is returned on success, a null pointer otherwise.
155 This is some example code that allocates a 32 byte I/O port range and an IRQ.
160 should be saved in the softc of the device after these calls.
162 struct resource *portres, *irqres;
167 portres = bus_alloc_resource(dev, SYS_RES_IOPORT, &portid,
168 0ul, ~0ul, 32, RF_ACTIVE);
169 irqres = bus_alloc_resource_any(dev, SYS_RES_IRQ, &irqid,
170 RF_ACTIVE | RF_SHAREABLE);
173 .Xr bus_activate_resource 9 ,
174 .Xr bus_release_resource 9 ,
179 This manual page was written by
180 .An Alexander Langer Aq alex@big.endian.de
182 .An Warner Losh Aq imp@FreeBSD.org .