1 .\" Copyright (c) 2000 Alexander Langer
3 .\" All rights reserved.
5 .\" This program is free software.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
16 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 .\" $FreeBSD: src/share/man/man9/bus_alloc_resource.9,v 1.2.2.10 2004/03/17 17:54:24 njl Exp $
28 .\" $DragonFly: src/share/man/man9/bus_alloc_resource.9,v 1.5 2004/07/16 10:38:01 joerg Exp $
31 .Dt BUS_ALLOC_RESOURCE 9
34 .Nm bus_alloc_resource ,
35 .Nm bus_alloc_resource_any
36 .Nd alloc resources on a bus
43 .In machine/resource.h
45 .Fn bus_alloc_resource "device_t dev" "int type" "int *rid" "u_long start" "u_long end" "u_long count" "u_int flags"
47 .Fn bus_alloc_resource_any "device_t dev" "int type" "int *rid" "u_int flags"
49 This is an easy interface to the resource-management functions.
50 It hides the indirection through the parent's method table.
51 This function generally should be called in attach, but (except in some
52 race cases) never earlier.
55 .Fn bus_alloc_resource_any
56 function is a convenience wrapper for
57 .Fn bus_alloc_resource .
58 It sets the values for
63 to the default resource (see description of
67 The arguments are as follows:
71 is the device that requests ownership of the resource.
72 Before allocation, the resource is owned by the parent bus.
75 is the type of resource you want to allocate.
77 .Bl -tag -width SYS_RES_MEMORY
89 points to a bus specific handle that identifies the resource being allocated.
90 For ISA this is an index into an array of resources that have been setup
91 for this device by either the PnP mechanism, or via the hints mechanism.
92 For PCCARD, similar things are used as of writing,
93 but that may change in the future with newcard.
94 For PCI it just happens to be the offset into pci config space which has
95 a word that describes the resource.
96 The bus methods are free to change the RIDs that they are given as a parameter.
97 You must not depend on the value you gave it earlier.
102 are the start/end addresses of the resource.
103 If you specify values of
107 for end, the default values for the bus are calculated.
110 is the size of the resource, e.g. the size of an I/O port (often
112 on PCI and device-dependent on ISA and PCCARD).
113 If you specified the default values for
117 then the default value of the bus is used if
119 is smaller than the default value and
121 is used, if it is bigger than the default value.
124 sets the flags for the resource.
125 You can set one or more of these flags:
126 .Bl -tag -width RF_SHAREABLE
128 resource has been reserved.
129 The resource still needs to be activated with
130 .Xr rman_activate_resource 9 .
132 activate resource atomically.
134 resource permits contemporaneous sharing.
135 Should always be set unless you know, that the resource cannot be shared.
136 It is the bus-code's task to filter out the flag if the bus doesn't
137 support sharing, which is, for example, the case for pccard/cardbus,
138 which can or cannot share devices, depending on the bus.
140 resource permits time-division sharing.
146 is returned on success, a null pointer otherwise.
148 This is some example code.
153 should be saved in the softc of the device after these calls.
155 struct resource *portres, irqres;
160 portres = bus_alloc_resource(dev, SYS_RES_IOPORT, &portid,
161 0ul, ~0ul, 32, RF_ACTIVE);
162 irqres = bus_alloc_resource_any(dev, SYS_RES_IRQ, &irqid,
163 RF_ACTIVE | RF_SHAREABLE);
166 .Xr bus_release_resource 9 ,
171 This man page was written by
172 .An Alexander Langer Aq alex@big.endian.de
174 .An Warner Losh Aq imp@FreeBSD.org .