subr_autoconf.c revision 1.124 1 1.124 jmcneill /* $NetBSD: subr_autoconf.c,v 1.124 2007/12/09 20:28:44 jmcneill Exp $ */
2 1.53 cgd
3 1.53 cgd /*
4 1.53 cgd * Copyright (c) 1996, 2000 Christopher G. Demetriou
5 1.53 cgd * All rights reserved.
6 1.93 perry *
7 1.53 cgd * Redistribution and use in source and binary forms, with or without
8 1.53 cgd * modification, are permitted provided that the following conditions
9 1.53 cgd * are met:
10 1.53 cgd * 1. Redistributions of source code must retain the above copyright
11 1.53 cgd * notice, this list of conditions and the following disclaimer.
12 1.53 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.53 cgd * notice, this list of conditions and the following disclaimer in the
14 1.53 cgd * documentation and/or other materials provided with the distribution.
15 1.53 cgd * 3. All advertising materials mentioning features or use of this software
16 1.53 cgd * must display the following acknowledgement:
17 1.54 cgd * This product includes software developed for the
18 1.88 keihan * NetBSD Project. See http://www.NetBSD.org/ for
19 1.54 cgd * information about NetBSD.
20 1.53 cgd * 4. The name of the author may not be used to endorse or promote products
21 1.54 cgd * derived from this software without specific prior written permission.
22 1.93 perry *
23 1.53 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.53 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.53 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.53 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.53 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.53 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.53 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.53 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.53 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.53 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.93 perry *
34 1.54 cgd * --(license Id: LICENSE.proto,v 1.1 2000/06/13 21:40:26 cgd Exp )--
35 1.53 cgd */
36 1.9 cgd
37 1.1 glass /*
38 1.7 glass * Copyright (c) 1992, 1993
39 1.7 glass * The Regents of the University of California. All rights reserved.
40 1.1 glass *
41 1.1 glass * This software was developed by the Computer Systems Engineering group
42 1.1 glass * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
43 1.1 glass * contributed to Berkeley.
44 1.1 glass *
45 1.1 glass * All advertising materials mentioning features or use of this software
46 1.1 glass * must display the following acknowledgement:
47 1.1 glass * This product includes software developed by the University of
48 1.1 glass * California, Lawrence Berkeley Laboratories.
49 1.1 glass *
50 1.7 glass * Redistribution and use in source and binary forms, with or without
51 1.7 glass * modification, are permitted provided that the following conditions
52 1.7 glass * are met:
53 1.7 glass * 1. Redistributions of source code must retain the above copyright
54 1.7 glass * notice, this list of conditions and the following disclaimer.
55 1.7 glass * 2. Redistributions in binary form must reproduce the above copyright
56 1.7 glass * notice, this list of conditions and the following disclaimer in the
57 1.7 glass * documentation and/or other materials provided with the distribution.
58 1.87 agc * 3. Neither the name of the University nor the names of its contributors
59 1.7 glass * may be used to endorse or promote products derived from this software
60 1.7 glass * without specific prior written permission.
61 1.1 glass *
62 1.7 glass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
63 1.7 glass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
64 1.7 glass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
65 1.7 glass * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
66 1.7 glass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
67 1.7 glass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
68 1.7 glass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69 1.7 glass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 1.7 glass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 1.7 glass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 1.7 glass * SUCH DAMAGE.
73 1.1 glass *
74 1.8 cgd * from: Header: subr_autoconf.c,v 1.12 93/02/01 19:31:48 torek Exp (LBL)
75 1.9 cgd *
76 1.28 fvdl * @(#)subr_autoconf.c 8.3 (Berkeley) 5/17/94
77 1.1 glass */
78 1.1 glass
79 1.51 cgd #include <sys/cdefs.h>
80 1.124 jmcneill __KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.124 2007/12/09 20:28:44 jmcneill Exp $");
81 1.62 simonb
82 1.122 ad #include "opt_multiprocessor.h"
83 1.62 simonb #include "opt_ddb.h"
84 1.51 cgd
85 1.4 mycroft #include <sys/param.h>
86 1.4 mycroft #include <sys/device.h>
87 1.118 dyoung #include <sys/disklabel.h>
88 1.118 dyoung #include <sys/conf.h>
89 1.118 dyoung #include <sys/kauth.h>
90 1.4 mycroft #include <sys/malloc.h>
91 1.17 christos #include <sys/systm.h>
92 1.43 thorpej #include <sys/kernel.h>
93 1.33 thorpej #include <sys/errno.h>
94 1.47 thorpej #include <sys/proc.h>
95 1.82 mrg #include <sys/reboot.h>
96 1.118 dyoung
97 1.118 dyoung #include <sys/buf.h>
98 1.118 dyoung #include <sys/dirent.h>
99 1.118 dyoung #include <sys/lock.h>
100 1.118 dyoung #include <sys/vnode.h>
101 1.118 dyoung #include <sys/mount.h>
102 1.118 dyoung #include <sys/namei.h>
103 1.118 dyoung #include <sys/unistd.h>
104 1.118 dyoung #include <sys/fcntl.h>
105 1.118 dyoung #include <sys/lockf.h>
106 1.124 jmcneill #include <sys/callout.h>
107 1.118 dyoung
108 1.118 dyoung #include <sys/disk.h>
109 1.118 dyoung
110 1.16 mycroft #include <machine/limits.h>
111 1.1 glass
112 1.57 gmcgarry #include "opt_userconf.h"
113 1.57 gmcgarry #ifdef USERCONF
114 1.57 gmcgarry #include <sys/userconf.h>
115 1.57 gmcgarry #endif
116 1.57 gmcgarry
117 1.106 martin #ifdef __i386__
118 1.105 jmcneill #include "opt_splash.h"
119 1.105 jmcneill #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
120 1.105 jmcneill #include <dev/splash/splash.h>
121 1.105 jmcneill extern struct splash_progress *splash_progress_state;
122 1.105 jmcneill #endif
123 1.106 martin #endif
124 1.105 jmcneill
125 1.1 glass /*
126 1.1 glass * Autoconfiguration subroutines.
127 1.1 glass */
128 1.1 glass
129 1.1 glass /*
130 1.1 glass * ioconf.c exports exactly two names: cfdata and cfroots. All system
131 1.1 glass * devices and drivers are found via these tables.
132 1.1 glass */
133 1.1 glass extern struct cfdata cfdata[];
134 1.84 matt extern const short cfroots[];
135 1.1 glass
136 1.65 thorpej /*
137 1.67 thorpej * List of all cfdriver structures. We use this to detect duplicates
138 1.67 thorpej * when other cfdrivers are loaded.
139 1.67 thorpej */
140 1.69 thorpej struct cfdriverlist allcfdrivers = LIST_HEAD_INITIALIZER(&allcfdrivers);
141 1.69 thorpej extern struct cfdriver * const cfdriver_list_initial[];
142 1.67 thorpej
143 1.67 thorpej /*
144 1.76 thorpej * Initial list of cfattach's.
145 1.76 thorpej */
146 1.76 thorpej extern const struct cfattachinit cfattachinit[];
147 1.76 thorpej
148 1.76 thorpej /*
149 1.65 thorpej * List of cfdata tables. We always have one such list -- the one
150 1.65 thorpej * built statically when the kernel was configured.
151 1.65 thorpej */
152 1.121 matt struct cftablelist allcftables = TAILQ_HEAD_INITIALIZER(allcftables);
153 1.65 thorpej static struct cftable initcftable;
154 1.65 thorpej
155 1.102 thorpej #define ROOT ((device_t)NULL)
156 1.1 glass
157 1.16 mycroft struct matchinfo {
158 1.99 drochner cfsubmatch_t fn;
159 1.16 mycroft struct device *parent;
160 1.99 drochner const int *locs;
161 1.25 cgd void *aux;
162 1.25 cgd struct cfdata *match;
163 1.25 cgd int pri;
164 1.16 mycroft };
165 1.17 christos
166 1.51 cgd static char *number(char *, int);
167 1.102 thorpej static void mapply(struct matchinfo *, cfdata_t);
168 1.117 drochner static device_t config_devalloc(const device_t, const cfdata_t, const int *);
169 1.117 drochner static void config_devdealloc(device_t);
170 1.117 drochner static void config_makeroom(int, struct cfdriver *);
171 1.117 drochner static void config_devlink(device_t);
172 1.117 drochner static void config_devunlink(device_t);
173 1.16 mycroft
174 1.29 thorpej struct deferred_config {
175 1.29 thorpej TAILQ_ENTRY(deferred_config) dc_queue;
176 1.102 thorpej device_t dc_dev;
177 1.102 thorpej void (*dc_func)(device_t);
178 1.29 thorpej };
179 1.29 thorpej
180 1.42 thorpej TAILQ_HEAD(deferred_config_head, deferred_config);
181 1.29 thorpej
182 1.121 matt struct deferred_config_head deferred_config_queue =
183 1.121 matt TAILQ_HEAD_INITIALIZER(deferred_config_queue);
184 1.121 matt struct deferred_config_head interrupt_config_queue =
185 1.121 matt TAILQ_HEAD_INITIALIZER(interrupt_config_queue);
186 1.42 thorpej
187 1.102 thorpej static void config_process_deferred(struct deferred_config_head *, device_t);
188 1.29 thorpej
189 1.75 thorpej /* Hooks to finalize configuration once all real devices have been found. */
190 1.75 thorpej struct finalize_hook {
191 1.75 thorpej TAILQ_ENTRY(finalize_hook) f_list;
192 1.102 thorpej int (*f_func)(device_t);
193 1.102 thorpej device_t f_dev;
194 1.75 thorpej };
195 1.121 matt static TAILQ_HEAD(, finalize_hook) config_finalize_list =
196 1.121 matt TAILQ_HEAD_INITIALIZER(config_finalize_list);
197 1.75 thorpej static int config_finalize_done;
198 1.75 thorpej
199 1.56 thorpej /* list of all devices */
200 1.121 matt struct devicelist alldevs = TAILQ_HEAD_INITIALIZER(alldevs);
201 1.56 thorpej
202 1.103 perry volatile int config_pending; /* semaphore for mountroot */
203 1.47 thorpej
204 1.67 thorpej #define STREQ(s1, s2) \
205 1.70 thorpej (*(s1) == *(s2) && strcmp((s1), (s2)) == 0)
206 1.67 thorpej
207 1.74 thorpej static int config_initialized; /* config_init() has been called. */
208 1.74 thorpej
209 1.80 thorpej static int config_do_twiddle;
210 1.80 thorpej
211 1.118 dyoung struct vnode *
212 1.118 dyoung opendisk(struct device *dv)
213 1.118 dyoung {
214 1.118 dyoung int bmajor, bminor;
215 1.118 dyoung struct vnode *tmpvn;
216 1.118 dyoung int error;
217 1.118 dyoung dev_t dev;
218 1.118 dyoung
219 1.118 dyoung /*
220 1.118 dyoung * Lookup major number for disk block device.
221 1.118 dyoung */
222 1.118 dyoung bmajor = devsw_name2blk(device_xname(dv), NULL, 0);
223 1.118 dyoung if (bmajor == -1)
224 1.118 dyoung return NULL;
225 1.118 dyoung
226 1.118 dyoung bminor = minor(device_unit(dv));
227 1.118 dyoung /*
228 1.118 dyoung * Fake a temporary vnode for the disk, open it, and read
229 1.118 dyoung * and hash the sectors.
230 1.118 dyoung */
231 1.118 dyoung dev = device_is_a(dv, "dk") ? makedev(bmajor, bminor) :
232 1.118 dyoung MAKEDISKDEV(bmajor, bminor, RAW_PART);
233 1.118 dyoung if (bdevvp(dev, &tmpvn))
234 1.118 dyoung panic("%s: can't alloc vnode for %s", __func__,
235 1.118 dyoung device_xname(dv));
236 1.123 pooka error = VOP_OPEN(tmpvn, FREAD, NOCRED);
237 1.118 dyoung if (error) {
238 1.118 dyoung #ifndef DEBUG
239 1.118 dyoung /*
240 1.118 dyoung * Ignore errors caused by missing device, partition,
241 1.118 dyoung * or medium.
242 1.118 dyoung */
243 1.118 dyoung if (error != ENXIO && error != ENODEV)
244 1.118 dyoung #endif
245 1.118 dyoung printf("%s: can't open dev %s (%d)\n",
246 1.118 dyoung __func__, device_xname(dv), error);
247 1.118 dyoung vput(tmpvn);
248 1.118 dyoung return NULL;
249 1.118 dyoung }
250 1.118 dyoung
251 1.118 dyoung return tmpvn;
252 1.118 dyoung }
253 1.118 dyoung
254 1.118 dyoung int
255 1.118 dyoung config_handle_wedges(struct device *dv, int par)
256 1.118 dyoung {
257 1.118 dyoung struct dkwedge_list wl;
258 1.118 dyoung struct dkwedge_info *wi;
259 1.118 dyoung struct vnode *vn;
260 1.118 dyoung char diskname[16];
261 1.118 dyoung int i, error;
262 1.118 dyoung
263 1.118 dyoung if ((vn = opendisk(dv)) == NULL)
264 1.118 dyoung return -1;
265 1.118 dyoung
266 1.118 dyoung wl.dkwl_bufsize = sizeof(*wi) * 16;
267 1.118 dyoung wl.dkwl_buf = wi = malloc(wl.dkwl_bufsize, M_TEMP, M_WAITOK);
268 1.118 dyoung
269 1.123 pooka error = VOP_IOCTL(vn, DIOCLWEDGES, &wl, FREAD, NOCRED);
270 1.123 pooka VOP_CLOSE(vn, FREAD, NOCRED);
271 1.118 dyoung vput(vn);
272 1.118 dyoung if (error) {
273 1.118 dyoung #ifdef DEBUG_WEDGE
274 1.118 dyoung printf("%s: List wedges returned %d\n",
275 1.118 dyoung device_xname(dv), error);
276 1.118 dyoung #endif
277 1.118 dyoung free(wi, M_TEMP);
278 1.118 dyoung return -1;
279 1.118 dyoung }
280 1.118 dyoung
281 1.118 dyoung #ifdef DEBUG_WEDGE
282 1.118 dyoung printf("%s: Returned %u(%u) wedges\n", device_xname(dv),
283 1.118 dyoung wl.dkwl_nwedges, wl.dkwl_ncopied);
284 1.118 dyoung #endif
285 1.118 dyoung snprintf(diskname, sizeof(diskname), "%s%c", device_xname(dv),
286 1.118 dyoung par + 'a');
287 1.118 dyoung
288 1.118 dyoung for (i = 0; i < wl.dkwl_ncopied; i++) {
289 1.118 dyoung #ifdef DEBUG_WEDGE
290 1.118 dyoung printf("%s: Looking for %s in %s\n",
291 1.118 dyoung device_xname(dv), diskname, wi[i].dkw_wname);
292 1.118 dyoung #endif
293 1.118 dyoung if (strcmp(wi[i].dkw_wname, diskname) == 0)
294 1.118 dyoung break;
295 1.118 dyoung }
296 1.118 dyoung
297 1.118 dyoung if (i == wl.dkwl_ncopied) {
298 1.118 dyoung #ifdef DEBUG_WEDGE
299 1.118 dyoung printf("%s: Cannot find wedge with parent %s\n",
300 1.118 dyoung device_xname(dv), diskname);
301 1.118 dyoung #endif
302 1.118 dyoung free(wi, M_TEMP);
303 1.118 dyoung return -1;
304 1.118 dyoung }
305 1.118 dyoung
306 1.118 dyoung #ifdef DEBUG_WEDGE
307 1.118 dyoung printf("%s: Setting boot wedge %s (%s) at %llu %llu\n",
308 1.118 dyoung device_xname(dv), wi[i].dkw_devname, wi[i].dkw_wname,
309 1.118 dyoung (unsigned long long)wi[i].dkw_offset,
310 1.118 dyoung (unsigned long long)wi[i].dkw_size);
311 1.118 dyoung #endif
312 1.118 dyoung dkwedge_set_bootwedge(dv, wi[i].dkw_offset, wi[i].dkw_size);
313 1.118 dyoung free(wi, M_TEMP);
314 1.118 dyoung return 0;
315 1.118 dyoung }
316 1.118 dyoung
317 1.20 cgd /*
318 1.74 thorpej * Initialize the autoconfiguration data structures. Normally this
319 1.74 thorpej * is done by configure(), but some platforms need to do this very
320 1.74 thorpej * early (to e.g. initialize the console).
321 1.20 cgd */
322 1.20 cgd void
323 1.74 thorpej config_init(void)
324 1.20 cgd {
325 1.76 thorpej const struct cfattachinit *cfai;
326 1.76 thorpej int i, j;
327 1.67 thorpej
328 1.74 thorpej if (config_initialized)
329 1.74 thorpej return;
330 1.74 thorpej
331 1.69 thorpej /* allcfdrivers is statically initialized. */
332 1.76 thorpej for (i = 0; cfdriver_list_initial[i] != NULL; i++) {
333 1.67 thorpej if (config_cfdriver_attach(cfdriver_list_initial[i]) != 0)
334 1.67 thorpej panic("configure: duplicate `%s' drivers",
335 1.67 thorpej cfdriver_list_initial[i]->cd_name);
336 1.76 thorpej }
337 1.76 thorpej
338 1.76 thorpej for (cfai = &cfattachinit[0]; cfai->cfai_name != NULL; cfai++) {
339 1.76 thorpej for (j = 0; cfai->cfai_list[j] != NULL; j++) {
340 1.76 thorpej if (config_cfattach_attach(cfai->cfai_name,
341 1.76 thorpej cfai->cfai_list[j]) != 0)
342 1.76 thorpej panic("configure: duplicate `%s' attachment "
343 1.76 thorpej "of `%s' driver",
344 1.76 thorpej cfai->cfai_list[j]->ca_name,
345 1.76 thorpej cfai->cfai_name);
346 1.76 thorpej }
347 1.76 thorpej }
348 1.20 cgd
349 1.65 thorpej initcftable.ct_cfdata = cfdata;
350 1.65 thorpej TAILQ_INSERT_TAIL(&allcftables, &initcftable, ct_list);
351 1.65 thorpej
352 1.74 thorpej config_initialized = 1;
353 1.74 thorpej }
354 1.74 thorpej
355 1.74 thorpej /*
356 1.74 thorpej * Configure the system's hardware.
357 1.74 thorpej */
358 1.74 thorpej void
359 1.74 thorpej configure(void)
360 1.74 thorpej {
361 1.80 thorpej int errcnt;
362 1.74 thorpej
363 1.74 thorpej /* Initialize data structures. */
364 1.74 thorpej config_init();
365 1.124 jmcneill pmf_init();
366 1.86 thorpej
367 1.57 gmcgarry #ifdef USERCONF
368 1.57 gmcgarry if (boothowto & RB_USERCONF)
369 1.57 gmcgarry user_config();
370 1.57 gmcgarry #endif
371 1.41 thorpej
372 1.80 thorpej if ((boothowto & (AB_SILENT|AB_VERBOSE)) == AB_SILENT) {
373 1.80 thorpej config_do_twiddle = 1;
374 1.80 thorpej printf_nolog("Detecting hardware...");
375 1.80 thorpej }
376 1.80 thorpej
377 1.41 thorpej /*
378 1.41 thorpej * Do the machine-dependent portion of autoconfiguration. This
379 1.41 thorpej * sets the configuration machinery here in motion by "finding"
380 1.41 thorpej * the root bus. When this function returns, we expect interrupts
381 1.41 thorpej * to be enabled.
382 1.41 thorpej */
383 1.41 thorpej cpu_configure();
384 1.43 thorpej
385 1.119 tsutsui /* Initialize callouts, part 2. */
386 1.119 tsutsui callout_startup2();
387 1.119 tsutsui
388 1.43 thorpej /*
389 1.43 thorpej * Now that we've found all the hardware, start the real time
390 1.43 thorpej * and statistics clocks.
391 1.43 thorpej */
392 1.43 thorpej initclocks();
393 1.43 thorpej
394 1.43 thorpej cold = 0; /* clocks are running, we're warm now! */
395 1.42 thorpej
396 1.122 ad #if defined(MULTIPROCESSOR)
397 1.122 ad /* Boot the secondary processors. */
398 1.122 ad cpu_boot_secondary_processors();
399 1.122 ad #endif
400 1.122 ad
401 1.42 thorpej /*
402 1.42 thorpej * Now callback to finish configuration for devices which want
403 1.42 thorpej * to do this once interrupts are enabled.
404 1.42 thorpej */
405 1.42 thorpej config_process_deferred(&interrupt_config_queue, NULL);
406 1.80 thorpej
407 1.80 thorpej errcnt = aprint_get_error_count();
408 1.80 thorpej if ((boothowto & (AB_QUIET|AB_SILENT)) != 0 &&
409 1.80 thorpej (boothowto & AB_VERBOSE) == 0) {
410 1.80 thorpej if (config_do_twiddle) {
411 1.80 thorpej config_do_twiddle = 0;
412 1.80 thorpej printf_nolog("done.\n");
413 1.80 thorpej }
414 1.80 thorpej if (errcnt != 0) {
415 1.80 thorpej printf("WARNING: %d error%s while detecting hardware; "
416 1.80 thorpej "check system log.\n", errcnt,
417 1.80 thorpej errcnt == 1 ? "" : "s");
418 1.80 thorpej }
419 1.80 thorpej }
420 1.20 cgd }
421 1.20 cgd
422 1.1 glass /*
423 1.67 thorpej * Add a cfdriver to the system.
424 1.67 thorpej */
425 1.67 thorpej int
426 1.67 thorpej config_cfdriver_attach(struct cfdriver *cd)
427 1.67 thorpej {
428 1.67 thorpej struct cfdriver *lcd;
429 1.67 thorpej
430 1.67 thorpej /* Make sure this driver isn't already in the system. */
431 1.67 thorpej LIST_FOREACH(lcd, &allcfdrivers, cd_list) {
432 1.67 thorpej if (STREQ(lcd->cd_name, cd->cd_name))
433 1.67 thorpej return (EEXIST);
434 1.67 thorpej }
435 1.67 thorpej
436 1.76 thorpej LIST_INIT(&cd->cd_attach);
437 1.67 thorpej LIST_INSERT_HEAD(&allcfdrivers, cd, cd_list);
438 1.67 thorpej
439 1.67 thorpej return (0);
440 1.67 thorpej }
441 1.67 thorpej
442 1.67 thorpej /*
443 1.67 thorpej * Remove a cfdriver from the system.
444 1.67 thorpej */
445 1.67 thorpej int
446 1.67 thorpej config_cfdriver_detach(struct cfdriver *cd)
447 1.67 thorpej {
448 1.67 thorpej int i;
449 1.67 thorpej
450 1.67 thorpej /* Make sure there are no active instances. */
451 1.67 thorpej for (i = 0; i < cd->cd_ndevs; i++) {
452 1.67 thorpej if (cd->cd_devs[i] != NULL)
453 1.67 thorpej return (EBUSY);
454 1.67 thorpej }
455 1.67 thorpej
456 1.76 thorpej /* ...and no attachments loaded. */
457 1.76 thorpej if (LIST_EMPTY(&cd->cd_attach) == 0)
458 1.76 thorpej return (EBUSY);
459 1.76 thorpej
460 1.67 thorpej LIST_REMOVE(cd, cd_list);
461 1.67 thorpej
462 1.67 thorpej KASSERT(cd->cd_devs == NULL);
463 1.67 thorpej
464 1.67 thorpej return (0);
465 1.67 thorpej }
466 1.67 thorpej
467 1.67 thorpej /*
468 1.67 thorpej * Look up a cfdriver by name.
469 1.67 thorpej */
470 1.78 isaki struct cfdriver *
471 1.67 thorpej config_cfdriver_lookup(const char *name)
472 1.67 thorpej {
473 1.67 thorpej struct cfdriver *cd;
474 1.69 thorpej
475 1.67 thorpej LIST_FOREACH(cd, &allcfdrivers, cd_list) {
476 1.67 thorpej if (STREQ(cd->cd_name, name))
477 1.67 thorpej return (cd);
478 1.67 thorpej }
479 1.67 thorpej
480 1.67 thorpej return (NULL);
481 1.67 thorpej }
482 1.67 thorpej
483 1.67 thorpej /*
484 1.76 thorpej * Add a cfattach to the specified driver.
485 1.76 thorpej */
486 1.76 thorpej int
487 1.76 thorpej config_cfattach_attach(const char *driver, struct cfattach *ca)
488 1.76 thorpej {
489 1.76 thorpej struct cfattach *lca;
490 1.76 thorpej struct cfdriver *cd;
491 1.76 thorpej
492 1.76 thorpej cd = config_cfdriver_lookup(driver);
493 1.76 thorpej if (cd == NULL)
494 1.76 thorpej return (ESRCH);
495 1.76 thorpej
496 1.76 thorpej /* Make sure this attachment isn't already on this driver. */
497 1.76 thorpej LIST_FOREACH(lca, &cd->cd_attach, ca_list) {
498 1.76 thorpej if (STREQ(lca->ca_name, ca->ca_name))
499 1.76 thorpej return (EEXIST);
500 1.76 thorpej }
501 1.76 thorpej
502 1.76 thorpej LIST_INSERT_HEAD(&cd->cd_attach, ca, ca_list);
503 1.76 thorpej
504 1.76 thorpej return (0);
505 1.76 thorpej }
506 1.76 thorpej
507 1.76 thorpej /*
508 1.76 thorpej * Remove a cfattach from the specified driver.
509 1.76 thorpej */
510 1.76 thorpej int
511 1.76 thorpej config_cfattach_detach(const char *driver, struct cfattach *ca)
512 1.76 thorpej {
513 1.76 thorpej struct cfdriver *cd;
514 1.102 thorpej device_t dev;
515 1.76 thorpej int i;
516 1.76 thorpej
517 1.76 thorpej cd = config_cfdriver_lookup(driver);
518 1.76 thorpej if (cd == NULL)
519 1.76 thorpej return (ESRCH);
520 1.76 thorpej
521 1.76 thorpej /* Make sure there are no active instances. */
522 1.76 thorpej for (i = 0; i < cd->cd_ndevs; i++) {
523 1.76 thorpej if ((dev = cd->cd_devs[i]) == NULL)
524 1.76 thorpej continue;
525 1.77 thorpej if (dev->dv_cfattach == ca)
526 1.76 thorpej return (EBUSY);
527 1.76 thorpej }
528 1.76 thorpej
529 1.76 thorpej LIST_REMOVE(ca, ca_list);
530 1.76 thorpej
531 1.76 thorpej return (0);
532 1.76 thorpej }
533 1.76 thorpej
534 1.76 thorpej /*
535 1.76 thorpej * Look up a cfattach by name.
536 1.76 thorpej */
537 1.76 thorpej static struct cfattach *
538 1.76 thorpej config_cfattach_lookup_cd(struct cfdriver *cd, const char *atname)
539 1.76 thorpej {
540 1.76 thorpej struct cfattach *ca;
541 1.76 thorpej
542 1.76 thorpej LIST_FOREACH(ca, &cd->cd_attach, ca_list) {
543 1.76 thorpej if (STREQ(ca->ca_name, atname))
544 1.76 thorpej return (ca);
545 1.76 thorpej }
546 1.76 thorpej
547 1.76 thorpej return (NULL);
548 1.76 thorpej }
549 1.76 thorpej
550 1.76 thorpej /*
551 1.76 thorpej * Look up a cfattach by driver/attachment name.
552 1.76 thorpej */
553 1.76 thorpej struct cfattach *
554 1.76 thorpej config_cfattach_lookup(const char *name, const char *atname)
555 1.76 thorpej {
556 1.76 thorpej struct cfdriver *cd;
557 1.76 thorpej
558 1.76 thorpej cd = config_cfdriver_lookup(name);
559 1.76 thorpej if (cd == NULL)
560 1.76 thorpej return (NULL);
561 1.76 thorpej
562 1.76 thorpej return (config_cfattach_lookup_cd(cd, atname));
563 1.76 thorpej }
564 1.76 thorpej
565 1.76 thorpej /*
566 1.1 glass * Apply the matching function and choose the best. This is used
567 1.1 glass * a few times and we want to keep the code small.
568 1.1 glass */
569 1.16 mycroft static void
570 1.102 thorpej mapply(struct matchinfo *m, cfdata_t cf)
571 1.1 glass {
572 1.50 augustss int pri;
573 1.1 glass
574 1.99 drochner if (m->fn != NULL) {
575 1.99 drochner pri = (*m->fn)(m->parent, cf, m->locs, m->aux);
576 1.90 drochner } else {
577 1.100 drochner pri = config_match(m->parent, cf, m->aux);
578 1.3 glass }
579 1.1 glass if (pri > m->pri) {
580 1.25 cgd m->match = cf;
581 1.1 glass m->pri = pri;
582 1.1 glass }
583 1.1 glass }
584 1.1 glass
585 1.98 drochner int
586 1.102 thorpej config_stdsubmatch(device_t parent, cfdata_t cf, const int *locs, void *aux)
587 1.98 drochner {
588 1.98 drochner const struct cfiattrdata *ci;
589 1.98 drochner const struct cflocdesc *cl;
590 1.98 drochner int nlocs, i;
591 1.98 drochner
592 1.98 drochner ci = cfiattr_lookup(cf->cf_pspec->cfp_iattr, parent->dv_cfdriver);
593 1.98 drochner KASSERT(ci);
594 1.98 drochner nlocs = ci->ci_loclen;
595 1.98 drochner for (i = 0; i < nlocs; i++) {
596 1.98 drochner cl = &ci->ci_locdesc[i];
597 1.98 drochner /* !cld_defaultstr means no default value */
598 1.98 drochner if ((!(cl->cld_defaultstr)
599 1.98 drochner || (cf->cf_loc[i] != cl->cld_default))
600 1.98 drochner && cf->cf_loc[i] != locs[i])
601 1.98 drochner return (0);
602 1.98 drochner }
603 1.98 drochner
604 1.98 drochner return (config_match(parent, cf, aux));
605 1.98 drochner }
606 1.98 drochner
607 1.1 glass /*
608 1.96 drochner * Helper function: check whether the driver supports the interface attribute
609 1.96 drochner * and return its descriptor structure.
610 1.91 drochner */
611 1.96 drochner static const struct cfiattrdata *
612 1.96 drochner cfdriver_get_iattr(const struct cfdriver *cd, const char *ia)
613 1.91 drochner {
614 1.96 drochner const struct cfiattrdata * const *cpp;
615 1.91 drochner
616 1.91 drochner if (cd->cd_attrs == NULL)
617 1.91 drochner return (0);
618 1.91 drochner
619 1.91 drochner for (cpp = cd->cd_attrs; *cpp; cpp++) {
620 1.96 drochner if (STREQ((*cpp)->ci_name, ia)) {
621 1.91 drochner /* Match. */
622 1.96 drochner return (*cpp);
623 1.91 drochner }
624 1.91 drochner }
625 1.91 drochner return (0);
626 1.91 drochner }
627 1.91 drochner
628 1.91 drochner /*
629 1.96 drochner * Lookup an interface attribute description by name.
630 1.96 drochner * If the driver is given, consider only its supported attributes.
631 1.96 drochner */
632 1.96 drochner const struct cfiattrdata *
633 1.96 drochner cfiattr_lookup(const char *name, const struct cfdriver *cd)
634 1.96 drochner {
635 1.96 drochner const struct cfdriver *d;
636 1.96 drochner const struct cfiattrdata *ia;
637 1.96 drochner
638 1.96 drochner if (cd)
639 1.96 drochner return (cfdriver_get_iattr(cd, name));
640 1.96 drochner
641 1.96 drochner LIST_FOREACH(d, &allcfdrivers, cd_list) {
642 1.96 drochner ia = cfdriver_get_iattr(d, name);
643 1.96 drochner if (ia)
644 1.96 drochner return (ia);
645 1.96 drochner }
646 1.96 drochner return (0);
647 1.96 drochner }
648 1.96 drochner
649 1.96 drochner /*
650 1.66 thorpej * Determine if `parent' is a potential parent for a device spec based
651 1.66 thorpej * on `cfp'.
652 1.66 thorpej */
653 1.66 thorpej static int
654 1.102 thorpej cfparent_match(const device_t parent, const struct cfparent *cfp)
655 1.66 thorpej {
656 1.67 thorpej struct cfdriver *pcd;
657 1.70 thorpej
658 1.70 thorpej /* We don't match root nodes here. */
659 1.70 thorpej if (cfp == NULL)
660 1.70 thorpej return (0);
661 1.66 thorpej
662 1.77 thorpej pcd = parent->dv_cfdriver;
663 1.67 thorpej KASSERT(pcd != NULL);
664 1.67 thorpej
665 1.66 thorpej /*
666 1.66 thorpej * First, ensure this parent has the correct interface
667 1.66 thorpej * attribute.
668 1.66 thorpej */
669 1.96 drochner if (!cfdriver_get_iattr(pcd, cfp->cfp_iattr))
670 1.91 drochner return (0);
671 1.66 thorpej
672 1.66 thorpej /*
673 1.66 thorpej * If no specific parent device instance was specified (i.e.
674 1.66 thorpej * we're attaching to the attribute only), we're done!
675 1.66 thorpej */
676 1.66 thorpej if (cfp->cfp_parent == NULL)
677 1.66 thorpej return (1);
678 1.66 thorpej
679 1.66 thorpej /*
680 1.66 thorpej * Check the parent device's name.
681 1.66 thorpej */
682 1.71 thorpej if (STREQ(pcd->cd_name, cfp->cfp_parent) == 0)
683 1.66 thorpej return (0); /* not the same parent */
684 1.66 thorpej
685 1.66 thorpej /*
686 1.66 thorpej * Make sure the unit number matches.
687 1.66 thorpej */
688 1.77 thorpej if (cfp->cfp_unit == DVUNIT_ANY || /* wildcard */
689 1.66 thorpej cfp->cfp_unit == parent->dv_unit)
690 1.66 thorpej return (1);
691 1.66 thorpej
692 1.66 thorpej /* Unit numbers don't match. */
693 1.66 thorpej return (0);
694 1.68 thorpej }
695 1.68 thorpej
696 1.68 thorpej /*
697 1.90 drochner * Helper for config_cfdata_attach(): check all devices whether it could be
698 1.90 drochner * parent any attachment in the config data table passed, and rescan.
699 1.90 drochner */
700 1.90 drochner static void
701 1.90 drochner rescan_with_cfdata(const struct cfdata *cf)
702 1.90 drochner {
703 1.102 thorpej device_t d;
704 1.90 drochner const struct cfdata *cf1;
705 1.90 drochner
706 1.90 drochner /*
707 1.90 drochner * "alldevs" is likely longer than an LKM's cfdata, so make it
708 1.90 drochner * the outer loop.
709 1.90 drochner */
710 1.90 drochner TAILQ_FOREACH(d, &alldevs, dv_list) {
711 1.90 drochner
712 1.90 drochner if (!(d->dv_cfattach->ca_rescan))
713 1.90 drochner continue;
714 1.90 drochner
715 1.90 drochner for (cf1 = cf; cf1->cf_name; cf1++) {
716 1.90 drochner
717 1.90 drochner if (!cfparent_match(d, cf1->cf_pspec))
718 1.90 drochner continue;
719 1.90 drochner
720 1.90 drochner (*d->dv_cfattach->ca_rescan)(d,
721 1.90 drochner cf1->cf_pspec->cfp_iattr, cf1->cf_loc);
722 1.90 drochner }
723 1.90 drochner }
724 1.90 drochner }
725 1.90 drochner
726 1.90 drochner /*
727 1.90 drochner * Attach a supplemental config data table and rescan potential
728 1.90 drochner * parent devices if required.
729 1.90 drochner */
730 1.90 drochner int
731 1.102 thorpej config_cfdata_attach(cfdata_t cf, int scannow)
732 1.90 drochner {
733 1.90 drochner struct cftable *ct;
734 1.90 drochner
735 1.90 drochner ct = malloc(sizeof(struct cftable), M_DEVBUF, M_WAITOK);
736 1.90 drochner ct->ct_cfdata = cf;
737 1.90 drochner TAILQ_INSERT_TAIL(&allcftables, ct, ct_list);
738 1.90 drochner
739 1.90 drochner if (scannow)
740 1.90 drochner rescan_with_cfdata(cf);
741 1.90 drochner
742 1.90 drochner return (0);
743 1.90 drochner }
744 1.90 drochner
745 1.90 drochner /*
746 1.90 drochner * Helper for config_cfdata_detach: check whether a device is
747 1.90 drochner * found through any attachment in the config data table.
748 1.90 drochner */
749 1.90 drochner static int
750 1.90 drochner dev_in_cfdata(const struct device *d, const struct cfdata *cf)
751 1.90 drochner {
752 1.90 drochner const struct cfdata *cf1;
753 1.90 drochner
754 1.90 drochner for (cf1 = cf; cf1->cf_name; cf1++)
755 1.90 drochner if (d->dv_cfdata == cf1)
756 1.90 drochner return (1);
757 1.90 drochner
758 1.90 drochner return (0);
759 1.90 drochner }
760 1.90 drochner
761 1.90 drochner /*
762 1.90 drochner * Detach a supplemental config data table. Detach all devices found
763 1.90 drochner * through that table (and thus keeping references to it) before.
764 1.90 drochner */
765 1.90 drochner int
766 1.102 thorpej config_cfdata_detach(cfdata_t cf)
767 1.90 drochner {
768 1.102 thorpej device_t d;
769 1.90 drochner int error;
770 1.90 drochner struct cftable *ct;
771 1.90 drochner
772 1.90 drochner again:
773 1.90 drochner TAILQ_FOREACH(d, &alldevs, dv_list) {
774 1.90 drochner if (dev_in_cfdata(d, cf)) {
775 1.90 drochner error = config_detach(d, 0);
776 1.90 drochner if (error) {
777 1.90 drochner aprint_error("%s: unable to detach instance\n",
778 1.90 drochner d->dv_xname);
779 1.90 drochner return (error);
780 1.90 drochner }
781 1.90 drochner goto again;
782 1.90 drochner }
783 1.90 drochner }
784 1.90 drochner
785 1.90 drochner TAILQ_FOREACH(ct, &allcftables, ct_list) {
786 1.90 drochner if (ct->ct_cfdata == cf) {
787 1.90 drochner TAILQ_REMOVE(&allcftables, ct, ct_list);
788 1.90 drochner free(ct, M_DEVBUF);
789 1.90 drochner return (0);
790 1.90 drochner }
791 1.90 drochner }
792 1.90 drochner
793 1.90 drochner /* not found -- shouldn't happen */
794 1.90 drochner return (EINVAL);
795 1.90 drochner }
796 1.90 drochner
797 1.90 drochner /*
798 1.68 thorpej * Invoke the "match" routine for a cfdata entry on behalf of
799 1.68 thorpej * an external caller, usually a "submatch" routine.
800 1.68 thorpej */
801 1.68 thorpej int
802 1.102 thorpej config_match(device_t parent, cfdata_t cf, void *aux)
803 1.68 thorpej {
804 1.76 thorpej struct cfattach *ca;
805 1.76 thorpej
806 1.76 thorpej ca = config_cfattach_lookup(cf->cf_name, cf->cf_atname);
807 1.76 thorpej if (ca == NULL) {
808 1.76 thorpej /* No attachment for this entry, oh well. */
809 1.76 thorpej return (0);
810 1.76 thorpej }
811 1.68 thorpej
812 1.76 thorpej return ((*ca->ca_match)(parent, cf, aux));
813 1.66 thorpej }
814 1.66 thorpej
815 1.66 thorpej /*
816 1.1 glass * Iterate over all potential children of some device, calling the given
817 1.1 glass * function (default being the child's match function) for each one.
818 1.1 glass * Nonzero returns are matches; the highest value returned is considered
819 1.1 glass * the best match. Return the `found child' if we got a match, or NULL
820 1.1 glass * otherwise. The `aux' pointer is simply passed on through.
821 1.1 glass *
822 1.1 glass * Note that this function is designed so that it can be used to apply
823 1.1 glass * an arbitrary function to all potential children (its return value
824 1.1 glass * can be ignored).
825 1.1 glass */
826 1.102 thorpej cfdata_t
827 1.102 thorpej config_search_loc(cfsubmatch_t fn, device_t parent,
828 1.99 drochner const char *ifattr, const int *locs, void *aux)
829 1.90 drochner {
830 1.90 drochner struct cftable *ct;
831 1.102 thorpej cfdata_t cf;
832 1.90 drochner struct matchinfo m;
833 1.90 drochner
834 1.90 drochner KASSERT(config_initialized);
835 1.96 drochner KASSERT(!ifattr || cfdriver_get_iattr(parent->dv_cfdriver, ifattr));
836 1.90 drochner
837 1.99 drochner m.fn = fn;
838 1.1 glass m.parent = parent;
839 1.99 drochner m.locs = locs;
840 1.25 cgd m.aux = aux;
841 1.14 mycroft m.match = NULL;
842 1.1 glass m.pri = 0;
843 1.65 thorpej
844 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
845 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
846 1.90 drochner
847 1.90 drochner /* We don't match root nodes here. */
848 1.90 drochner if (!cf->cf_pspec)
849 1.90 drochner continue;
850 1.90 drochner
851 1.65 thorpej /*
852 1.65 thorpej * Skip cf if no longer eligible, otherwise scan
853 1.65 thorpej * through parents for one matching `parent', and
854 1.65 thorpej * try match function.
855 1.65 thorpej */
856 1.65 thorpej if (cf->cf_fstate == FSTATE_FOUND)
857 1.65 thorpej continue;
858 1.65 thorpej if (cf->cf_fstate == FSTATE_DNOTFOUND ||
859 1.65 thorpej cf->cf_fstate == FSTATE_DSTAR)
860 1.65 thorpej continue;
861 1.90 drochner
862 1.90 drochner /*
863 1.90 drochner * If an interface attribute was specified,
864 1.90 drochner * consider only children which attach to
865 1.90 drochner * that attribute.
866 1.90 drochner */
867 1.90 drochner if (ifattr && !STREQ(ifattr, cf->cf_pspec->cfp_iattr))
868 1.90 drochner continue;
869 1.90 drochner
870 1.66 thorpej if (cfparent_match(parent, cf->cf_pspec))
871 1.66 thorpej mapply(&m, cf);
872 1.65 thorpej }
873 1.1 glass }
874 1.1 glass return (m.match);
875 1.1 glass }
876 1.1 glass
877 1.102 thorpej cfdata_t
878 1.102 thorpej config_search_ia(cfsubmatch_t fn, device_t parent, const char *ifattr,
879 1.102 thorpej void *aux)
880 1.102 thorpej {
881 1.102 thorpej
882 1.102 thorpej return (config_search_loc(fn, parent, ifattr, NULL, aux));
883 1.102 thorpej }
884 1.102 thorpej
885 1.16 mycroft /*
886 1.1 glass * Find the given root device.
887 1.1 glass * This is much like config_search, but there is no parent.
888 1.65 thorpej * Don't bother with multiple cfdata tables; the root node
889 1.65 thorpej * must always be in the initial table.
890 1.1 glass */
891 1.102 thorpej cfdata_t
892 1.95 drochner config_rootsearch(cfsubmatch_t fn, const char *rootname, void *aux)
893 1.1 glass {
894 1.102 thorpej cfdata_t cf;
895 1.84 matt const short *p;
896 1.1 glass struct matchinfo m;
897 1.1 glass
898 1.99 drochner m.fn = fn;
899 1.1 glass m.parent = ROOT;
900 1.25 cgd m.aux = aux;
901 1.14 mycroft m.match = NULL;
902 1.1 glass m.pri = 0;
903 1.114 christos m.locs = 0;
904 1.1 glass /*
905 1.1 glass * Look at root entries for matching name. We do not bother
906 1.1 glass * with found-state here since only one root should ever be
907 1.1 glass * searched (and it must be done first).
908 1.1 glass */
909 1.1 glass for (p = cfroots; *p >= 0; p++) {
910 1.1 glass cf = &cfdata[*p];
911 1.67 thorpej if (strcmp(cf->cf_name, rootname) == 0)
912 1.16 mycroft mapply(&m, cf);
913 1.1 glass }
914 1.1 glass return (m.match);
915 1.1 glass }
916 1.1 glass
917 1.83 jdolecek static const char * const msgs[3] = { "", " not configured\n", " unsupported\n" };
918 1.1 glass
919 1.1 glass /*
920 1.1 glass * The given `aux' argument describes a device that has been found
921 1.1 glass * on the given parent, but not necessarily configured. Locate the
922 1.18 cgd * configuration data for that device (using the submatch function
923 1.18 cgd * provided, or using candidates' cd_match configuration driver
924 1.18 cgd * functions) and attach it, and return true. If the device was
925 1.1 glass * not configured, call the given `print' function and return 0.
926 1.1 glass */
927 1.102 thorpej device_t
928 1.102 thorpej config_found_sm_loc(device_t parent,
929 1.99 drochner const char *ifattr, const int *locs, void *aux,
930 1.95 drochner cfprint_t print, cfsubmatch_t submatch)
931 1.90 drochner {
932 1.102 thorpej cfdata_t cf;
933 1.90 drochner
934 1.105 jmcneill #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
935 1.105 jmcneill if (splash_progress_state)
936 1.105 jmcneill splash_progress_update(splash_progress_state);
937 1.105 jmcneill #endif
938 1.105 jmcneill
939 1.99 drochner if ((cf = config_search_loc(submatch, parent, ifattr, locs, aux)))
940 1.99 drochner return(config_attach_loc(parent, cf, locs, aux, print));
941 1.90 drochner if (print) {
942 1.90 drochner if (config_do_twiddle)
943 1.90 drochner twiddle();
944 1.90 drochner aprint_normal("%s", msgs[(*print)(aux, parent->dv_xname)]);
945 1.90 drochner }
946 1.105 jmcneill
947 1.105 jmcneill #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
948 1.105 jmcneill if (splash_progress_state)
949 1.105 jmcneill splash_progress_update(splash_progress_state);
950 1.105 jmcneill #endif
951 1.105 jmcneill
952 1.90 drochner return (NULL);
953 1.90 drochner }
954 1.90 drochner
955 1.102 thorpej device_t
956 1.102 thorpej config_found_ia(device_t parent, const char *ifattr, void *aux,
957 1.102 thorpej cfprint_t print)
958 1.102 thorpej {
959 1.102 thorpej
960 1.102 thorpej return (config_found_sm_loc(parent, ifattr, NULL, aux, print, NULL));
961 1.102 thorpej }
962 1.102 thorpej
963 1.102 thorpej device_t
964 1.102 thorpej config_found(device_t parent, void *aux, cfprint_t print)
965 1.102 thorpej {
966 1.102 thorpej
967 1.102 thorpej return (config_found_sm_loc(parent, NULL, NULL, aux, print, NULL));
968 1.102 thorpej }
969 1.102 thorpej
970 1.1 glass /*
971 1.1 glass * As above, but for root devices.
972 1.1 glass */
973 1.102 thorpej device_t
974 1.52 cgd config_rootfound(const char *rootname, void *aux)
975 1.1 glass {
976 1.102 thorpej cfdata_t cf;
977 1.25 cgd
978 1.95 drochner if ((cf = config_rootsearch((cfsubmatch_t)NULL, rootname, aux)) != NULL)
979 1.25 cgd return (config_attach(ROOT, cf, aux, (cfprint_t)NULL));
980 1.80 thorpej aprint_error("root device %s not configured\n", rootname);
981 1.21 cgd return (NULL);
982 1.1 glass }
983 1.1 glass
984 1.1 glass /* just like sprintf(buf, "%d") except that it works from the end */
985 1.1 glass static char *
986 1.51 cgd number(char *ep, int n)
987 1.1 glass {
988 1.1 glass
989 1.1 glass *--ep = 0;
990 1.1 glass while (n >= 10) {
991 1.1 glass *--ep = (n % 10) + '0';
992 1.1 glass n /= 10;
993 1.1 glass }
994 1.1 glass *--ep = n + '0';
995 1.1 glass return (ep);
996 1.1 glass }
997 1.1 glass
998 1.1 glass /*
999 1.59 augustss * Expand the size of the cd_devs array if necessary.
1000 1.59 augustss */
1001 1.117 drochner static void
1002 1.59 augustss config_makeroom(int n, struct cfdriver *cd)
1003 1.59 augustss {
1004 1.59 augustss int old, new;
1005 1.59 augustss void **nsp;
1006 1.59 augustss
1007 1.59 augustss if (n < cd->cd_ndevs)
1008 1.59 augustss return;
1009 1.59 augustss
1010 1.59 augustss /*
1011 1.59 augustss * Need to expand the array.
1012 1.59 augustss */
1013 1.59 augustss old = cd->cd_ndevs;
1014 1.61 thorpej if (old == 0)
1015 1.115 chs new = 4;
1016 1.59 augustss else
1017 1.59 augustss new = old * 2;
1018 1.59 augustss while (new <= n)
1019 1.59 augustss new *= 2;
1020 1.59 augustss cd->cd_ndevs = new;
1021 1.59 augustss nsp = malloc(new * sizeof(void *), M_DEVBUF,
1022 1.93 perry cold ? M_NOWAIT : M_WAITOK);
1023 1.60 augustss if (nsp == NULL)
1024 1.59 augustss panic("config_attach: %sing dev array",
1025 1.59 augustss old != 0 ? "expand" : "creat");
1026 1.59 augustss memset(nsp + old, 0, (new - old) * sizeof(void *));
1027 1.61 thorpej if (old != 0) {
1028 1.59 augustss memcpy(nsp, cd->cd_devs, old * sizeof(void *));
1029 1.59 augustss free(cd->cd_devs, M_DEVBUF);
1030 1.59 augustss }
1031 1.59 augustss cd->cd_devs = nsp;
1032 1.59 augustss }
1033 1.59 augustss
1034 1.117 drochner static void
1035 1.117 drochner config_devlink(device_t dev)
1036 1.117 drochner {
1037 1.117 drochner struct cfdriver *cd = dev->dv_cfdriver;
1038 1.117 drochner
1039 1.117 drochner /* put this device in the devices array */
1040 1.117 drochner config_makeroom(dev->dv_unit, cd);
1041 1.117 drochner if (cd->cd_devs[dev->dv_unit])
1042 1.117 drochner panic("config_attach: duplicate %s", dev->dv_xname);
1043 1.117 drochner cd->cd_devs[dev->dv_unit] = dev;
1044 1.117 drochner
1045 1.117 drochner TAILQ_INSERT_TAIL(&alldevs, dev, dv_list); /* link up */
1046 1.117 drochner }
1047 1.117 drochner
1048 1.117 drochner static void
1049 1.117 drochner config_devunlink(device_t dev)
1050 1.117 drochner {
1051 1.117 drochner struct cfdriver *cd = dev->dv_cfdriver;
1052 1.117 drochner int i;
1053 1.117 drochner
1054 1.117 drochner /* Unlink from device list. */
1055 1.117 drochner TAILQ_REMOVE(&alldevs, dev, dv_list);
1056 1.117 drochner
1057 1.117 drochner /* Remove from cfdriver's array. */
1058 1.117 drochner cd->cd_devs[dev->dv_unit] = NULL;
1059 1.117 drochner
1060 1.117 drochner /*
1061 1.117 drochner * If the device now has no units in use, deallocate its softc array.
1062 1.117 drochner */
1063 1.117 drochner for (i = 0; i < cd->cd_ndevs; i++)
1064 1.117 drochner if (cd->cd_devs[i] != NULL)
1065 1.117 drochner break;
1066 1.117 drochner if (i == cd->cd_ndevs) { /* nothing found; deallocate */
1067 1.117 drochner free(cd->cd_devs, M_DEVBUF);
1068 1.117 drochner cd->cd_devs = NULL;
1069 1.117 drochner cd->cd_ndevs = 0;
1070 1.117 drochner }
1071 1.117 drochner }
1072 1.117 drochner
1073 1.117 drochner static device_t
1074 1.117 drochner config_devalloc(const device_t parent, const cfdata_t cf, const int *locs)
1075 1.25 cgd {
1076 1.50 augustss struct cfdriver *cd;
1077 1.76 thorpej struct cfattach *ca;
1078 1.50 augustss size_t lname, lunit;
1079 1.52 cgd const char *xunit;
1080 1.25 cgd int myunit;
1081 1.25 cgd char num[10];
1082 1.117 drochner device_t dev;
1083 1.120 joerg void *dev_private;
1084 1.96 drochner const struct cfiattrdata *ia;
1085 1.25 cgd
1086 1.67 thorpej cd = config_cfdriver_lookup(cf->cf_name);
1087 1.117 drochner if (cd == NULL)
1088 1.117 drochner return (NULL);
1089 1.76 thorpej
1090 1.76 thorpej ca = config_cfattach_lookup_cd(cd, cf->cf_atname);
1091 1.117 drochner if (ca == NULL)
1092 1.117 drochner return (NULL);
1093 1.76 thorpej
1094 1.120 joerg if ((ca->ca_flags & DVF_PRIV_ALLOC) == 0 &&
1095 1.120 joerg ca->ca_devsize < sizeof(struct device))
1096 1.117 drochner panic("config_devalloc");
1097 1.66 thorpej
1098 1.46 cgd #ifndef __BROKEN_CONFIG_UNIT_USAGE
1099 1.45 cgd if (cf->cf_fstate == FSTATE_STAR) {
1100 1.45 cgd for (myunit = cf->cf_unit; myunit < cd->cd_ndevs; myunit++)
1101 1.45 cgd if (cd->cd_devs[myunit] == NULL)
1102 1.45 cgd break;
1103 1.45 cgd /*
1104 1.45 cgd * myunit is now the unit of the first NULL device pointer,
1105 1.45 cgd * or max(cd->cd_ndevs,cf->cf_unit).
1106 1.45 cgd */
1107 1.45 cgd } else {
1108 1.45 cgd myunit = cf->cf_unit;
1109 1.117 drochner if (myunit < cd->cd_ndevs && cd->cd_devs[myunit] != NULL)
1110 1.117 drochner return (NULL);
1111 1.117 drochner }
1112 1.66 thorpej #else
1113 1.46 cgd myunit = cf->cf_unit;
1114 1.66 thorpej #endif /* ! __BROKEN_CONFIG_UNIT_USAGE */
1115 1.25 cgd
1116 1.25 cgd /* compute length of name and decimal expansion of unit number */
1117 1.25 cgd lname = strlen(cd->cd_name);
1118 1.30 perry xunit = number(&num[sizeof(num)], myunit);
1119 1.30 perry lunit = &num[sizeof(num)] - xunit;
1120 1.64 drochner if (lname + lunit > sizeof(dev->dv_xname))
1121 1.117 drochner panic("config_devalloc: device name too long");
1122 1.25 cgd
1123 1.25 cgd /* get memory for all device vars */
1124 1.120 joerg dev_private = malloc(ca->ca_devsize, M_DEVBUF,
1125 1.120 joerg M_ZERO | (cold ? M_NOWAIT : M_WAITOK));
1126 1.120 joerg if (dev_private == NULL)
1127 1.117 drochner panic("config_devalloc: memory allocation for device softc failed");
1128 1.120 joerg
1129 1.120 joerg if ((ca->ca_flags & DVF_PRIV_ALLOC) != 0) {
1130 1.120 joerg dev = malloc(sizeof(struct device), M_DEVBUF,
1131 1.120 joerg M_ZERO | (cold ? M_NOWAIT : M_WAITOK));
1132 1.120 joerg } else {
1133 1.120 joerg dev = dev_private;
1134 1.120 joerg }
1135 1.120 joerg if (dev == NULL)
1136 1.120 joerg panic("config_devalloc: memory allocation for device_t failed");
1137 1.124 jmcneill
1138 1.25 cgd dev->dv_class = cd->cd_class;
1139 1.25 cgd dev->dv_cfdata = cf;
1140 1.76 thorpej dev->dv_cfdriver = cd;
1141 1.76 thorpej dev->dv_cfattach = ca;
1142 1.25 cgd dev->dv_unit = myunit;
1143 1.124 jmcneill dev->dv_activity_count = 0;
1144 1.124 jmcneill dev->dv_activity_handlers = NULL;
1145 1.120 joerg dev->dv_private = dev_private;
1146 1.31 perry memcpy(dev->dv_xname, cd->cd_name, lname);
1147 1.31 perry memcpy(dev->dv_xname + lname, xunit, lunit);
1148 1.25 cgd dev->dv_parent = parent;
1149 1.124 jmcneill if (parent != NULL)
1150 1.124 jmcneill dev->dv_depth = parent->dv_depth + 1;
1151 1.124 jmcneill else
1152 1.124 jmcneill dev->dv_depth = 0;
1153 1.33 thorpej dev->dv_flags = DVF_ACTIVE; /* always initially active */
1154 1.120 joerg dev->dv_flags |= ca->ca_flags; /* inherit flags from class */
1155 1.97 drochner if (locs) {
1156 1.96 drochner KASSERT(parent); /* no locators at root */
1157 1.96 drochner ia = cfiattr_lookup(cf->cf_pspec->cfp_iattr,
1158 1.96 drochner parent->dv_cfdriver);
1159 1.96 drochner dev->dv_locators = malloc(ia->ci_loclen * sizeof(int),
1160 1.90 drochner M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
1161 1.97 drochner memcpy(dev->dv_locators, locs, ia->ci_loclen * sizeof(int));
1162 1.90 drochner }
1163 1.112 thorpej dev->dv_properties = prop_dictionary_create();
1164 1.112 thorpej KASSERT(dev->dv_properties != NULL);
1165 1.29 thorpej
1166 1.117 drochner return (dev);
1167 1.117 drochner }
1168 1.117 drochner
1169 1.117 drochner static void
1170 1.117 drochner config_devdealloc(device_t dev)
1171 1.117 drochner {
1172 1.117 drochner
1173 1.117 drochner KASSERT(dev->dv_properties != NULL);
1174 1.117 drochner prop_object_release(dev->dv_properties);
1175 1.117 drochner
1176 1.124 jmcneill if (dev->dv_activity_handlers)
1177 1.124 jmcneill panic("config_devdealloc with registered handlers");
1178 1.124 jmcneill
1179 1.117 drochner if (dev->dv_locators)
1180 1.117 drochner free(dev->dv_locators, M_DEVBUF);
1181 1.117 drochner
1182 1.120 joerg if ((dev->dv_flags & DVF_PRIV_ALLOC) != 0)
1183 1.120 joerg free(dev->dv_private, M_DEVBUF);
1184 1.120 joerg
1185 1.117 drochner free(dev, M_DEVBUF);
1186 1.117 drochner }
1187 1.117 drochner
1188 1.117 drochner /*
1189 1.117 drochner * Attach a found device.
1190 1.117 drochner */
1191 1.117 drochner device_t
1192 1.117 drochner config_attach_loc(device_t parent, cfdata_t cf,
1193 1.117 drochner const int *locs, void *aux, cfprint_t print)
1194 1.117 drochner {
1195 1.117 drochner device_t dev;
1196 1.117 drochner struct cftable *ct;
1197 1.117 drochner const char *drvname;
1198 1.117 drochner
1199 1.117 drochner #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
1200 1.117 drochner if (splash_progress_state)
1201 1.117 drochner splash_progress_update(splash_progress_state);
1202 1.117 drochner #endif
1203 1.117 drochner
1204 1.117 drochner dev = config_devalloc(parent, cf, locs);
1205 1.117 drochner if (!dev)
1206 1.117 drochner panic("config_attach: allocation of device softc failed");
1207 1.117 drochner
1208 1.117 drochner /* XXX redundant - see below? */
1209 1.117 drochner if (cf->cf_fstate != FSTATE_STAR) {
1210 1.117 drochner KASSERT(cf->cf_fstate == FSTATE_NOTFOUND);
1211 1.117 drochner cf->cf_fstate = FSTATE_FOUND;
1212 1.117 drochner }
1213 1.117 drochner #ifdef __BROKEN_CONFIG_UNIT_USAGE
1214 1.117 drochner else
1215 1.117 drochner cf->cf_unit++;
1216 1.117 drochner #endif
1217 1.117 drochner
1218 1.117 drochner config_devlink(dev);
1219 1.117 drochner
1220 1.80 thorpej if (config_do_twiddle)
1221 1.80 thorpej twiddle();
1222 1.80 thorpej else
1223 1.80 thorpej aprint_naive("Found ");
1224 1.80 thorpej /*
1225 1.80 thorpej * We want the next two printfs for normal, verbose, and quiet,
1226 1.80 thorpej * but not silent (in which case, we're twiddling, instead).
1227 1.80 thorpej */
1228 1.80 thorpej if (parent == ROOT) {
1229 1.85 thorpej aprint_naive("%s (root)", dev->dv_xname);
1230 1.85 thorpej aprint_normal("%s (root)", dev->dv_xname);
1231 1.80 thorpej } else {
1232 1.85 thorpej aprint_naive("%s at %s", dev->dv_xname, parent->dv_xname);
1233 1.85 thorpej aprint_normal("%s at %s", dev->dv_xname, parent->dv_xname);
1234 1.25 cgd if (print)
1235 1.52 cgd (void) (*print)(aux, NULL);
1236 1.25 cgd }
1237 1.25 cgd
1238 1.25 cgd /*
1239 1.25 cgd * Before attaching, clobber any unfound devices that are
1240 1.45 cgd * otherwise identical.
1241 1.117 drochner * XXX code above is redundant?
1242 1.25 cgd */
1243 1.117 drochner drvname = dev->dv_cfdriver->cd_name;
1244 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
1245 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
1246 1.117 drochner if (STREQ(cf->cf_name, drvname) &&
1247 1.65 thorpej cf->cf_unit == dev->dv_unit) {
1248 1.65 thorpej if (cf->cf_fstate == FSTATE_NOTFOUND)
1249 1.65 thorpej cf->cf_fstate = FSTATE_FOUND;
1250 1.46 cgd #ifdef __BROKEN_CONFIG_UNIT_USAGE
1251 1.66 thorpej /*
1252 1.66 thorpej * Bump the unit number on all starred cfdata
1253 1.66 thorpej * entries for this device.
1254 1.66 thorpej */
1255 1.65 thorpej if (cf->cf_fstate == FSTATE_STAR)
1256 1.65 thorpej cf->cf_unit++;
1257 1.46 cgd #endif /* __BROKEN_CONFIG_UNIT_USAGE */
1258 1.65 thorpej }
1259 1.25 cgd }
1260 1.65 thorpej }
1261 1.49 danw #ifdef __HAVE_DEVICE_REGISTER
1262 1.25 cgd device_register(dev, aux);
1263 1.25 cgd #endif
1264 1.124 jmcneill
1265 1.105 jmcneill #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
1266 1.105 jmcneill if (splash_progress_state)
1267 1.105 jmcneill splash_progress_update(splash_progress_state);
1268 1.105 jmcneill #endif
1269 1.117 drochner (*dev->dv_cfattach->ca_attach)(parent, dev, aux);
1270 1.105 jmcneill #if defined(SPLASHSCREEN) && defined(SPLASHSCREEN_PROGRESS)
1271 1.105 jmcneill if (splash_progress_state)
1272 1.105 jmcneill splash_progress_update(splash_progress_state);
1273 1.105 jmcneill #endif
1274 1.124 jmcneill
1275 1.124 jmcneill if (!device_pmf_is_registered(dev))
1276 1.124 jmcneill aprint_error_dev(dev, "WARNING: power management not supported\n");
1277 1.124 jmcneill
1278 1.42 thorpej config_process_deferred(&deferred_config_queue, dev);
1279 1.25 cgd return (dev);
1280 1.25 cgd }
1281 1.29 thorpej
1282 1.102 thorpej device_t
1283 1.102 thorpej config_attach(device_t parent, cfdata_t cf, void *aux, cfprint_t print)
1284 1.102 thorpej {
1285 1.102 thorpej
1286 1.102 thorpej return (config_attach_loc(parent, cf, NULL, aux, print));
1287 1.102 thorpej }
1288 1.102 thorpej
1289 1.29 thorpej /*
1290 1.77 thorpej * As above, but for pseudo-devices. Pseudo-devices attached in this
1291 1.77 thorpej * way are silently inserted into the device tree, and their children
1292 1.77 thorpej * attached.
1293 1.77 thorpej *
1294 1.77 thorpej * Note that because pseudo-devices are attached silently, any information
1295 1.77 thorpej * the attach routine wishes to print should be prefixed with the device
1296 1.77 thorpej * name by the attach routine.
1297 1.77 thorpej */
1298 1.102 thorpej device_t
1299 1.102 thorpej config_attach_pseudo(cfdata_t cf)
1300 1.77 thorpej {
1301 1.102 thorpej device_t dev;
1302 1.77 thorpej
1303 1.117 drochner dev = config_devalloc(ROOT, cf, NULL);
1304 1.117 drochner if (!dev)
1305 1.77 thorpej return (NULL);
1306 1.77 thorpej
1307 1.117 drochner /* XXX mark busy in cfdata */
1308 1.77 thorpej
1309 1.117 drochner config_devlink(dev);
1310 1.77 thorpej
1311 1.77 thorpej #if 0 /* XXXJRT not yet */
1312 1.77 thorpej #ifdef __HAVE_DEVICE_REGISTER
1313 1.77 thorpej device_register(dev, NULL); /* like a root node */
1314 1.77 thorpej #endif
1315 1.77 thorpej #endif
1316 1.117 drochner (*dev->dv_cfattach->ca_attach)(ROOT, dev, NULL);
1317 1.77 thorpej config_process_deferred(&deferred_config_queue, dev);
1318 1.77 thorpej return (dev);
1319 1.77 thorpej }
1320 1.77 thorpej
1321 1.77 thorpej /*
1322 1.33 thorpej * Detach a device. Optionally forced (e.g. because of hardware
1323 1.33 thorpej * removal) and quiet. Returns zero if successful, non-zero
1324 1.33 thorpej * (an error code) otherwise.
1325 1.33 thorpej *
1326 1.33 thorpej * Note that this code wants to be run from a process context, so
1327 1.33 thorpej * that the detach can sleep to allow processes which have a device
1328 1.33 thorpej * open to run and unwind their stacks.
1329 1.33 thorpej */
1330 1.33 thorpej int
1331 1.102 thorpej config_detach(device_t dev, int flags)
1332 1.33 thorpej {
1333 1.65 thorpej struct cftable *ct;
1334 1.102 thorpej cfdata_t cf;
1335 1.73 thorpej const struct cfattach *ca;
1336 1.33 thorpej struct cfdriver *cd;
1337 1.33 thorpej #ifdef DIAGNOSTIC
1338 1.102 thorpej device_t d;
1339 1.33 thorpej #endif
1340 1.117 drochner int rv = 0;
1341 1.33 thorpej
1342 1.33 thorpej #ifdef DIAGNOSTIC
1343 1.77 thorpej if (dev->dv_cfdata != NULL &&
1344 1.77 thorpej dev->dv_cfdata->cf_fstate != FSTATE_FOUND &&
1345 1.77 thorpej dev->dv_cfdata->cf_fstate != FSTATE_STAR)
1346 1.33 thorpej panic("config_detach: bad device fstate");
1347 1.33 thorpej #endif
1348 1.77 thorpej cd = dev->dv_cfdriver;
1349 1.67 thorpej KASSERT(cd != NULL);
1350 1.76 thorpej
1351 1.77 thorpej ca = dev->dv_cfattach;
1352 1.76 thorpej KASSERT(ca != NULL);
1353 1.33 thorpej
1354 1.33 thorpej /*
1355 1.33 thorpej * Ensure the device is deactivated. If the device doesn't
1356 1.33 thorpej * have an activation entry point, we allow DVF_ACTIVE to
1357 1.33 thorpej * remain set. Otherwise, if DVF_ACTIVE is still set, the
1358 1.33 thorpej * device is busy, and the detach fails.
1359 1.33 thorpej */
1360 1.35 thorpej if (ca->ca_activate != NULL)
1361 1.35 thorpej rv = config_deactivate(dev);
1362 1.33 thorpej
1363 1.33 thorpej /*
1364 1.33 thorpej * Try to detach the device. If that's not possible, then
1365 1.33 thorpej * we either panic() (for the forced but failed case), or
1366 1.33 thorpej * return an error.
1367 1.33 thorpej */
1368 1.33 thorpej if (rv == 0) {
1369 1.33 thorpej if (ca->ca_detach != NULL)
1370 1.33 thorpej rv = (*ca->ca_detach)(dev, flags);
1371 1.33 thorpej else
1372 1.33 thorpej rv = EOPNOTSUPP;
1373 1.33 thorpej }
1374 1.33 thorpej if (rv != 0) {
1375 1.33 thorpej if ((flags & DETACH_FORCE) == 0)
1376 1.33 thorpej return (rv);
1377 1.33 thorpej else
1378 1.33 thorpej panic("config_detach: forced detach of %s failed (%d)",
1379 1.33 thorpej dev->dv_xname, rv);
1380 1.33 thorpej }
1381 1.33 thorpej
1382 1.33 thorpej /*
1383 1.33 thorpej * The device has now been successfully detached.
1384 1.33 thorpej */
1385 1.33 thorpej
1386 1.33 thorpej #ifdef DIAGNOSTIC
1387 1.33 thorpej /*
1388 1.33 thorpej * Sanity: If you're successfully detached, you should have no
1389 1.33 thorpej * children. (Note that because children must be attached
1390 1.33 thorpej * after parents, we only need to search the latter part of
1391 1.33 thorpej * the list.)
1392 1.33 thorpej */
1393 1.33 thorpej for (d = TAILQ_NEXT(dev, dv_list); d != NULL;
1394 1.48 enami d = TAILQ_NEXT(d, dv_list)) {
1395 1.48 enami if (d->dv_parent == dev) {
1396 1.48 enami printf("config_detach: detached device %s"
1397 1.48 enami " has children %s\n", dev->dv_xname, d->dv_xname);
1398 1.48 enami panic("config_detach");
1399 1.48 enami }
1400 1.33 thorpej }
1401 1.33 thorpej #endif
1402 1.33 thorpej
1403 1.90 drochner /* notify the parent that the child is gone */
1404 1.90 drochner if (dev->dv_parent) {
1405 1.102 thorpej device_t p = dev->dv_parent;
1406 1.90 drochner if (p->dv_cfattach->ca_childdetached)
1407 1.90 drochner (*p->dv_cfattach->ca_childdetached)(p, dev);
1408 1.90 drochner }
1409 1.90 drochner
1410 1.33 thorpej /*
1411 1.33 thorpej * Mark cfdata to show that the unit can be reused, if possible.
1412 1.33 thorpej */
1413 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
1414 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
1415 1.67 thorpej if (STREQ(cf->cf_name, cd->cd_name)) {
1416 1.65 thorpej if (cf->cf_fstate == FSTATE_FOUND &&
1417 1.65 thorpej cf->cf_unit == dev->dv_unit)
1418 1.65 thorpej cf->cf_fstate = FSTATE_NOTFOUND;
1419 1.46 cgd #ifdef __BROKEN_CONFIG_UNIT_USAGE
1420 1.66 thorpej /*
1421 1.66 thorpej * Note that we can only re-use a starred
1422 1.66 thorpej * unit number if the unit being detached
1423 1.66 thorpej * had the last assigned unit number.
1424 1.66 thorpej */
1425 1.65 thorpej if (cf->cf_fstate == FSTATE_STAR &&
1426 1.65 thorpej cf->cf_unit == dev->dv_unit + 1)
1427 1.65 thorpej cf->cf_unit--;
1428 1.46 cgd #endif /* __BROKEN_CONFIG_UNIT_USAGE */
1429 1.65 thorpej }
1430 1.33 thorpej }
1431 1.33 thorpej }
1432 1.33 thorpej
1433 1.117 drochner config_devunlink(dev);
1434 1.33 thorpej
1435 1.77 thorpej if (dev->dv_cfdata != NULL && (flags & DETACH_QUIET) == 0)
1436 1.80 thorpej aprint_normal("%s detached\n", dev->dv_xname);
1437 1.33 thorpej
1438 1.117 drochner config_devdealloc(dev);
1439 1.33 thorpej
1440 1.33 thorpej return (0);
1441 1.33 thorpej }
1442 1.33 thorpej
1443 1.33 thorpej int
1444 1.102 thorpej config_activate(device_t dev)
1445 1.33 thorpej {
1446 1.76 thorpej const struct cfattach *ca = dev->dv_cfattach;
1447 1.34 thorpej int rv = 0, oflags = dev->dv_flags;
1448 1.33 thorpej
1449 1.33 thorpej if (ca->ca_activate == NULL)
1450 1.33 thorpej return (EOPNOTSUPP);
1451 1.33 thorpej
1452 1.33 thorpej if ((dev->dv_flags & DVF_ACTIVE) == 0) {
1453 1.33 thorpej dev->dv_flags |= DVF_ACTIVE;
1454 1.33 thorpej rv = (*ca->ca_activate)(dev, DVACT_ACTIVATE);
1455 1.34 thorpej if (rv)
1456 1.34 thorpej dev->dv_flags = oflags;
1457 1.33 thorpej }
1458 1.33 thorpej return (rv);
1459 1.33 thorpej }
1460 1.33 thorpej
1461 1.33 thorpej int
1462 1.102 thorpej config_deactivate(device_t dev)
1463 1.33 thorpej {
1464 1.76 thorpej const struct cfattach *ca = dev->dv_cfattach;
1465 1.34 thorpej int rv = 0, oflags = dev->dv_flags;
1466 1.33 thorpej
1467 1.33 thorpej if (ca->ca_activate == NULL)
1468 1.33 thorpej return (EOPNOTSUPP);
1469 1.33 thorpej
1470 1.33 thorpej if (dev->dv_flags & DVF_ACTIVE) {
1471 1.33 thorpej dev->dv_flags &= ~DVF_ACTIVE;
1472 1.33 thorpej rv = (*ca->ca_activate)(dev, DVACT_DEACTIVATE);
1473 1.34 thorpej if (rv)
1474 1.34 thorpej dev->dv_flags = oflags;
1475 1.33 thorpej }
1476 1.33 thorpej return (rv);
1477 1.33 thorpej }
1478 1.33 thorpej
1479 1.33 thorpej /*
1480 1.29 thorpej * Defer the configuration of the specified device until all
1481 1.29 thorpej * of its parent's devices have been attached.
1482 1.29 thorpej */
1483 1.29 thorpej void
1484 1.102 thorpej config_defer(device_t dev, void (*func)(device_t))
1485 1.29 thorpej {
1486 1.29 thorpej struct deferred_config *dc;
1487 1.29 thorpej
1488 1.29 thorpej if (dev->dv_parent == NULL)
1489 1.29 thorpej panic("config_defer: can't defer config of a root device");
1490 1.29 thorpej
1491 1.29 thorpej #ifdef DIAGNOSTIC
1492 1.29 thorpej for (dc = TAILQ_FIRST(&deferred_config_queue); dc != NULL;
1493 1.29 thorpej dc = TAILQ_NEXT(dc, dc_queue)) {
1494 1.29 thorpej if (dc->dc_dev == dev)
1495 1.29 thorpej panic("config_defer: deferred twice");
1496 1.29 thorpej }
1497 1.29 thorpej #endif
1498 1.29 thorpej
1499 1.43 thorpej dc = malloc(sizeof(*dc), M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
1500 1.43 thorpej if (dc == NULL)
1501 1.43 thorpej panic("config_defer: unable to allocate callback");
1502 1.29 thorpej
1503 1.29 thorpej dc->dc_dev = dev;
1504 1.29 thorpej dc->dc_func = func;
1505 1.29 thorpej TAILQ_INSERT_TAIL(&deferred_config_queue, dc, dc_queue);
1506 1.47 thorpej config_pending_incr();
1507 1.29 thorpej }
1508 1.29 thorpej
1509 1.29 thorpej /*
1510 1.42 thorpej * Defer some autoconfiguration for a device until after interrupts
1511 1.42 thorpej * are enabled.
1512 1.42 thorpej */
1513 1.42 thorpej void
1514 1.102 thorpej config_interrupts(device_t dev, void (*func)(device_t))
1515 1.42 thorpej {
1516 1.42 thorpej struct deferred_config *dc;
1517 1.42 thorpej
1518 1.42 thorpej /*
1519 1.42 thorpej * If interrupts are enabled, callback now.
1520 1.42 thorpej */
1521 1.43 thorpej if (cold == 0) {
1522 1.42 thorpej (*func)(dev);
1523 1.42 thorpej return;
1524 1.42 thorpej }
1525 1.42 thorpej
1526 1.42 thorpej #ifdef DIAGNOSTIC
1527 1.42 thorpej for (dc = TAILQ_FIRST(&interrupt_config_queue); dc != NULL;
1528 1.42 thorpej dc = TAILQ_NEXT(dc, dc_queue)) {
1529 1.42 thorpej if (dc->dc_dev == dev)
1530 1.42 thorpej panic("config_interrupts: deferred twice");
1531 1.42 thorpej }
1532 1.42 thorpej #endif
1533 1.42 thorpej
1534 1.43 thorpej dc = malloc(sizeof(*dc), M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
1535 1.43 thorpej if (dc == NULL)
1536 1.43 thorpej panic("config_interrupts: unable to allocate callback");
1537 1.42 thorpej
1538 1.42 thorpej dc->dc_dev = dev;
1539 1.42 thorpej dc->dc_func = func;
1540 1.42 thorpej TAILQ_INSERT_TAIL(&interrupt_config_queue, dc, dc_queue);
1541 1.47 thorpej config_pending_incr();
1542 1.42 thorpej }
1543 1.42 thorpej
1544 1.42 thorpej /*
1545 1.42 thorpej * Process a deferred configuration queue.
1546 1.29 thorpej */
1547 1.29 thorpej static void
1548 1.51 cgd config_process_deferred(struct deferred_config_head *queue,
1549 1.102 thorpej device_t parent)
1550 1.29 thorpej {
1551 1.29 thorpej struct deferred_config *dc, *ndc;
1552 1.29 thorpej
1553 1.42 thorpej for (dc = TAILQ_FIRST(queue); dc != NULL; dc = ndc) {
1554 1.29 thorpej ndc = TAILQ_NEXT(dc, dc_queue);
1555 1.42 thorpej if (parent == NULL || dc->dc_dev->dv_parent == parent) {
1556 1.42 thorpej TAILQ_REMOVE(queue, dc, dc_queue);
1557 1.29 thorpej (*dc->dc_func)(dc->dc_dev);
1558 1.29 thorpej free(dc, M_DEVBUF);
1559 1.47 thorpej config_pending_decr();
1560 1.29 thorpej }
1561 1.29 thorpej }
1562 1.47 thorpej }
1563 1.47 thorpej
1564 1.47 thorpej /*
1565 1.47 thorpej * Manipulate the config_pending semaphore.
1566 1.47 thorpej */
1567 1.47 thorpej void
1568 1.51 cgd config_pending_incr(void)
1569 1.47 thorpej {
1570 1.47 thorpej
1571 1.47 thorpej config_pending++;
1572 1.47 thorpej }
1573 1.47 thorpej
1574 1.47 thorpej void
1575 1.51 cgd config_pending_decr(void)
1576 1.47 thorpej {
1577 1.47 thorpej
1578 1.47 thorpej #ifdef DIAGNOSTIC
1579 1.47 thorpej if (config_pending == 0)
1580 1.47 thorpej panic("config_pending_decr: config_pending == 0");
1581 1.47 thorpej #endif
1582 1.47 thorpej config_pending--;
1583 1.47 thorpej if (config_pending == 0)
1584 1.94 christos wakeup(&config_pending);
1585 1.75 thorpej }
1586 1.75 thorpej
1587 1.75 thorpej /*
1588 1.75 thorpej * Register a "finalization" routine. Finalization routines are
1589 1.75 thorpej * called iteratively once all real devices have been found during
1590 1.75 thorpej * autoconfiguration, for as long as any one finalizer has done
1591 1.75 thorpej * any work.
1592 1.75 thorpej */
1593 1.75 thorpej int
1594 1.102 thorpej config_finalize_register(device_t dev, int (*fn)(device_t))
1595 1.75 thorpej {
1596 1.75 thorpej struct finalize_hook *f;
1597 1.75 thorpej
1598 1.75 thorpej /*
1599 1.75 thorpej * If finalization has already been done, invoke the
1600 1.75 thorpej * callback function now.
1601 1.75 thorpej */
1602 1.75 thorpej if (config_finalize_done) {
1603 1.75 thorpej while ((*fn)(dev) != 0)
1604 1.75 thorpej /* loop */ ;
1605 1.75 thorpej }
1606 1.75 thorpej
1607 1.75 thorpej /* Ensure this isn't already on the list. */
1608 1.75 thorpej TAILQ_FOREACH(f, &config_finalize_list, f_list) {
1609 1.75 thorpej if (f->f_func == fn && f->f_dev == dev)
1610 1.75 thorpej return (EEXIST);
1611 1.75 thorpej }
1612 1.75 thorpej
1613 1.75 thorpej f = malloc(sizeof(*f), M_TEMP, M_WAITOK);
1614 1.75 thorpej f->f_func = fn;
1615 1.75 thorpej f->f_dev = dev;
1616 1.75 thorpej TAILQ_INSERT_TAIL(&config_finalize_list, f, f_list);
1617 1.75 thorpej
1618 1.75 thorpej return (0);
1619 1.75 thorpej }
1620 1.75 thorpej
1621 1.75 thorpej void
1622 1.75 thorpej config_finalize(void)
1623 1.75 thorpej {
1624 1.75 thorpej struct finalize_hook *f;
1625 1.75 thorpej int rv;
1626 1.75 thorpej
1627 1.75 thorpej /* Run the hooks until none of them does any work. */
1628 1.75 thorpej do {
1629 1.75 thorpej rv = 0;
1630 1.75 thorpej TAILQ_FOREACH(f, &config_finalize_list, f_list)
1631 1.75 thorpej rv |= (*f->f_func)(f->f_dev);
1632 1.75 thorpej } while (rv != 0);
1633 1.75 thorpej
1634 1.75 thorpej config_finalize_done = 1;
1635 1.75 thorpej
1636 1.75 thorpej /* Now free all the hooks. */
1637 1.75 thorpej while ((f = TAILQ_FIRST(&config_finalize_list)) != NULL) {
1638 1.75 thorpej TAILQ_REMOVE(&config_finalize_list, f, f_list);
1639 1.75 thorpej free(f, M_TEMP);
1640 1.79 thorpej }
1641 1.79 thorpej }
1642 1.79 thorpej
1643 1.104 thorpej /*
1644 1.107 thorpej * device_lookup:
1645 1.107 thorpej *
1646 1.107 thorpej * Look up a device instance for a given driver.
1647 1.107 thorpej */
1648 1.107 thorpej void *
1649 1.107 thorpej device_lookup(cfdriver_t cd, int unit)
1650 1.107 thorpej {
1651 1.107 thorpej
1652 1.107 thorpej if (unit < 0 || unit >= cd->cd_ndevs)
1653 1.107 thorpej return (NULL);
1654 1.107 thorpej
1655 1.107 thorpej return (cd->cd_devs[unit]);
1656 1.107 thorpej }
1657 1.107 thorpej
1658 1.107 thorpej /*
1659 1.107 thorpej * Accessor functions for the device_t type.
1660 1.107 thorpej */
1661 1.107 thorpej devclass_t
1662 1.107 thorpej device_class(device_t dev)
1663 1.107 thorpej {
1664 1.107 thorpej
1665 1.107 thorpej return (dev->dv_class);
1666 1.107 thorpej }
1667 1.107 thorpej
1668 1.107 thorpej cfdata_t
1669 1.107 thorpej device_cfdata(device_t dev)
1670 1.107 thorpej {
1671 1.107 thorpej
1672 1.107 thorpej return (dev->dv_cfdata);
1673 1.107 thorpej }
1674 1.107 thorpej
1675 1.107 thorpej cfdriver_t
1676 1.107 thorpej device_cfdriver(device_t dev)
1677 1.107 thorpej {
1678 1.107 thorpej
1679 1.107 thorpej return (dev->dv_cfdriver);
1680 1.107 thorpej }
1681 1.107 thorpej
1682 1.107 thorpej cfattach_t
1683 1.107 thorpej device_cfattach(device_t dev)
1684 1.107 thorpej {
1685 1.107 thorpej
1686 1.107 thorpej return (dev->dv_cfattach);
1687 1.107 thorpej }
1688 1.107 thorpej
1689 1.107 thorpej int
1690 1.107 thorpej device_unit(device_t dev)
1691 1.107 thorpej {
1692 1.107 thorpej
1693 1.107 thorpej return (dev->dv_unit);
1694 1.107 thorpej }
1695 1.107 thorpej
1696 1.107 thorpej const char *
1697 1.107 thorpej device_xname(device_t dev)
1698 1.107 thorpej {
1699 1.107 thorpej
1700 1.107 thorpej return (dev->dv_xname);
1701 1.107 thorpej }
1702 1.107 thorpej
1703 1.107 thorpej device_t
1704 1.107 thorpej device_parent(device_t dev)
1705 1.107 thorpej {
1706 1.107 thorpej
1707 1.107 thorpej return (dev->dv_parent);
1708 1.107 thorpej }
1709 1.107 thorpej
1710 1.116 thorpej bool
1711 1.107 thorpej device_is_active(device_t dev)
1712 1.107 thorpej {
1713 1.124 jmcneill int active_flags;
1714 1.124 jmcneill
1715 1.124 jmcneill active_flags = DVF_ACTIVE;
1716 1.124 jmcneill active_flags |= DVF_CLASS_SUSPENDED;
1717 1.124 jmcneill active_flags |= DVF_DRIVER_SUSPENDED;
1718 1.124 jmcneill active_flags |= DVF_BUS_SUSPENDED;
1719 1.124 jmcneill
1720 1.124 jmcneill return ((dev->dv_flags & active_flags) == DVF_ACTIVE);
1721 1.124 jmcneill }
1722 1.124 jmcneill
1723 1.124 jmcneill bool
1724 1.124 jmcneill device_is_enabled(device_t dev)
1725 1.124 jmcneill {
1726 1.124 jmcneill return (dev->dv_flags & DVF_ACTIVE) == DVF_ACTIVE;
1727 1.124 jmcneill }
1728 1.124 jmcneill
1729 1.124 jmcneill bool
1730 1.124 jmcneill device_has_power(device_t dev)
1731 1.124 jmcneill {
1732 1.124 jmcneill int active_flags;
1733 1.124 jmcneill
1734 1.124 jmcneill active_flags = DVF_ACTIVE | DVF_BUS_SUSPENDED;
1735 1.107 thorpej
1736 1.124 jmcneill return ((dev->dv_flags & active_flags) == DVF_ACTIVE);
1737 1.107 thorpej }
1738 1.107 thorpej
1739 1.109 thorpej int
1740 1.111 thorpej device_locator(device_t dev, u_int locnum)
1741 1.107 thorpej {
1742 1.107 thorpej
1743 1.109 thorpej KASSERT(dev->dv_locators != NULL);
1744 1.109 thorpej return (dev->dv_locators[locnum]);
1745 1.107 thorpej }
1746 1.108 thorpej
1747 1.110 thorpej void *
1748 1.110 thorpej device_private(device_t dev)
1749 1.110 thorpej {
1750 1.110 thorpej
1751 1.120 joerg return (dev->dv_private);
1752 1.110 thorpej }
1753 1.110 thorpej
1754 1.112 thorpej prop_dictionary_t
1755 1.112 thorpej device_properties(device_t dev)
1756 1.112 thorpej {
1757 1.112 thorpej
1758 1.112 thorpej return (dev->dv_properties);
1759 1.112 thorpej }
1760 1.112 thorpej
1761 1.108 thorpej /*
1762 1.108 thorpej * device_is_a:
1763 1.108 thorpej *
1764 1.108 thorpej * Returns true if the device is an instance of the specified
1765 1.108 thorpej * driver.
1766 1.108 thorpej */
1767 1.116 thorpej bool
1768 1.108 thorpej device_is_a(device_t dev, const char *dname)
1769 1.108 thorpej {
1770 1.108 thorpej
1771 1.108 thorpej return (strcmp(dev->dv_cfdriver->cd_name, dname) == 0);
1772 1.108 thorpej }
1773 1.124 jmcneill
1774 1.124 jmcneill /*
1775 1.124 jmcneill * Power management related functions.
1776 1.124 jmcneill */
1777 1.124 jmcneill
1778 1.124 jmcneill bool
1779 1.124 jmcneill device_pmf_is_registered(device_t dev)
1780 1.124 jmcneill {
1781 1.124 jmcneill return (dev->dv_flags & DVF_POWER_HANDLERS) != 0;
1782 1.124 jmcneill }
1783 1.124 jmcneill
1784 1.124 jmcneill bool
1785 1.124 jmcneill device_pmf_driver_suspend(device_t dev)
1786 1.124 jmcneill {
1787 1.124 jmcneill if ((dev->dv_flags & DVF_DRIVER_SUSPENDED) != 0)
1788 1.124 jmcneill return true;
1789 1.124 jmcneill if ((dev->dv_flags & DVF_CLASS_SUSPENDED) == 0)
1790 1.124 jmcneill return false;
1791 1.124 jmcneill if (*dev->dv_driver_suspend != NULL &&
1792 1.124 jmcneill !(*dev->dv_driver_suspend)(dev))
1793 1.124 jmcneill return false;
1794 1.124 jmcneill
1795 1.124 jmcneill dev->dv_flags |= DVF_DRIVER_SUSPENDED;
1796 1.124 jmcneill return true;
1797 1.124 jmcneill }
1798 1.124 jmcneill
1799 1.124 jmcneill bool
1800 1.124 jmcneill device_pmf_driver_resume(device_t dev)
1801 1.124 jmcneill {
1802 1.124 jmcneill if ((dev->dv_flags & DVF_DRIVER_SUSPENDED) == 0)
1803 1.124 jmcneill return true;
1804 1.124 jmcneill if ((dev->dv_flags & DVF_BUS_SUSPENDED) != 0)
1805 1.124 jmcneill return false;
1806 1.124 jmcneill if (*dev->dv_driver_resume != NULL &&
1807 1.124 jmcneill !(*dev->dv_driver_resume)(dev))
1808 1.124 jmcneill return false;
1809 1.124 jmcneill
1810 1.124 jmcneill dev->dv_flags &= ~DVF_DRIVER_SUSPENDED;
1811 1.124 jmcneill return true;
1812 1.124 jmcneill }
1813 1.124 jmcneill
1814 1.124 jmcneill void
1815 1.124 jmcneill device_pmf_driver_register(device_t dev,
1816 1.124 jmcneill bool (*suspend)(device_t), bool (*resume)(device_t))
1817 1.124 jmcneill {
1818 1.124 jmcneill dev->dv_driver_suspend = suspend;
1819 1.124 jmcneill dev->dv_driver_resume = resume;
1820 1.124 jmcneill dev->dv_flags |= DVF_POWER_HANDLERS;
1821 1.124 jmcneill }
1822 1.124 jmcneill
1823 1.124 jmcneill void
1824 1.124 jmcneill device_pmf_driver_deregister(device_t dev)
1825 1.124 jmcneill {
1826 1.124 jmcneill dev->dv_driver_suspend = NULL;
1827 1.124 jmcneill dev->dv_driver_resume = NULL;
1828 1.124 jmcneill dev->dv_flags &= ~DVF_POWER_HANDLERS;
1829 1.124 jmcneill }
1830 1.124 jmcneill
1831 1.124 jmcneill bool
1832 1.124 jmcneill device_pmf_driver_child_register(device_t dev)
1833 1.124 jmcneill {
1834 1.124 jmcneill device_t parent = device_parent(dev);
1835 1.124 jmcneill
1836 1.124 jmcneill if (parent == NULL || parent->dv_driver_child_register == NULL)
1837 1.124 jmcneill return true;
1838 1.124 jmcneill return (*parent->dv_driver_child_register)(dev);
1839 1.124 jmcneill }
1840 1.124 jmcneill
1841 1.124 jmcneill void
1842 1.124 jmcneill device_pmf_driver_set_child_register(device_t dev,
1843 1.124 jmcneill bool (*child_register)(device_t))
1844 1.124 jmcneill {
1845 1.124 jmcneill dev->dv_driver_child_register = child_register;
1846 1.124 jmcneill }
1847 1.124 jmcneill
1848 1.124 jmcneill void *
1849 1.124 jmcneill device_pmf_bus_private(device_t dev)
1850 1.124 jmcneill {
1851 1.124 jmcneill return dev->dv_bus_private;
1852 1.124 jmcneill }
1853 1.124 jmcneill
1854 1.124 jmcneill bool
1855 1.124 jmcneill device_pmf_bus_suspend(device_t dev)
1856 1.124 jmcneill {
1857 1.124 jmcneill if ((dev->dv_flags & DVF_BUS_SUSPENDED) != 0)
1858 1.124 jmcneill return true;
1859 1.124 jmcneill if ((dev->dv_flags & DVF_CLASS_SUSPENDED) == 0 ||
1860 1.124 jmcneill (dev->dv_flags & DVF_DRIVER_SUSPENDED) == 0)
1861 1.124 jmcneill return false;
1862 1.124 jmcneill if (*dev->dv_bus_suspend != NULL &&
1863 1.124 jmcneill !(*dev->dv_bus_suspend)(dev))
1864 1.124 jmcneill return false;
1865 1.124 jmcneill
1866 1.124 jmcneill dev->dv_flags |= DVF_BUS_SUSPENDED;
1867 1.124 jmcneill return true;
1868 1.124 jmcneill }
1869 1.124 jmcneill
1870 1.124 jmcneill bool
1871 1.124 jmcneill device_pmf_bus_resume(device_t dev)
1872 1.124 jmcneill {
1873 1.124 jmcneill if ((dev->dv_flags & DVF_BUS_SUSPENDED) == 0)
1874 1.124 jmcneill return true;
1875 1.124 jmcneill if (*dev->dv_bus_resume != NULL &&
1876 1.124 jmcneill !(*dev->dv_bus_resume)(dev))
1877 1.124 jmcneill return false;
1878 1.124 jmcneill
1879 1.124 jmcneill dev->dv_flags &= ~DVF_BUS_SUSPENDED;
1880 1.124 jmcneill return true;
1881 1.124 jmcneill }
1882 1.124 jmcneill
1883 1.124 jmcneill void
1884 1.124 jmcneill device_pmf_bus_register(device_t dev, void *priv,
1885 1.124 jmcneill bool (*suspend)(device_t), bool (*resume)(device_t),
1886 1.124 jmcneill void (*deregister)(device_t))
1887 1.124 jmcneill {
1888 1.124 jmcneill dev->dv_bus_private = priv;
1889 1.124 jmcneill dev->dv_bus_resume = resume;
1890 1.124 jmcneill dev->dv_bus_suspend = suspend;
1891 1.124 jmcneill dev->dv_bus_deregister = deregister;
1892 1.124 jmcneill }
1893 1.124 jmcneill
1894 1.124 jmcneill void
1895 1.124 jmcneill device_pmf_bus_deregister(device_t dev)
1896 1.124 jmcneill {
1897 1.124 jmcneill if (dev->dv_bus_deregister == NULL)
1898 1.124 jmcneill return;
1899 1.124 jmcneill (*dev->dv_bus_deregister)(dev);
1900 1.124 jmcneill dev->dv_bus_private = NULL;
1901 1.124 jmcneill dev->dv_bus_suspend = NULL;
1902 1.124 jmcneill dev->dv_bus_resume = NULL;
1903 1.124 jmcneill dev->dv_bus_deregister = NULL;
1904 1.124 jmcneill }
1905 1.124 jmcneill
1906 1.124 jmcneill void *
1907 1.124 jmcneill device_pmf_class_private(device_t dev)
1908 1.124 jmcneill {
1909 1.124 jmcneill return dev->dv_class_private;
1910 1.124 jmcneill }
1911 1.124 jmcneill
1912 1.124 jmcneill bool
1913 1.124 jmcneill device_pmf_class_suspend(device_t dev)
1914 1.124 jmcneill {
1915 1.124 jmcneill if ((dev->dv_flags & DVF_CLASS_SUSPENDED) != 0)
1916 1.124 jmcneill return true;
1917 1.124 jmcneill if (*dev->dv_class_suspend != NULL &&
1918 1.124 jmcneill !(*dev->dv_class_suspend)(dev))
1919 1.124 jmcneill return false;
1920 1.124 jmcneill
1921 1.124 jmcneill dev->dv_flags |= DVF_CLASS_SUSPENDED;
1922 1.124 jmcneill return true;
1923 1.124 jmcneill }
1924 1.124 jmcneill
1925 1.124 jmcneill bool
1926 1.124 jmcneill device_pmf_class_resume(device_t dev)
1927 1.124 jmcneill {
1928 1.124 jmcneill if ((dev->dv_flags & DVF_CLASS_SUSPENDED) == 0)
1929 1.124 jmcneill return true;
1930 1.124 jmcneill if ((dev->dv_flags & DVF_BUS_SUSPENDED) != 0 ||
1931 1.124 jmcneill (dev->dv_flags & DVF_DRIVER_SUSPENDED) != 0)
1932 1.124 jmcneill return false;
1933 1.124 jmcneill if (*dev->dv_class_resume != NULL &&
1934 1.124 jmcneill !(*dev->dv_class_resume)(dev))
1935 1.124 jmcneill return false;
1936 1.124 jmcneill
1937 1.124 jmcneill dev->dv_flags &= ~DVF_CLASS_SUSPENDED;
1938 1.124 jmcneill return true;
1939 1.124 jmcneill }
1940 1.124 jmcneill
1941 1.124 jmcneill void
1942 1.124 jmcneill device_pmf_class_register(device_t dev, void *priv,
1943 1.124 jmcneill bool (*suspend)(device_t), bool (*resume)(device_t),
1944 1.124 jmcneill void (*deregister)(device_t))
1945 1.124 jmcneill {
1946 1.124 jmcneill dev->dv_class_private = priv;
1947 1.124 jmcneill dev->dv_class_suspend = suspend;
1948 1.124 jmcneill dev->dv_class_resume = resume;
1949 1.124 jmcneill dev->dv_class_deregister = deregister;
1950 1.124 jmcneill }
1951 1.124 jmcneill
1952 1.124 jmcneill void
1953 1.124 jmcneill device_pmf_class_deregister(device_t dev)
1954 1.124 jmcneill {
1955 1.124 jmcneill if (dev->dv_class_deregister == NULL)
1956 1.124 jmcneill return;
1957 1.124 jmcneill (*dev->dv_class_deregister)(dev);
1958 1.124 jmcneill dev->dv_class_private = NULL;
1959 1.124 jmcneill dev->dv_class_suspend = NULL;
1960 1.124 jmcneill dev->dv_class_resume = NULL;
1961 1.124 jmcneill dev->dv_class_deregister = NULL;
1962 1.124 jmcneill }
1963 1.124 jmcneill
1964 1.124 jmcneill bool
1965 1.124 jmcneill device_active(device_t dev, devactive_t type)
1966 1.124 jmcneill {
1967 1.124 jmcneill size_t i;
1968 1.124 jmcneill
1969 1.124 jmcneill if (dev->dv_activity_count == 0)
1970 1.124 jmcneill return false;
1971 1.124 jmcneill
1972 1.124 jmcneill for (i = 0; i < dev->dv_activity_count; ++i)
1973 1.124 jmcneill (*dev->dv_activity_handlers[i])(dev, type);
1974 1.124 jmcneill
1975 1.124 jmcneill return true;
1976 1.124 jmcneill }
1977 1.124 jmcneill
1978 1.124 jmcneill bool
1979 1.124 jmcneill device_active_register(device_t dev, void (*handler)(device_t, devactive_t))
1980 1.124 jmcneill {
1981 1.124 jmcneill void (**new_handlers)(device_t, devactive_t);
1982 1.124 jmcneill void (**old_handlers)(device_t, devactive_t);
1983 1.124 jmcneill size_t i, new_size;
1984 1.124 jmcneill int s;
1985 1.124 jmcneill
1986 1.124 jmcneill old_handlers = dev->dv_activity_handlers;
1987 1.124 jmcneill
1988 1.124 jmcneill for (i = 0; i < dev->dv_activity_count; ++i) {
1989 1.124 jmcneill if (old_handlers[i] == handler)
1990 1.124 jmcneill panic("Double registering of idle handlers");
1991 1.124 jmcneill }
1992 1.124 jmcneill
1993 1.124 jmcneill new_size = dev->dv_activity_count + 1;
1994 1.124 jmcneill new_handlers = malloc(sizeof(void *) * new_size, M_DEVBUF, M_WAITOK);
1995 1.124 jmcneill
1996 1.124 jmcneill memcpy(new_handlers, old_handlers,
1997 1.124 jmcneill sizeof(void *) * dev->dv_activity_count);
1998 1.124 jmcneill new_handlers[new_size - 1] = handler;
1999 1.124 jmcneill
2000 1.124 jmcneill s = splhigh();
2001 1.124 jmcneill dev->dv_activity_count = new_size;
2002 1.124 jmcneill dev->dv_activity_handlers = new_handlers;
2003 1.124 jmcneill splx(s);
2004 1.124 jmcneill
2005 1.124 jmcneill if (old_handlers != NULL)
2006 1.124 jmcneill free(old_handlers, M_DEVBUF);
2007 1.124 jmcneill
2008 1.124 jmcneill return true;
2009 1.124 jmcneill }
2010 1.124 jmcneill
2011 1.124 jmcneill void
2012 1.124 jmcneill device_active_deregister(device_t dev, void (*handler)(device_t, devactive_t))
2013 1.124 jmcneill {
2014 1.124 jmcneill void (**new_handlers)(device_t, devactive_t);
2015 1.124 jmcneill void (**old_handlers)(device_t, devactive_t);
2016 1.124 jmcneill size_t i, new_size;
2017 1.124 jmcneill int s;
2018 1.124 jmcneill
2019 1.124 jmcneill old_handlers = dev->dv_activity_handlers;
2020 1.124 jmcneill
2021 1.124 jmcneill for (i = 0; i < dev->dv_activity_count; ++i) {
2022 1.124 jmcneill if (old_handlers[i] == handler)
2023 1.124 jmcneill break;
2024 1.124 jmcneill }
2025 1.124 jmcneill
2026 1.124 jmcneill if (i == dev->dv_activity_count)
2027 1.124 jmcneill return; /* XXX panic? */
2028 1.124 jmcneill
2029 1.124 jmcneill new_size = dev->dv_activity_count - 1;
2030 1.124 jmcneill
2031 1.124 jmcneill if (new_size == 0) {
2032 1.124 jmcneill new_handlers = NULL;
2033 1.124 jmcneill } else {
2034 1.124 jmcneill new_handlers = malloc(sizeof(void *) * new_size, M_DEVBUF,
2035 1.124 jmcneill M_WAITOK);
2036 1.124 jmcneill memcpy(new_handlers, old_handlers, sizeof(void *) * i);
2037 1.124 jmcneill memcpy(new_handlers + i, old_handlers + i + 1,
2038 1.124 jmcneill sizeof(void *) * (new_size - i));
2039 1.124 jmcneill }
2040 1.124 jmcneill
2041 1.124 jmcneill s = splhigh();
2042 1.124 jmcneill dev->dv_activity_count = new_size;
2043 1.124 jmcneill dev->dv_activity_handlers = new_handlers;
2044 1.124 jmcneill splx(s);
2045 1.124 jmcneill
2046 1.124 jmcneill free(old_handlers, M_DEVBUF);
2047 1.124 jmcneill }
2048