subr_autoconf.c revision 1.13 1 1.13 mycroft /* $NetBSD: subr_autoconf.c,v 1.13 1994/11/04 00:14:04 mycroft Exp $ */
2 1.9 cgd
3 1.1 glass /*
4 1.7 glass * Copyright (c) 1992, 1993
5 1.7 glass * The Regents of the University of California. All rights reserved.
6 1.1 glass *
7 1.1 glass * This software was developed by the Computer Systems Engineering group
8 1.1 glass * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 glass * contributed to Berkeley.
10 1.1 glass *
11 1.1 glass * All advertising materials mentioning features or use of this software
12 1.1 glass * must display the following acknowledgement:
13 1.1 glass * This product includes software developed by the University of
14 1.1 glass * California, Lawrence Berkeley Laboratories.
15 1.1 glass *
16 1.7 glass * Redistribution and use in source and binary forms, with or without
17 1.7 glass * modification, are permitted provided that the following conditions
18 1.7 glass * are met:
19 1.7 glass * 1. Redistributions of source code must retain the above copyright
20 1.7 glass * notice, this list of conditions and the following disclaimer.
21 1.7 glass * 2. Redistributions in binary form must reproduce the above copyright
22 1.7 glass * notice, this list of conditions and the following disclaimer in the
23 1.7 glass * documentation and/or other materials provided with the distribution.
24 1.7 glass * 3. All advertising materials mentioning features or use of this software
25 1.7 glass * must display the following acknowledgement:
26 1.7 glass * This product includes software developed by the University of
27 1.7 glass * California, Berkeley and its contributors.
28 1.7 glass * 4. Neither the name of the University nor the names of its contributors
29 1.7 glass * may be used to endorse or promote products derived from this software
30 1.7 glass * without specific prior written permission.
31 1.1 glass *
32 1.7 glass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 1.7 glass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 1.7 glass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 1.7 glass * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 1.7 glass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 1.7 glass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 1.7 glass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 1.7 glass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 1.7 glass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 1.7 glass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 1.7 glass * SUCH DAMAGE.
43 1.1 glass *
44 1.8 cgd * from: Header: subr_autoconf.c,v 1.12 93/02/01 19:31:48 torek Exp (LBL)
45 1.9 cgd *
46 1.9 cgd * @(#)subr_autoconf.c 8.1 (Berkeley) 6/10/93
47 1.1 glass */
48 1.1 glass
49 1.4 mycroft #include <sys/param.h>
50 1.4 mycroft #include <sys/device.h>
51 1.4 mycroft #include <sys/malloc.h>
52 1.11 cgd #include <lib/libkern/libkern.h>
53 1.1 glass
54 1.1 glass /*
55 1.1 glass * Autoconfiguration subroutines.
56 1.1 glass */
57 1.1 glass
58 1.1 glass /*
59 1.1 glass * ioconf.c exports exactly two names: cfdata and cfroots. All system
60 1.1 glass * devices and drivers are found via these tables.
61 1.1 glass */
62 1.1 glass extern struct cfdata cfdata[];
63 1.1 glass extern short cfroots[];
64 1.1 glass
65 1.1 glass #define ROOT ((struct device *)NULL)
66 1.1 glass
67 1.1 glass struct matchinfo {
68 1.1 glass cfmatch_t fn;
69 1.1 glass struct device *parent;
70 1.12 mycroft void *match;
71 1.1 glass void *aux;
72 1.1 glass int pri;
73 1.1 glass };
74 1.1 glass
75 1.13 mycroft struct device *config_make_softc __P((struct device *, struct cfdata *));
76 1.12 mycroft
77 1.1 glass /*
78 1.1 glass * Apply the matching function and choose the best. This is used
79 1.1 glass * a few times and we want to keep the code small.
80 1.1 glass */
81 1.1 glass static void
82 1.1 glass mapply(m, cf)
83 1.1 glass register struct matchinfo *m;
84 1.1 glass register struct cfdata *cf;
85 1.1 glass {
86 1.1 glass register int pri;
87 1.12 mycroft void *match;
88 1.12 mycroft int indirect;
89 1.12 mycroft
90 1.13 mycroft indirect = m->parent && m->parent->dv_cfdata->cf_driver->cd_indirect;
91 1.12 mycroft if (indirect) {
92 1.13 mycroft match = config_make_softc(m->parent, cf);
93 1.12 mycroft cf->cf_driver->cd_devs[cf->cf_unit] = match;
94 1.12 mycroft } else
95 1.12 mycroft match = cf;
96 1.1 glass
97 1.1 glass if (m->fn != NULL)
98 1.12 mycroft pri = (*m->fn)(m->parent, match, m->aux);
99 1.3 glass else {
100 1.7 glass if (cf->cf_driver->cd_match == NULL) {
101 1.12 mycroft panic("mapply: no match function for '%s' device\n",
102 1.12 mycroft cf->cf_driver->cd_name);
103 1.3 glass }
104 1.12 mycroft pri = (*cf->cf_driver->cd_match)(m->parent, match, m->aux);
105 1.3 glass }
106 1.12 mycroft
107 1.12 mycroft if (indirect)
108 1.12 mycroft cf->cf_driver->cd_devs[cf->cf_unit] = NULL;
109 1.12 mycroft
110 1.1 glass if (pri > m->pri) {
111 1.12 mycroft if (indirect && m->match)
112 1.12 mycroft free(m->match, M_DEVBUF);
113 1.12 mycroft m->match = match;
114 1.1 glass m->pri = pri;
115 1.12 mycroft } else {
116 1.12 mycroft if (indirect)
117 1.12 mycroft free(match, M_DEVBUF);
118 1.1 glass }
119 1.1 glass }
120 1.1 glass
121 1.1 glass /*
122 1.1 glass * Iterate over all potential children of some device, calling the given
123 1.1 glass * function (default being the child's match function) for each one.
124 1.1 glass * Nonzero returns are matches; the highest value returned is considered
125 1.1 glass * the best match. Return the `found child' if we got a match, or NULL
126 1.1 glass * otherwise. The `aux' pointer is simply passed on through.
127 1.1 glass *
128 1.1 glass * Note that this function is designed so that it can be used to apply
129 1.1 glass * an arbitrary function to all potential children (its return value
130 1.1 glass * can be ignored).
131 1.1 glass */
132 1.12 mycroft void *
133 1.1 glass config_search(fn, parent, aux)
134 1.1 glass cfmatch_t fn;
135 1.1 glass register struct device *parent;
136 1.1 glass void *aux;
137 1.1 glass {
138 1.1 glass register struct cfdata *cf;
139 1.1 glass register short *p;
140 1.1 glass struct matchinfo m;
141 1.1 glass
142 1.1 glass m.fn = fn;
143 1.1 glass m.parent = parent;
144 1.1 glass m.aux = aux;
145 1.1 glass m.match = NULL;
146 1.1 glass m.pri = 0;
147 1.1 glass for (cf = cfdata; cf->cf_driver; cf++) {
148 1.1 glass /*
149 1.1 glass * Skip cf if no longer eligible, otherwise scan through
150 1.1 glass * parents for one matching `parent', and try match function.
151 1.1 glass */
152 1.1 glass if (cf->cf_fstate == FSTATE_FOUND)
153 1.1 glass continue;
154 1.1 glass for (p = cf->cf_parents; *p >= 0; p++)
155 1.1 glass if (parent->dv_cfdata == &cfdata[*p])
156 1.1 glass mapply(&m, cf);
157 1.1 glass }
158 1.1 glass return (m.match);
159 1.1 glass }
160 1.1 glass
161 1.1 glass /*
162 1.1 glass * Find the given root device.
163 1.1 glass * This is much like config_search, but there is no parent.
164 1.1 glass */
165 1.12 mycroft void *
166 1.1 glass config_rootsearch(fn, rootname, aux)
167 1.1 glass register cfmatch_t fn;
168 1.1 glass register char *rootname;
169 1.1 glass register void *aux;
170 1.1 glass {
171 1.1 glass register struct cfdata *cf;
172 1.1 glass register short *p;
173 1.1 glass struct matchinfo m;
174 1.1 glass
175 1.1 glass m.fn = fn;
176 1.1 glass m.parent = ROOT;
177 1.1 glass m.aux = aux;
178 1.1 glass m.match = NULL;
179 1.1 glass m.pri = 0;
180 1.1 glass /*
181 1.1 glass * Look at root entries for matching name. We do not bother
182 1.1 glass * with found-state here since only one root should ever be
183 1.1 glass * searched (and it must be done first).
184 1.1 glass */
185 1.1 glass for (p = cfroots; *p >= 0; p++) {
186 1.1 glass cf = &cfdata[*p];
187 1.1 glass if (strcmp(cf->cf_driver->cd_name, rootname) == 0)
188 1.1 glass mapply(&m, cf);
189 1.1 glass }
190 1.1 glass return (m.match);
191 1.1 glass }
192 1.1 glass
193 1.1 glass static char *msgs[3] = { "", " not configured\n", " unsupported\n" };
194 1.1 glass
195 1.1 glass /*
196 1.1 glass * The given `aux' argument describes a device that has been found
197 1.1 glass * on the given parent, but not necessarily configured. Locate the
198 1.1 glass * configuration data for that device (using the cd_match configuration
199 1.1 glass * driver function) and attach it, and return true. If the device was
200 1.1 glass * not configured, call the given `print' function and return 0.
201 1.1 glass */
202 1.1 glass int
203 1.1 glass config_found(parent, aux, print)
204 1.1 glass struct device *parent;
205 1.1 glass void *aux;
206 1.1 glass cfprint_t print;
207 1.1 glass {
208 1.12 mycroft void *match;
209 1.1 glass
210 1.12 mycroft if ((match = config_search((cfmatch_t)NULL, parent, aux)) != NULL) {
211 1.12 mycroft config_attach(parent, match, aux, print);
212 1.1 glass return (1);
213 1.1 glass }
214 1.3 glass if (print)
215 1.12 mycroft printf(msgs[(*print)(aux, parent->dv_xname)]);
216 1.1 glass return (0);
217 1.1 glass }
218 1.1 glass
219 1.1 glass /*
220 1.1 glass * As above, but for root devices.
221 1.1 glass */
222 1.1 glass int
223 1.1 glass config_rootfound(rootname, aux)
224 1.1 glass char *rootname;
225 1.1 glass void *aux;
226 1.1 glass {
227 1.12 mycroft void *match;
228 1.1 glass
229 1.12 mycroft if ((match = config_rootsearch((cfmatch_t)NULL, rootname, aux))
230 1.12 mycroft != NULL) {
231 1.12 mycroft config_attach(ROOT, match, aux, (cfprint_t)NULL);
232 1.1 glass return (1);
233 1.1 glass }
234 1.1 glass printf("root device %s not configured\n", rootname);
235 1.1 glass return (0);
236 1.1 glass }
237 1.1 glass
238 1.1 glass /* just like sprintf(buf, "%d") except that it works from the end */
239 1.1 glass static char *
240 1.1 glass number(ep, n)
241 1.1 glass register char *ep;
242 1.1 glass register int n;
243 1.1 glass {
244 1.1 glass
245 1.1 glass *--ep = 0;
246 1.1 glass while (n >= 10) {
247 1.1 glass *--ep = (n % 10) + '0';
248 1.1 glass n /= 10;
249 1.1 glass }
250 1.1 glass *--ep = n + '0';
251 1.1 glass return (ep);
252 1.1 glass }
253 1.1 glass
254 1.1 glass /*
255 1.1 glass * Attach a found device. Allocates memory for device variables.
256 1.1 glass */
257 1.1 glass void
258 1.12 mycroft config_attach(parent, match, aux, print)
259 1.1 glass register struct device *parent;
260 1.12 mycroft void *match;
261 1.1 glass register void *aux;
262 1.1 glass cfprint_t print;
263 1.1 glass {
264 1.12 mycroft register struct cfdata *cf;
265 1.12 mycroft register struct device *dev;
266 1.13 mycroft register struct cfdriver *cd;
267 1.12 mycroft static struct device **nextp = &alldevs;
268 1.12 mycroft
269 1.13 mycroft if (parent && parent->dv_cfdata->cf_driver->cd_indirect) {
270 1.12 mycroft dev = match;
271 1.12 mycroft cf = dev->dv_cfdata;
272 1.12 mycroft } else {
273 1.12 mycroft cf = match;
274 1.13 mycroft dev = config_make_softc(parent, cf);
275 1.12 mycroft }
276 1.12 mycroft
277 1.13 mycroft cd = cf->cf_driver;
278 1.13 mycroft cd->cd_devs[cf->cf_unit] = dev;
279 1.12 mycroft
280 1.12 mycroft if (cf->cf_fstate == FSTATE_STAR)
281 1.12 mycroft cf->cf_unit++;
282 1.12 mycroft else
283 1.12 mycroft cf->cf_fstate = FSTATE_FOUND;
284 1.12 mycroft
285 1.12 mycroft *nextp = dev; /* link up */
286 1.12 mycroft nextp = &dev->dv_next;
287 1.12 mycroft
288 1.12 mycroft if (parent == ROOT)
289 1.12 mycroft printf("%s (root)", dev->dv_xname);
290 1.12 mycroft else {
291 1.12 mycroft printf("%s at %s", dev->dv_xname, parent->dv_xname);
292 1.12 mycroft if (print)
293 1.12 mycroft (void) (*print)(aux, (char *)0);
294 1.12 mycroft }
295 1.12 mycroft
296 1.12 mycroft /*
297 1.12 mycroft * Before attaching, clobber any unfound devices that are
298 1.12 mycroft * otherwise identical.
299 1.12 mycroft */
300 1.12 mycroft for (cf = cfdata; cf->cf_driver; cf++)
301 1.12 mycroft if (cf->cf_driver == cd && cf->cf_unit == dev->dv_unit &&
302 1.12 mycroft cf->cf_fstate == FSTATE_NOTFOUND)
303 1.12 mycroft cf->cf_fstate = FSTATE_FOUND;
304 1.12 mycroft (*cd->cd_attach)(parent, dev, aux);
305 1.12 mycroft }
306 1.12 mycroft
307 1.12 mycroft struct device *
308 1.13 mycroft config_make_softc(parent, cf)
309 1.13 mycroft struct device *parent;
310 1.12 mycroft struct cfdata *cf;
311 1.12 mycroft {
312 1.1 glass register struct device *dev;
313 1.1 glass register struct cfdriver *cd;
314 1.1 glass register size_t lname, lunit;
315 1.1 glass register char *xunit;
316 1.1 glass char num[10];
317 1.1 glass
318 1.1 glass cd = cf->cf_driver;
319 1.1 glass if (cd->cd_devsize < sizeof(struct device))
320 1.12 mycroft panic("config_make_softc");
321 1.1 glass
322 1.1 glass /* compute length of name and decimal expansion of unit number */
323 1.1 glass lname = strlen(cd->cd_name);
324 1.12 mycroft xunit = number(&num[sizeof num], cf->cf_unit);
325 1.1 glass lunit = &num[sizeof num] - xunit;
326 1.1 glass if (lname + lunit >= sizeof(dev->dv_xname))
327 1.1 glass panic("config_attach: device name too long");
328 1.1 glass
329 1.1 glass /* get memory for all device vars */
330 1.3 glass dev = (struct device *)malloc(cd->cd_devsize, M_DEVBUF, M_NOWAIT);
331 1.3 glass if (!dev)
332 1.3 glass panic("config_attach: memory allocation for device softc failed");
333 1.1 glass bzero(dev, cd->cd_devsize);
334 1.1 glass dev->dv_class = cd->cd_class;
335 1.1 glass dev->dv_cfdata = cf;
336 1.12 mycroft dev->dv_unit = cf->cf_unit;
337 1.1 glass bcopy(cd->cd_name, dev->dv_xname, lname);
338 1.1 glass bcopy(xunit, dev->dv_xname + lname, lunit);
339 1.1 glass dev->dv_parent = parent;
340 1.1 glass
341 1.1 glass /* put this device in the devices array */
342 1.1 glass if (dev->dv_unit >= cd->cd_ndevs) {
343 1.1 glass /*
344 1.1 glass * Need to expand the array.
345 1.1 glass */
346 1.10 mycroft int old = cd->cd_ndevs, new;
347 1.1 glass void **nsp;
348 1.1 glass
349 1.10 mycroft if (old == 0)
350 1.10 mycroft new = MINALLOCSIZE / sizeof(void *);
351 1.10 mycroft else
352 1.10 mycroft new = old * 2;
353 1.10 mycroft while (new <= dev->dv_unit)
354 1.10 mycroft new *= 2;
355 1.10 mycroft cd->cd_ndevs = new;
356 1.10 mycroft nsp = malloc(new * sizeof(void *), M_DEVBUF, M_NOWAIT);
357 1.10 mycroft if (nsp == 0)
358 1.10 mycroft panic("config_attach: %sing dev array",
359 1.10 mycroft old != 0 ? "expand" : "creat");
360 1.10 mycroft bzero(nsp + old, (new - old) * sizeof(void *));
361 1.10 mycroft if (old != 0) {
362 1.10 mycroft bcopy(cd->cd_devs, nsp, old * sizeof(void *));
363 1.1 glass free(cd->cd_devs, M_DEVBUF);
364 1.1 glass }
365 1.1 glass cd->cd_devs = nsp;
366 1.1 glass }
367 1.1 glass if (cd->cd_devs[dev->dv_unit])
368 1.1 glass panic("config_attach: duplicate %s", dev->dv_xname);
369 1.1 glass
370 1.12 mycroft return (dev);
371 1.1 glass }
372 1.1 glass
373 1.1 glass /*
374 1.1 glass * Attach an event. These must come from initially-zero space (see
375 1.1 glass * commented-out assignments below), but that occurs naturally for
376 1.1 glass * device instance variables.
377 1.1 glass */
378 1.1 glass void
379 1.1 glass evcnt_attach(dev, name, ev)
380 1.1 glass struct device *dev;
381 1.1 glass const char *name;
382 1.1 glass struct evcnt *ev;
383 1.1 glass {
384 1.1 glass static struct evcnt **nextp = &allevents;
385 1.1 glass
386 1.1 glass #ifdef DIAGNOSTIC
387 1.1 glass if (strlen(name) >= sizeof(ev->ev_name))
388 1.1 glass panic("evcnt_attach");
389 1.1 glass #endif
390 1.1 glass /* ev->ev_next = NULL; */
391 1.1 glass ev->ev_dev = dev;
392 1.1 glass /* ev->ev_count = 0; */
393 1.1 glass strcpy(ev->ev_name, name);
394 1.1 glass *nextp = ev;
395 1.1 glass nextp = &ev->ev_next;
396 1.1 glass }
397