]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/man/man9/device_add_child.9
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / man / man9 / device_add_child.9
1 .\" -*- nroff -*-
2 .\"
3 .\" Copyright (c) 1998 Doug Rabson
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$
30 .\"
31 .Dd September 12, 2006
32 .Dt DEVICE_ADD_CHILD 9
33 .Os
34 .Sh NAME
35 .Nm device_add_child ,
36 .Nm device_add_child_ordered
37 .Nd "add a new device as a child of an existing device"
38 .Sh SYNOPSIS
39 .In sys/param.h
40 .In sys/bus.h
41 .Ft device_t
42 .Fn device_add_child "device_t dev" "const char *name" "int unit"
43 .Ft device_t
44 .Fn device_add_child_ordered "device_t dev" "int order" "const char *name" "int unit"
45 .Sh DESCRIPTION
46 Create a new child device of
47 .Fa dev .
48 The
49 .Fa name
50 and
51 .Fa unit
52 arguments specify the name and unit number of the device.
53 If the name is unknown then the caller should pass
54 .Dv NULL .
55 If the unit is unknown then the caller should pass
56 .Dv -1
57 and the system will choose the next available unit number.
58 .Pp
59 The name of the device is used to determine which drivers might be
60 appropriate for the device.
61 If a name is specified then only drivers of that name are probed.
62 If no name is given then all drivers for the owning bus are probed.
63 In any event, only the name of the device is stored so that one may
64 safely unload/load a driver bound to that name.
65 .Pp
66 This allows busses which can uniquely identify device instances (such
67 as PCI) to allow each driver to check each device instance for a
68 match.
69 For busses which rely on supplied probe hints where only one
70 driver can have a chance of probing the device, the driver name should
71 be specified as the device name.
72 .Pp
73 Normally unit numbers will be chosen automatically by the system and a
74 unit number of
75 .Dv -1
76 should be given.
77 When a specific unit number is desired (e.g.\& for wiring a particular
78 piece of hardware to a pre-configured unit number), that unit should
79 be passed.
80 If the specified unit number is already allocated, a new
81 unit will be allocated and a diagnostic message printed.
82 .Pp
83 If the devices attached to a bus must be probed in a specific order
84 (e.g.\& for the ISA bus some devices are sensitive to failed probe attempts
85 of unrelated drivers and therefore must be probed first),
86 the
87 .Fa order
88 argument of
89 .Fn device_add_child_ordered
90 should be used to specify a partial ordering.
91 The new device will be added before any existing device with a greater
92 order.
93 If
94 .Fn device_add_child
95 is used, then the new child will be added as if its order was zero.
96 .Pp
97 When adding a device in the context of
98 .Xr DEVICE_IDENTIFY 9
99 routine, the
100 .Xr device_find_child 9
101 routine should be used to ensure that the device has not already been
102 added to the tree.
103 Because the device name and
104 .Vt devclass_t
105 are associated at probe time (not child addition time), previous
106 instances of the driver (say in a module that was later unloaded) may
107 have already added the instance.
108 Authors of bus drivers must likewise be careful when adding children
109 when they are loaded and unloaded to avoid duplication of children
110 devices.
111 .Pp
112 Identify routines should use
113 .Xr BUS_ADD_CHILD 9
114 instead of
115 .Xr device_add_child 9 .
116 .Sh RETURN VALUES
117 The new device if successful, NULL otherwise.
118 .Sh SEE ALSO
119 .Xr BUS_ADD_CHILD 9 ,
120 .Xr device 9 ,
121 .Xr device_find_child 9 ,
122 .Xr DEVICE_IDENTIFY 9
123 .Sh AUTHORS
124 This manual page was written by
125 .An Doug Rabson .