subr_autoconf.c revision 1.74 1 1.74 thorpej /* $NetBSD: subr_autoconf.c,v 1.74 2002/09/30 17:36:33 thorpej 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.54 cgd *
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.54 cgd * 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.54 cgd *
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.54 cgd *
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.7 glass * 3. All advertising materials mentioning features or use of this software
59 1.7 glass * must display the following acknowledgement:
60 1.7 glass * This product includes software developed by the University of
61 1.7 glass * California, Berkeley and its contributors.
62 1.7 glass * 4. Neither the name of the University nor the names of its contributors
63 1.7 glass * may be used to endorse or promote products derived from this software
64 1.7 glass * without specific prior written permission.
65 1.1 glass *
66 1.7 glass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
67 1.7 glass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
68 1.7 glass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
69 1.7 glass * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
70 1.7 glass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
71 1.7 glass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
72 1.7 glass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
73 1.7 glass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
74 1.7 glass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
75 1.7 glass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
76 1.7 glass * SUCH DAMAGE.
77 1.1 glass *
78 1.8 cgd * from: Header: subr_autoconf.c,v 1.12 93/02/01 19:31:48 torek Exp (LBL)
79 1.9 cgd *
80 1.28 fvdl * @(#)subr_autoconf.c 8.3 (Berkeley) 5/17/94
81 1.1 glass */
82 1.1 glass
83 1.51 cgd #include <sys/cdefs.h>
84 1.74 thorpej __KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.74 2002/09/30 17:36:33 thorpej Exp $");
85 1.62 simonb
86 1.62 simonb #include "opt_ddb.h"
87 1.51 cgd
88 1.4 mycroft #include <sys/param.h>
89 1.4 mycroft #include <sys/device.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.16 mycroft #include <machine/limits.h>
96 1.1 glass
97 1.57 gmcgarry #include "opt_userconf.h"
98 1.57 gmcgarry #ifdef USERCONF
99 1.57 gmcgarry #include <sys/userconf.h>
100 1.57 gmcgarry #include <sys/reboot.h>
101 1.57 gmcgarry #endif
102 1.57 gmcgarry
103 1.1 glass /*
104 1.1 glass * Autoconfiguration subroutines.
105 1.1 glass */
106 1.1 glass
107 1.1 glass /*
108 1.1 glass * ioconf.c exports exactly two names: cfdata and cfroots. All system
109 1.1 glass * devices and drivers are found via these tables.
110 1.1 glass */
111 1.1 glass extern struct cfdata cfdata[];
112 1.1 glass extern short cfroots[];
113 1.1 glass
114 1.65 thorpej /*
115 1.67 thorpej * List of all cfdriver structures. We use this to detect duplicates
116 1.67 thorpej * when other cfdrivers are loaded.
117 1.67 thorpej */
118 1.69 thorpej struct cfdriverlist allcfdrivers = LIST_HEAD_INITIALIZER(&allcfdrivers);
119 1.69 thorpej extern struct cfdriver * const cfdriver_list_initial[];
120 1.67 thorpej
121 1.67 thorpej /*
122 1.65 thorpej * List of cfdata tables. We always have one such list -- the one
123 1.65 thorpej * built statically when the kernel was configured.
124 1.65 thorpej */
125 1.65 thorpej struct cftablelist allcftables;
126 1.65 thorpej static struct cftable initcftable;
127 1.65 thorpej
128 1.1 glass #define ROOT ((struct device *)NULL)
129 1.1 glass
130 1.16 mycroft struct matchinfo {
131 1.16 mycroft cfmatch_t fn;
132 1.16 mycroft struct device *parent;
133 1.25 cgd void *aux;
134 1.25 cgd struct cfdata *match;
135 1.25 cgd int pri;
136 1.16 mycroft };
137 1.17 christos
138 1.51 cgd static char *number(char *, int);
139 1.51 cgd static void mapply(struct matchinfo *, struct cfdata *);
140 1.16 mycroft
141 1.29 thorpej struct deferred_config {
142 1.29 thorpej TAILQ_ENTRY(deferred_config) dc_queue;
143 1.29 thorpej struct device *dc_dev;
144 1.51 cgd void (*dc_func)(struct device *);
145 1.29 thorpej };
146 1.29 thorpej
147 1.42 thorpej TAILQ_HEAD(deferred_config_head, deferred_config);
148 1.29 thorpej
149 1.42 thorpej struct deferred_config_head deferred_config_queue;
150 1.42 thorpej struct deferred_config_head interrupt_config_queue;
151 1.42 thorpej
152 1.51 cgd static void config_process_deferred(struct deferred_config_head *,
153 1.51 cgd struct device *);
154 1.29 thorpej
155 1.56 thorpej /* list of all devices */
156 1.56 thorpej struct devicelist alldevs;
157 1.56 thorpej
158 1.56 thorpej /* list of all events */
159 1.56 thorpej struct evcntlist allevents = TAILQ_HEAD_INITIALIZER(allevents);
160 1.20 cgd
161 1.47 thorpej __volatile int config_pending; /* semaphore for mountroot */
162 1.47 thorpej
163 1.67 thorpej #define STREQ(s1, s2) \
164 1.70 thorpej (*(s1) == *(s2) && strcmp((s1), (s2)) == 0)
165 1.67 thorpej
166 1.74 thorpej static int config_initialized; /* config_init() has been called. */
167 1.74 thorpej
168 1.20 cgd /*
169 1.74 thorpej * Initialize the autoconfiguration data structures. Normally this
170 1.74 thorpej * is done by configure(), but some platforms need to do this very
171 1.74 thorpej * early (to e.g. initialize the console).
172 1.20 cgd */
173 1.20 cgd void
174 1.74 thorpej config_init(void)
175 1.20 cgd {
176 1.67 thorpej int i;
177 1.67 thorpej
178 1.74 thorpej if (config_initialized)
179 1.74 thorpej return;
180 1.74 thorpej
181 1.69 thorpej /* allcfdrivers is statically initialized. */
182 1.67 thorpej for (i = 0; cfdriver_list_initial[i] != NULL; i++)
183 1.67 thorpej if (config_cfdriver_attach(cfdriver_list_initial[i]) != 0)
184 1.67 thorpej panic("configure: duplicate `%s' drivers",
185 1.67 thorpej cfdriver_list_initial[i]->cd_name);
186 1.20 cgd
187 1.65 thorpej TAILQ_INIT(&allcftables);
188 1.65 thorpej initcftable.ct_cfdata = cfdata;
189 1.65 thorpej TAILQ_INSERT_TAIL(&allcftables, &initcftable, ct_list);
190 1.65 thorpej
191 1.29 thorpej TAILQ_INIT(&deferred_config_queue);
192 1.42 thorpej TAILQ_INIT(&interrupt_config_queue);
193 1.41 thorpej TAILQ_INIT(&alldevs);
194 1.57 gmcgarry
195 1.74 thorpej config_initialized = 1;
196 1.74 thorpej }
197 1.74 thorpej
198 1.74 thorpej /*
199 1.74 thorpej * Configure the system's hardware.
200 1.74 thorpej */
201 1.74 thorpej void
202 1.74 thorpej configure(void)
203 1.74 thorpej {
204 1.74 thorpej
205 1.74 thorpej /* Initialize data structures. */
206 1.74 thorpej config_init();
207 1.74 thorpej
208 1.57 gmcgarry #ifdef USERCONF
209 1.57 gmcgarry if (boothowto & RB_USERCONF)
210 1.57 gmcgarry user_config();
211 1.57 gmcgarry #endif
212 1.41 thorpej
213 1.41 thorpej /*
214 1.41 thorpej * Do the machine-dependent portion of autoconfiguration. This
215 1.41 thorpej * sets the configuration machinery here in motion by "finding"
216 1.41 thorpej * the root bus. When this function returns, we expect interrupts
217 1.41 thorpej * to be enabled.
218 1.41 thorpej */
219 1.41 thorpej cpu_configure();
220 1.43 thorpej
221 1.43 thorpej /*
222 1.43 thorpej * Now that we've found all the hardware, start the real time
223 1.43 thorpej * and statistics clocks.
224 1.43 thorpej */
225 1.43 thorpej initclocks();
226 1.43 thorpej
227 1.43 thorpej cold = 0; /* clocks are running, we're warm now! */
228 1.42 thorpej
229 1.42 thorpej /*
230 1.42 thorpej * Now callback to finish configuration for devices which want
231 1.42 thorpej * to do this once interrupts are enabled.
232 1.42 thorpej */
233 1.42 thorpej config_process_deferred(&interrupt_config_queue, NULL);
234 1.20 cgd }
235 1.20 cgd
236 1.1 glass /*
237 1.67 thorpej * Add a cfdriver to the system.
238 1.67 thorpej */
239 1.67 thorpej int
240 1.67 thorpej config_cfdriver_attach(struct cfdriver *cd)
241 1.67 thorpej {
242 1.67 thorpej struct cfdriver *lcd;
243 1.67 thorpej
244 1.67 thorpej /* Make sure this driver isn't already in the system. */
245 1.67 thorpej LIST_FOREACH(lcd, &allcfdrivers, cd_list) {
246 1.67 thorpej if (STREQ(lcd->cd_name, cd->cd_name))
247 1.67 thorpej return (EEXIST);
248 1.67 thorpej }
249 1.67 thorpej
250 1.67 thorpej LIST_INSERT_HEAD(&allcfdrivers, cd, cd_list);
251 1.67 thorpej
252 1.67 thorpej return (0);
253 1.67 thorpej }
254 1.67 thorpej
255 1.67 thorpej /*
256 1.67 thorpej * Remove a cfdriver from the system.
257 1.67 thorpej */
258 1.67 thorpej int
259 1.67 thorpej config_cfdriver_detach(struct cfdriver *cd)
260 1.67 thorpej {
261 1.67 thorpej int i;
262 1.67 thorpej
263 1.67 thorpej /* Make sure there are no active instances. */
264 1.67 thorpej for (i = 0; i < cd->cd_ndevs; i++) {
265 1.67 thorpej if (cd->cd_devs[i] != NULL)
266 1.67 thorpej return (EBUSY);
267 1.67 thorpej }
268 1.67 thorpej
269 1.67 thorpej LIST_REMOVE(cd, cd_list);
270 1.67 thorpej
271 1.67 thorpej KASSERT(cd->cd_devs == NULL);
272 1.67 thorpej
273 1.67 thorpej return (0);
274 1.67 thorpej }
275 1.67 thorpej
276 1.67 thorpej /*
277 1.67 thorpej * Look up a cfdriver by name.
278 1.67 thorpej */
279 1.67 thorpej static struct cfdriver *
280 1.67 thorpej config_cfdriver_lookup(const char *name)
281 1.67 thorpej {
282 1.67 thorpej struct cfdriver *cd;
283 1.69 thorpej
284 1.69 thorpej /*
285 1.69 thorpej * It is sometimes necessary to use the autoconfiguration
286 1.69 thorpej * framework quite early (e.g. to initialize the console).
287 1.69 thorpej * We support this by noticing an empty cfdriver list and
288 1.69 thorpej * searching the initial static list instead.
289 1.69 thorpej */
290 1.69 thorpej if (LIST_EMPTY(&allcfdrivers)) {
291 1.69 thorpej int i;
292 1.69 thorpej
293 1.69 thorpej for (i = 0; cfdriver_list_initial[i] != NULL; i++) {
294 1.69 thorpej if (STREQ(cfdriver_list_initial[i]->cd_name, name))
295 1.69 thorpej return (cfdriver_list_initial[i]);
296 1.69 thorpej }
297 1.69 thorpej }
298 1.67 thorpej
299 1.67 thorpej LIST_FOREACH(cd, &allcfdrivers, cd_list) {
300 1.67 thorpej if (STREQ(cd->cd_name, name))
301 1.67 thorpej return (cd);
302 1.67 thorpej }
303 1.67 thorpej
304 1.67 thorpej return (NULL);
305 1.67 thorpej }
306 1.67 thorpej
307 1.67 thorpej /*
308 1.1 glass * Apply the matching function and choose the best. This is used
309 1.1 glass * a few times and we want to keep the code small.
310 1.1 glass */
311 1.16 mycroft static void
312 1.51 cgd mapply(struct matchinfo *m, struct cfdata *cf)
313 1.1 glass {
314 1.50 augustss int pri;
315 1.1 glass
316 1.1 glass if (m->fn != NULL)
317 1.25 cgd pri = (*m->fn)(m->parent, cf, m->aux);
318 1.3 glass else {
319 1.19 thorpej if (cf->cf_attach->ca_match == NULL) {
320 1.72 provos panic("mapply: no match function for '%s' device",
321 1.67 thorpej cf->cf_name);
322 1.3 glass }
323 1.25 cgd pri = (*cf->cf_attach->ca_match)(m->parent, cf, m->aux);
324 1.3 glass }
325 1.1 glass if (pri > m->pri) {
326 1.25 cgd m->match = cf;
327 1.1 glass m->pri = pri;
328 1.1 glass }
329 1.1 glass }
330 1.1 glass
331 1.1 glass /*
332 1.66 thorpej * Determine if `parent' is a potential parent for a device spec based
333 1.66 thorpej * on `cfp'.
334 1.66 thorpej */
335 1.66 thorpej static int
336 1.66 thorpej cfparent_match(struct device *parent, const struct cfparent *cfp)
337 1.66 thorpej {
338 1.67 thorpej struct cfdriver *pcd;
339 1.66 thorpej const char * const *cpp;
340 1.66 thorpej const char *cp;
341 1.70 thorpej
342 1.70 thorpej /* We don't match root nodes here. */
343 1.70 thorpej if (cfp == NULL)
344 1.70 thorpej return (0);
345 1.66 thorpej
346 1.67 thorpej pcd = config_cfdriver_lookup(parent->dv_cfdata->cf_name);
347 1.67 thorpej KASSERT(pcd != NULL);
348 1.67 thorpej
349 1.66 thorpej /*
350 1.66 thorpej * First, ensure this parent has the correct interface
351 1.66 thorpej * attribute.
352 1.66 thorpej */
353 1.66 thorpej if (pcd->cd_attrs == NULL)
354 1.66 thorpej return (0); /* no interface attributes -> no children */
355 1.66 thorpej for (cpp = pcd->cd_attrs; (cp = *cpp) != NULL; cpp++) {
356 1.67 thorpej if (STREQ(cp, cfp->cfp_iattr)) {
357 1.66 thorpej /* Match. */
358 1.66 thorpej break;
359 1.66 thorpej }
360 1.66 thorpej }
361 1.66 thorpej if (cp == NULL)
362 1.66 thorpej return (0); /* doesn't carry the req'd attribute */
363 1.66 thorpej
364 1.66 thorpej /*
365 1.66 thorpej * If no specific parent device instance was specified (i.e.
366 1.66 thorpej * we're attaching to the attribute only), we're done!
367 1.66 thorpej */
368 1.66 thorpej if (cfp->cfp_parent == NULL)
369 1.66 thorpej return (1);
370 1.66 thorpej
371 1.66 thorpej /*
372 1.66 thorpej * Check the parent device's name.
373 1.66 thorpej */
374 1.71 thorpej if (STREQ(pcd->cd_name, cfp->cfp_parent) == 0)
375 1.66 thorpej return (0); /* not the same parent */
376 1.66 thorpej
377 1.66 thorpej /*
378 1.66 thorpej * Make sure the unit number matches.
379 1.66 thorpej */
380 1.66 thorpej if (cfp->cfp_unit == -1 || /* wildcard */
381 1.66 thorpej cfp->cfp_unit == parent->dv_unit)
382 1.66 thorpej return (1);
383 1.66 thorpej
384 1.66 thorpej /* Unit numbers don't match. */
385 1.66 thorpej return (0);
386 1.68 thorpej }
387 1.68 thorpej
388 1.68 thorpej /*
389 1.68 thorpej * Invoke the "match" routine for a cfdata entry on behalf of
390 1.68 thorpej * an external caller, usually a "submatch" routine.
391 1.68 thorpej */
392 1.68 thorpej int
393 1.68 thorpej config_match(struct device *parent, struct cfdata *cf, void *aux)
394 1.68 thorpej {
395 1.68 thorpej
396 1.68 thorpej return ((*cf->cf_attach->ca_match)(parent, cf, aux));
397 1.66 thorpej }
398 1.66 thorpej
399 1.66 thorpej /*
400 1.1 glass * Iterate over all potential children of some device, calling the given
401 1.1 glass * function (default being the child's match function) for each one.
402 1.1 glass * Nonzero returns are matches; the highest value returned is considered
403 1.1 glass * the best match. Return the `found child' if we got a match, or NULL
404 1.1 glass * otherwise. The `aux' pointer is simply passed on through.
405 1.1 glass *
406 1.1 glass * Note that this function is designed so that it can be used to apply
407 1.1 glass * an arbitrary function to all potential children (its return value
408 1.1 glass * can be ignored).
409 1.1 glass */
410 1.25 cgd struct cfdata *
411 1.51 cgd config_search(cfmatch_t fn, struct device *parent, void *aux)
412 1.1 glass {
413 1.65 thorpej struct cftable *ct;
414 1.50 augustss struct cfdata *cf;
415 1.1 glass struct matchinfo m;
416 1.74 thorpej
417 1.74 thorpej KASSERT(config_initialized);
418 1.1 glass
419 1.1 glass m.fn = fn;
420 1.1 glass m.parent = parent;
421 1.25 cgd m.aux = aux;
422 1.14 mycroft m.match = NULL;
423 1.1 glass m.pri = 0;
424 1.65 thorpej
425 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
426 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
427 1.65 thorpej /*
428 1.65 thorpej * Skip cf if no longer eligible, otherwise scan
429 1.65 thorpej * through parents for one matching `parent', and
430 1.65 thorpej * try match function.
431 1.65 thorpej */
432 1.65 thorpej if (cf->cf_fstate == FSTATE_FOUND)
433 1.65 thorpej continue;
434 1.65 thorpej if (cf->cf_fstate == FSTATE_DNOTFOUND ||
435 1.65 thorpej cf->cf_fstate == FSTATE_DSTAR)
436 1.65 thorpej continue;
437 1.66 thorpej if (cfparent_match(parent, cf->cf_pspec))
438 1.66 thorpej mapply(&m, cf);
439 1.65 thorpej }
440 1.1 glass }
441 1.1 glass return (m.match);
442 1.1 glass }
443 1.1 glass
444 1.16 mycroft /*
445 1.1 glass * Find the given root device.
446 1.1 glass * This is much like config_search, but there is no parent.
447 1.65 thorpej * Don't bother with multiple cfdata tables; the root node
448 1.65 thorpej * must always be in the initial table.
449 1.1 glass */
450 1.25 cgd struct cfdata *
451 1.52 cgd config_rootsearch(cfmatch_t fn, const char *rootname, void *aux)
452 1.1 glass {
453 1.50 augustss struct cfdata *cf;
454 1.50 augustss short *p;
455 1.1 glass struct matchinfo m;
456 1.1 glass
457 1.1 glass m.fn = fn;
458 1.1 glass m.parent = ROOT;
459 1.25 cgd m.aux = aux;
460 1.14 mycroft m.match = NULL;
461 1.1 glass m.pri = 0;
462 1.1 glass /*
463 1.1 glass * Look at root entries for matching name. We do not bother
464 1.1 glass * with found-state here since only one root should ever be
465 1.1 glass * searched (and it must be done first).
466 1.1 glass */
467 1.1 glass for (p = cfroots; *p >= 0; p++) {
468 1.1 glass cf = &cfdata[*p];
469 1.67 thorpej if (strcmp(cf->cf_name, rootname) == 0)
470 1.16 mycroft mapply(&m, cf);
471 1.1 glass }
472 1.1 glass return (m.match);
473 1.1 glass }
474 1.1 glass
475 1.52 cgd static const char *msgs[3] = { "", " not configured\n", " unsupported\n" };
476 1.1 glass
477 1.1 glass /*
478 1.1 glass * The given `aux' argument describes a device that has been found
479 1.1 glass * on the given parent, but not necessarily configured. Locate the
480 1.18 cgd * configuration data for that device (using the submatch function
481 1.18 cgd * provided, or using candidates' cd_match configuration driver
482 1.18 cgd * functions) and attach it, and return true. If the device was
483 1.1 glass * not configured, call the given `print' function and return 0.
484 1.1 glass */
485 1.21 cgd struct device *
486 1.51 cgd config_found_sm(struct device *parent, void *aux, cfprint_t print,
487 1.51 cgd cfmatch_t submatch)
488 1.1 glass {
489 1.25 cgd struct cfdata *cf;
490 1.25 cgd
491 1.25 cgd if ((cf = config_search(submatch, parent, aux)) != NULL)
492 1.25 cgd return (config_attach(parent, cf, aux, print));
493 1.3 glass if (print)
494 1.55 sommerfe printf("%s", msgs[(*print)(aux, parent->dv_xname)]);
495 1.21 cgd return (NULL);
496 1.1 glass }
497 1.1 glass
498 1.1 glass /*
499 1.1 glass * As above, but for root devices.
500 1.1 glass */
501 1.21 cgd struct device *
502 1.52 cgd config_rootfound(const char *rootname, void *aux)
503 1.1 glass {
504 1.25 cgd struct cfdata *cf;
505 1.25 cgd
506 1.25 cgd if ((cf = config_rootsearch((cfmatch_t)NULL, rootname, aux)) != NULL)
507 1.25 cgd return (config_attach(ROOT, cf, aux, (cfprint_t)NULL));
508 1.24 christos printf("root device %s not configured\n", rootname);
509 1.21 cgd return (NULL);
510 1.1 glass }
511 1.1 glass
512 1.1 glass /* just like sprintf(buf, "%d") except that it works from the end */
513 1.1 glass static char *
514 1.51 cgd number(char *ep, int n)
515 1.1 glass {
516 1.1 glass
517 1.1 glass *--ep = 0;
518 1.1 glass while (n >= 10) {
519 1.1 glass *--ep = (n % 10) + '0';
520 1.1 glass n /= 10;
521 1.1 glass }
522 1.1 glass *--ep = n + '0';
523 1.1 glass return (ep);
524 1.1 glass }
525 1.1 glass
526 1.1 glass /*
527 1.59 augustss * Expand the size of the cd_devs array if necessary.
528 1.59 augustss */
529 1.59 augustss void
530 1.59 augustss config_makeroom(int n, struct cfdriver *cd)
531 1.59 augustss {
532 1.59 augustss int old, new;
533 1.59 augustss void **nsp;
534 1.59 augustss
535 1.59 augustss if (n < cd->cd_ndevs)
536 1.59 augustss return;
537 1.59 augustss
538 1.59 augustss /*
539 1.59 augustss * Need to expand the array.
540 1.59 augustss */
541 1.59 augustss old = cd->cd_ndevs;
542 1.61 thorpej if (old == 0)
543 1.59 augustss new = MINALLOCSIZE / sizeof(void *);
544 1.59 augustss else
545 1.59 augustss new = old * 2;
546 1.59 augustss while (new <= n)
547 1.59 augustss new *= 2;
548 1.59 augustss cd->cd_ndevs = new;
549 1.59 augustss nsp = malloc(new * sizeof(void *), M_DEVBUF,
550 1.59 augustss cold ? M_NOWAIT : M_WAITOK);
551 1.60 augustss if (nsp == NULL)
552 1.59 augustss panic("config_attach: %sing dev array",
553 1.59 augustss old != 0 ? "expand" : "creat");
554 1.59 augustss memset(nsp + old, 0, (new - old) * sizeof(void *));
555 1.61 thorpej if (old != 0) {
556 1.59 augustss memcpy(nsp, cd->cd_devs, old * sizeof(void *));
557 1.59 augustss free(cd->cd_devs, M_DEVBUF);
558 1.59 augustss }
559 1.59 augustss cd->cd_devs = nsp;
560 1.59 augustss }
561 1.59 augustss
562 1.59 augustss /*
563 1.1 glass * Attach a found device. Allocates memory for device variables.
564 1.1 glass */
565 1.25 cgd struct device *
566 1.51 cgd config_attach(struct device *parent, struct cfdata *cf, void *aux,
567 1.51 cgd cfprint_t print)
568 1.25 cgd {
569 1.50 augustss struct device *dev;
570 1.65 thorpej struct cftable *ct;
571 1.50 augustss struct cfdriver *cd;
572 1.73 thorpej const struct cfattach *ca;
573 1.50 augustss size_t lname, lunit;
574 1.52 cgd const char *xunit;
575 1.25 cgd int myunit;
576 1.25 cgd char num[10];
577 1.25 cgd
578 1.67 thorpej cd = config_cfdriver_lookup(cf->cf_name);
579 1.67 thorpej KASSERT(cd != NULL);
580 1.25 cgd ca = cf->cf_attach;
581 1.25 cgd if (ca->ca_devsize < sizeof(struct device))
582 1.25 cgd panic("config_attach");
583 1.66 thorpej
584 1.46 cgd #ifndef __BROKEN_CONFIG_UNIT_USAGE
585 1.45 cgd if (cf->cf_fstate == FSTATE_STAR) {
586 1.45 cgd for (myunit = cf->cf_unit; myunit < cd->cd_ndevs; myunit++)
587 1.45 cgd if (cd->cd_devs[myunit] == NULL)
588 1.45 cgd break;
589 1.45 cgd /*
590 1.45 cgd * myunit is now the unit of the first NULL device pointer,
591 1.45 cgd * or max(cd->cd_ndevs,cf->cf_unit).
592 1.45 cgd */
593 1.45 cgd } else {
594 1.45 cgd myunit = cf->cf_unit;
595 1.66 thorpej KASSERT(cf->cf_fstate == FSTATE_NOTFOUND);
596 1.66 thorpej cf->cf_fstate = FSTATE_FOUND;
597 1.66 thorpej }
598 1.66 thorpej #else
599 1.46 cgd myunit = cf->cf_unit;
600 1.46 cgd if (cf->cf_fstate == FSTATE_STAR)
601 1.46 cgd cf->cf_unit++;
602 1.46 cgd else {
603 1.25 cgd KASSERT(cf->cf_fstate == FSTATE_NOTFOUND);
604 1.25 cgd cf->cf_fstate = FSTATE_FOUND;
605 1.25 cgd }
606 1.66 thorpej #endif /* ! __BROKEN_CONFIG_UNIT_USAGE */
607 1.25 cgd
608 1.25 cgd /* compute length of name and decimal expansion of unit number */
609 1.25 cgd lname = strlen(cd->cd_name);
610 1.30 perry xunit = number(&num[sizeof(num)], myunit);
611 1.30 perry lunit = &num[sizeof(num)] - xunit;
612 1.64 drochner if (lname + lunit > sizeof(dev->dv_xname))
613 1.25 cgd panic("config_attach: device name too long");
614 1.25 cgd
615 1.25 cgd /* get memory for all device vars */
616 1.43 thorpej dev = (struct device *)malloc(ca->ca_devsize, M_DEVBUF,
617 1.43 thorpej cold ? M_NOWAIT : M_WAITOK);
618 1.25 cgd if (!dev)
619 1.25 cgd panic("config_attach: memory allocation for device softc failed");
620 1.31 perry memset(dev, 0, ca->ca_devsize);
621 1.25 cgd TAILQ_INSERT_TAIL(&alldevs, dev, dv_list); /* link up */
622 1.25 cgd dev->dv_class = cd->cd_class;
623 1.25 cgd dev->dv_cfdata = cf;
624 1.25 cgd dev->dv_unit = myunit;
625 1.31 perry memcpy(dev->dv_xname, cd->cd_name, lname);
626 1.31 perry memcpy(dev->dv_xname + lname, xunit, lunit);
627 1.25 cgd dev->dv_parent = parent;
628 1.33 thorpej dev->dv_flags = DVF_ACTIVE; /* always initially active */
629 1.29 thorpej
630 1.25 cgd if (parent == ROOT)
631 1.25 cgd printf("%s (root)", dev->dv_xname);
632 1.25 cgd else {
633 1.25 cgd printf("%s at %s", dev->dv_xname, parent->dv_xname);
634 1.25 cgd if (print)
635 1.52 cgd (void) (*print)(aux, NULL);
636 1.25 cgd }
637 1.25 cgd
638 1.25 cgd /* put this device in the devices array */
639 1.59 augustss config_makeroom(dev->dv_unit, cd);
640 1.25 cgd if (cd->cd_devs[dev->dv_unit])
641 1.25 cgd panic("config_attach: duplicate %s", dev->dv_xname);
642 1.25 cgd cd->cd_devs[dev->dv_unit] = dev;
643 1.25 cgd
644 1.25 cgd /*
645 1.25 cgd * Before attaching, clobber any unfound devices that are
646 1.45 cgd * otherwise identical.
647 1.25 cgd */
648 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
649 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
650 1.67 thorpej if (STREQ(cf->cf_name, cd->cd_name) &&
651 1.65 thorpej cf->cf_unit == dev->dv_unit) {
652 1.65 thorpej if (cf->cf_fstate == FSTATE_NOTFOUND)
653 1.65 thorpej cf->cf_fstate = FSTATE_FOUND;
654 1.46 cgd #ifdef __BROKEN_CONFIG_UNIT_USAGE
655 1.66 thorpej /*
656 1.66 thorpej * Bump the unit number on all starred cfdata
657 1.66 thorpej * entries for this device.
658 1.66 thorpej */
659 1.65 thorpej if (cf->cf_fstate == FSTATE_STAR)
660 1.65 thorpej cf->cf_unit++;
661 1.46 cgd #endif /* __BROKEN_CONFIG_UNIT_USAGE */
662 1.65 thorpej }
663 1.25 cgd }
664 1.65 thorpej }
665 1.49 danw #ifdef __HAVE_DEVICE_REGISTER
666 1.25 cgd device_register(dev, aux);
667 1.25 cgd #endif
668 1.25 cgd (*ca->ca_attach)(parent, dev, aux);
669 1.42 thorpej config_process_deferred(&deferred_config_queue, dev);
670 1.25 cgd return (dev);
671 1.25 cgd }
672 1.29 thorpej
673 1.29 thorpej /*
674 1.33 thorpej * Detach a device. Optionally forced (e.g. because of hardware
675 1.33 thorpej * removal) and quiet. Returns zero if successful, non-zero
676 1.33 thorpej * (an error code) otherwise.
677 1.33 thorpej *
678 1.33 thorpej * Note that this code wants to be run from a process context, so
679 1.33 thorpej * that the detach can sleep to allow processes which have a device
680 1.33 thorpej * open to run and unwind their stacks.
681 1.33 thorpej */
682 1.33 thorpej int
683 1.51 cgd config_detach(struct device *dev, int flags)
684 1.33 thorpej {
685 1.65 thorpej struct cftable *ct;
686 1.33 thorpej struct cfdata *cf;
687 1.73 thorpej const struct cfattach *ca;
688 1.33 thorpej struct cfdriver *cd;
689 1.33 thorpej #ifdef DIAGNOSTIC
690 1.33 thorpej struct device *d;
691 1.33 thorpej #endif
692 1.36 thorpej int rv = 0, i;
693 1.33 thorpej
694 1.33 thorpej cf = dev->dv_cfdata;
695 1.33 thorpej #ifdef DIAGNOSTIC
696 1.33 thorpej if (cf->cf_fstate != FSTATE_FOUND && cf->cf_fstate != FSTATE_STAR)
697 1.33 thorpej panic("config_detach: bad device fstate");
698 1.33 thorpej #endif
699 1.67 thorpej cd = config_cfdriver_lookup(cf->cf_name);
700 1.67 thorpej KASSERT(cd != NULL);
701 1.33 thorpej ca = cf->cf_attach;
702 1.33 thorpej
703 1.33 thorpej /*
704 1.33 thorpej * Ensure the device is deactivated. If the device doesn't
705 1.33 thorpej * have an activation entry point, we allow DVF_ACTIVE to
706 1.33 thorpej * remain set. Otherwise, if DVF_ACTIVE is still set, the
707 1.33 thorpej * device is busy, and the detach fails.
708 1.33 thorpej */
709 1.35 thorpej if (ca->ca_activate != NULL)
710 1.35 thorpej rv = config_deactivate(dev);
711 1.33 thorpej
712 1.33 thorpej /*
713 1.33 thorpej * Try to detach the device. If that's not possible, then
714 1.33 thorpej * we either panic() (for the forced but failed case), or
715 1.33 thorpej * return an error.
716 1.33 thorpej */
717 1.33 thorpej if (rv == 0) {
718 1.33 thorpej if (ca->ca_detach != NULL)
719 1.33 thorpej rv = (*ca->ca_detach)(dev, flags);
720 1.33 thorpej else
721 1.33 thorpej rv = EOPNOTSUPP;
722 1.33 thorpej }
723 1.33 thorpej if (rv != 0) {
724 1.33 thorpej if ((flags & DETACH_FORCE) == 0)
725 1.33 thorpej return (rv);
726 1.33 thorpej else
727 1.33 thorpej panic("config_detach: forced detach of %s failed (%d)",
728 1.33 thorpej dev->dv_xname, rv);
729 1.33 thorpej }
730 1.33 thorpej
731 1.33 thorpej /*
732 1.33 thorpej * The device has now been successfully detached.
733 1.33 thorpej */
734 1.33 thorpej
735 1.33 thorpej #ifdef DIAGNOSTIC
736 1.33 thorpej /*
737 1.33 thorpej * Sanity: If you're successfully detached, you should have no
738 1.33 thorpej * children. (Note that because children must be attached
739 1.33 thorpej * after parents, we only need to search the latter part of
740 1.33 thorpej * the list.)
741 1.33 thorpej */
742 1.33 thorpej for (d = TAILQ_NEXT(dev, dv_list); d != NULL;
743 1.48 enami d = TAILQ_NEXT(d, dv_list)) {
744 1.48 enami if (d->dv_parent == dev) {
745 1.48 enami printf("config_detach: detached device %s"
746 1.48 enami " has children %s\n", dev->dv_xname, d->dv_xname);
747 1.48 enami panic("config_detach");
748 1.48 enami }
749 1.33 thorpej }
750 1.33 thorpej #endif
751 1.33 thorpej
752 1.33 thorpej /*
753 1.33 thorpej * Mark cfdata to show that the unit can be reused, if possible.
754 1.33 thorpej */
755 1.65 thorpej TAILQ_FOREACH(ct, &allcftables, ct_list) {
756 1.67 thorpej for (cf = ct->ct_cfdata; cf->cf_name; cf++) {
757 1.67 thorpej if (STREQ(cf->cf_name, cd->cd_name)) {
758 1.65 thorpej if (cf->cf_fstate == FSTATE_FOUND &&
759 1.65 thorpej cf->cf_unit == dev->dv_unit)
760 1.65 thorpej cf->cf_fstate = FSTATE_NOTFOUND;
761 1.46 cgd #ifdef __BROKEN_CONFIG_UNIT_USAGE
762 1.66 thorpej /*
763 1.66 thorpej * Note that we can only re-use a starred
764 1.66 thorpej * unit number if the unit being detached
765 1.66 thorpej * had the last assigned unit number.
766 1.66 thorpej */
767 1.65 thorpej if (cf->cf_fstate == FSTATE_STAR &&
768 1.65 thorpej cf->cf_unit == dev->dv_unit + 1)
769 1.65 thorpej cf->cf_unit--;
770 1.46 cgd #endif /* __BROKEN_CONFIG_UNIT_USAGE */
771 1.65 thorpej }
772 1.33 thorpej }
773 1.33 thorpej }
774 1.33 thorpej
775 1.33 thorpej /*
776 1.33 thorpej * Unlink from device list.
777 1.33 thorpej */
778 1.33 thorpej TAILQ_REMOVE(&alldevs, dev, dv_list);
779 1.33 thorpej
780 1.33 thorpej /*
781 1.33 thorpej * Remove from cfdriver's array, tell the world, and free softc.
782 1.33 thorpej */
783 1.33 thorpej cd->cd_devs[dev->dv_unit] = NULL;
784 1.33 thorpej if ((flags & DETACH_QUIET) == 0)
785 1.33 thorpej printf("%s detached\n", dev->dv_xname);
786 1.33 thorpej free(dev, M_DEVBUF);
787 1.33 thorpej
788 1.33 thorpej /*
789 1.33 thorpej * If the device now has no units in use, deallocate its softc array.
790 1.33 thorpej */
791 1.33 thorpej for (i = 0; i < cd->cd_ndevs; i++)
792 1.33 thorpej if (cd->cd_devs[i] != NULL)
793 1.33 thorpej break;
794 1.33 thorpej if (i == cd->cd_ndevs) { /* nothing found; deallocate */
795 1.33 thorpej free(cd->cd_devs, M_DEVBUF);
796 1.33 thorpej cd->cd_devs = NULL;
797 1.33 thorpej cd->cd_ndevs = 0;
798 1.33 thorpej }
799 1.33 thorpej
800 1.33 thorpej /*
801 1.33 thorpej * Return success.
802 1.33 thorpej */
803 1.33 thorpej return (0);
804 1.33 thorpej }
805 1.33 thorpej
806 1.33 thorpej int
807 1.51 cgd config_activate(struct device *dev)
808 1.33 thorpej {
809 1.73 thorpej const struct cfattach *ca = dev->dv_cfdata->cf_attach;
810 1.34 thorpej int rv = 0, oflags = dev->dv_flags;
811 1.33 thorpej
812 1.33 thorpej if (ca->ca_activate == NULL)
813 1.33 thorpej return (EOPNOTSUPP);
814 1.33 thorpej
815 1.33 thorpej if ((dev->dv_flags & DVF_ACTIVE) == 0) {
816 1.33 thorpej dev->dv_flags |= DVF_ACTIVE;
817 1.33 thorpej rv = (*ca->ca_activate)(dev, DVACT_ACTIVATE);
818 1.34 thorpej if (rv)
819 1.34 thorpej dev->dv_flags = oflags;
820 1.33 thorpej }
821 1.33 thorpej return (rv);
822 1.33 thorpej }
823 1.33 thorpej
824 1.33 thorpej int
825 1.51 cgd config_deactivate(struct device *dev)
826 1.33 thorpej {
827 1.73 thorpej const struct cfattach *ca = dev->dv_cfdata->cf_attach;
828 1.34 thorpej int rv = 0, oflags = dev->dv_flags;
829 1.33 thorpej
830 1.33 thorpej if (ca->ca_activate == NULL)
831 1.33 thorpej return (EOPNOTSUPP);
832 1.33 thorpej
833 1.33 thorpej if (dev->dv_flags & DVF_ACTIVE) {
834 1.33 thorpej dev->dv_flags &= ~DVF_ACTIVE;
835 1.33 thorpej rv = (*ca->ca_activate)(dev, DVACT_DEACTIVATE);
836 1.34 thorpej if (rv)
837 1.34 thorpej dev->dv_flags = oflags;
838 1.33 thorpej }
839 1.33 thorpej return (rv);
840 1.33 thorpej }
841 1.33 thorpej
842 1.33 thorpej /*
843 1.29 thorpej * Defer the configuration of the specified device until all
844 1.29 thorpej * of its parent's devices have been attached.
845 1.29 thorpej */
846 1.29 thorpej void
847 1.51 cgd config_defer(struct device *dev, void (*func)(struct device *))
848 1.29 thorpej {
849 1.29 thorpej struct deferred_config *dc;
850 1.29 thorpej
851 1.29 thorpej if (dev->dv_parent == NULL)
852 1.29 thorpej panic("config_defer: can't defer config of a root device");
853 1.29 thorpej
854 1.29 thorpej #ifdef DIAGNOSTIC
855 1.29 thorpej for (dc = TAILQ_FIRST(&deferred_config_queue); dc != NULL;
856 1.29 thorpej dc = TAILQ_NEXT(dc, dc_queue)) {
857 1.29 thorpej if (dc->dc_dev == dev)
858 1.29 thorpej panic("config_defer: deferred twice");
859 1.29 thorpej }
860 1.29 thorpej #endif
861 1.29 thorpej
862 1.43 thorpej dc = malloc(sizeof(*dc), M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
863 1.43 thorpej if (dc == NULL)
864 1.43 thorpej panic("config_defer: unable to allocate callback");
865 1.29 thorpej
866 1.29 thorpej dc->dc_dev = dev;
867 1.29 thorpej dc->dc_func = func;
868 1.29 thorpej TAILQ_INSERT_TAIL(&deferred_config_queue, dc, dc_queue);
869 1.47 thorpej config_pending_incr();
870 1.29 thorpej }
871 1.29 thorpej
872 1.29 thorpej /*
873 1.42 thorpej * Defer some autoconfiguration for a device until after interrupts
874 1.42 thorpej * are enabled.
875 1.42 thorpej */
876 1.42 thorpej void
877 1.51 cgd config_interrupts(struct device *dev, void (*func)(struct device *))
878 1.42 thorpej {
879 1.42 thorpej struct deferred_config *dc;
880 1.42 thorpej
881 1.42 thorpej /*
882 1.42 thorpej * If interrupts are enabled, callback now.
883 1.42 thorpej */
884 1.43 thorpej if (cold == 0) {
885 1.42 thorpej (*func)(dev);
886 1.42 thorpej return;
887 1.42 thorpej }
888 1.42 thorpej
889 1.42 thorpej #ifdef DIAGNOSTIC
890 1.42 thorpej for (dc = TAILQ_FIRST(&interrupt_config_queue); dc != NULL;
891 1.42 thorpej dc = TAILQ_NEXT(dc, dc_queue)) {
892 1.42 thorpej if (dc->dc_dev == dev)
893 1.42 thorpej panic("config_interrupts: deferred twice");
894 1.42 thorpej }
895 1.42 thorpej #endif
896 1.42 thorpej
897 1.43 thorpej dc = malloc(sizeof(*dc), M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
898 1.43 thorpej if (dc == NULL)
899 1.43 thorpej panic("config_interrupts: unable to allocate callback");
900 1.42 thorpej
901 1.42 thorpej dc->dc_dev = dev;
902 1.42 thorpej dc->dc_func = func;
903 1.42 thorpej TAILQ_INSERT_TAIL(&interrupt_config_queue, dc, dc_queue);
904 1.47 thorpej config_pending_incr();
905 1.42 thorpej }
906 1.42 thorpej
907 1.42 thorpej /*
908 1.42 thorpej * Process a deferred configuration queue.
909 1.29 thorpej */
910 1.29 thorpej static void
911 1.51 cgd config_process_deferred(struct deferred_config_head *queue,
912 1.51 cgd struct device *parent)
913 1.29 thorpej {
914 1.29 thorpej struct deferred_config *dc, *ndc;
915 1.29 thorpej
916 1.42 thorpej for (dc = TAILQ_FIRST(queue); dc != NULL; dc = ndc) {
917 1.29 thorpej ndc = TAILQ_NEXT(dc, dc_queue);
918 1.42 thorpej if (parent == NULL || dc->dc_dev->dv_parent == parent) {
919 1.42 thorpej TAILQ_REMOVE(queue, dc, dc_queue);
920 1.29 thorpej (*dc->dc_func)(dc->dc_dev);
921 1.29 thorpej free(dc, M_DEVBUF);
922 1.47 thorpej config_pending_decr();
923 1.29 thorpej }
924 1.29 thorpej }
925 1.47 thorpej }
926 1.47 thorpej
927 1.47 thorpej /*
928 1.47 thorpej * Manipulate the config_pending semaphore.
929 1.47 thorpej */
930 1.47 thorpej void
931 1.51 cgd config_pending_incr(void)
932 1.47 thorpej {
933 1.47 thorpej
934 1.47 thorpej config_pending++;
935 1.47 thorpej }
936 1.47 thorpej
937 1.47 thorpej void
938 1.51 cgd config_pending_decr(void)
939 1.47 thorpej {
940 1.47 thorpej
941 1.47 thorpej #ifdef DIAGNOSTIC
942 1.47 thorpej if (config_pending == 0)
943 1.47 thorpej panic("config_pending_decr: config_pending == 0");
944 1.47 thorpej #endif
945 1.47 thorpej config_pending--;
946 1.47 thorpej if (config_pending == 0)
947 1.47 thorpej wakeup((void *)&config_pending);
948 1.29 thorpej }
949 1.1 glass
950 1.1 glass /*
951 1.53 cgd * Attach a statically-initialized event. The type and string pointers
952 1.53 cgd * are already set up.
953 1.1 glass */
954 1.1 glass void
955 1.53 cgd evcnt_attach_static(struct evcnt *ev)
956 1.1 glass {
957 1.53 cgd int len;
958 1.1 glass
959 1.53 cgd len = strlen(ev->ev_group);
960 1.1 glass #ifdef DIAGNOSTIC
961 1.53 cgd if (len >= EVCNT_STRING_MAX) /* ..._MAX includes NUL */
962 1.53 cgd panic("evcnt_attach_static: group length (%s)", ev->ev_group);
963 1.1 glass #endif
964 1.53 cgd ev->ev_grouplen = len;
965 1.53 cgd
966 1.53 cgd len = strlen(ev->ev_name);
967 1.53 cgd #ifdef DIAGNOSTIC
968 1.53 cgd if (len >= EVCNT_STRING_MAX) /* ..._MAX includes NUL */
969 1.53 cgd panic("evcnt_attach_static: name length (%s)", ev->ev_name);
970 1.53 cgd #endif
971 1.53 cgd ev->ev_namelen = len;
972 1.53 cgd
973 1.20 cgd TAILQ_INSERT_TAIL(&allevents, ev, ev_list);
974 1.53 cgd }
975 1.53 cgd
976 1.53 cgd /*
977 1.53 cgd * Attach a dynamically-initialized event. Zero it, set up the type
978 1.53 cgd * and string pointers and then act like it was statically initialized.
979 1.53 cgd */
980 1.53 cgd void
981 1.53 cgd evcnt_attach_dynamic(struct evcnt *ev, int type, const struct evcnt *parent,
982 1.53 cgd const char *group, const char *name)
983 1.53 cgd {
984 1.53 cgd
985 1.53 cgd memset(ev, 0, sizeof *ev);
986 1.53 cgd ev->ev_type = type;
987 1.53 cgd ev->ev_parent = parent;
988 1.53 cgd ev->ev_group = group;
989 1.53 cgd ev->ev_name = name;
990 1.53 cgd evcnt_attach_static(ev);
991 1.33 thorpej }
992 1.33 thorpej
993 1.33 thorpej /*
994 1.33 thorpej * Detach an event.
995 1.33 thorpej */
996 1.33 thorpej void
997 1.51 cgd evcnt_detach(struct evcnt *ev)
998 1.33 thorpej {
999 1.33 thorpej
1000 1.33 thorpej TAILQ_REMOVE(&allevents, ev, ev_list);
1001 1.1 glass }
1002 1.62 simonb
1003 1.62 simonb #ifdef DDB
1004 1.62 simonb void
1005 1.62 simonb event_print(int full, void (*pr)(const char *, ...))
1006 1.62 simonb {
1007 1.62 simonb struct evcnt *evp;
1008 1.62 simonb
1009 1.62 simonb TAILQ_FOREACH(evp, &allevents, ev_list) {
1010 1.62 simonb if (evp->ev_count == 0 && !full)
1011 1.62 simonb continue;
1012 1.62 simonb
1013 1.62 simonb (*pr)("evcnt type %d: %s %s = %lld\n", evp->ev_type,
1014 1.62 simonb evp->ev_group, evp->ev_name, evp->ev_count);
1015 1.62 simonb }
1016 1.62 simonb }
1017 1.62 simonb #endif /* DDB */
1018