1 /*-
2 * Copyright (c) 1997,1998,2003 Doug Rabson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include "opt_bus.h"
31
32 #include <sys/param.h>
33 #include <sys/conf.h>
34 #include <sys/filio.h>
35 #include <sys/lock.h>
36 #include <sys/kernel.h>
37 #include <sys/kobj.h>
38 #include <sys/limits.h>
39 #include <sys/malloc.h>
40 #include <sys/module.h>
41 #include <sys/mutex.h>
42 #include <sys/poll.h>
43 #include <sys/priv.h>
44 #include <sys/proc.h>
45 #include <sys/condvar.h>
46 #include <sys/queue.h>
47 #include <machine/bus.h>
48 #include <sys/random.h>
49 #include <sys/rman.h>
50 #include <sys/selinfo.h>
51 #include <sys/signalvar.h>
52 #include <sys/smp.h>
53 #include <sys/sysctl.h>
54 #include <sys/systm.h>
55 #include <sys/uio.h>
56 #include <sys/bus.h>
57 #include <sys/interrupt.h>
58 #include <sys/cpuset.h>
59
60 #include <net/vnet.h>
61
62 #include <machine/cpu.h>
63 #include <machine/stdarg.h>
64
65 #include <vm/uma.h>
66
67 SYSCTL_NODE(_hw, OID_AUTO, bus, CTLFLAG_RW, NULL, NULL);
68 SYSCTL_ROOT_NODE(OID_AUTO, dev, CTLFLAG_RW, NULL, NULL);
69
70 /*
71 * Used to attach drivers to devclasses.
72 */
73 typedef struct driverlink *driverlink_t;
74 struct driverlink {
75 kobj_class_t driver;
76 TAILQ_ENTRY(driverlink) link; /* list of drivers in devclass */
77 int pass;
78 TAILQ_ENTRY(driverlink) passlink;
79 };
80
81 /*
82 * Forward declarations
83 */
84 typedef TAILQ_HEAD(devclass_list, devclass) devclass_list_t;
85 typedef TAILQ_HEAD(driver_list, driverlink) driver_list_t;
86 typedef TAILQ_HEAD(device_list, device) device_list_t;
87
88 struct devclass {
89 TAILQ_ENTRY(devclass) link;
90 devclass_t parent; /* parent in devclass hierarchy */
91 driver_list_t drivers; /* bus devclasses store drivers for bus */
92 char *name;
93 device_t *devices; /* array of devices indexed by unit */
94 int maxunit; /* size of devices array */
95 int flags;
96 #define DC_HAS_CHILDREN 1
97
98 struct sysctl_ctx_list sysctl_ctx;
99 struct sysctl_oid *sysctl_tree;
100 };
101
102 /**
103 * @brief Implementation of device.
104 */
105 struct device {
106 /*
107 * A device is a kernel object. The first field must be the
108 * current ops table for the object.
109 */
110 KOBJ_FIELDS;
111
112 /*
113 * Device hierarchy.
114 */
115 TAILQ_ENTRY(device) link; /**< list of devices in parent */
116 TAILQ_ENTRY(device) devlink; /**< global device list membership */
117 device_t parent; /**< parent of this device */
118 device_list_t children; /**< list of child devices */
119
120 /*
121 * Details of this device.
122 */
123 driver_t *driver; /**< current driver */
124 devclass_t devclass; /**< current device class */
125 int unit; /**< current unit number */
126 char* nameunit; /**< name+unit e.g. foodev0 */
127 char* desc; /**< driver specific description */
128 int busy; /**< count of calls to device_busy() */
129 device_state_t state; /**< current device state */
130 uint32_t devflags; /**< api level flags for device_get_flags() */
131 u_int flags; /**< internal device flags */
132 u_int order; /**< order from device_add_child_ordered() */
133 void *ivars; /**< instance variables */
134 void *softc; /**< current driver's variables */
135
136 struct sysctl_ctx_list sysctl_ctx; /**< state for sysctl variables */
137 struct sysctl_oid *sysctl_tree; /**< state for sysctl variables */
138 };
139
140 static MALLOC_DEFINE(M_BUS, "bus", "Bus data structures");
141 static MALLOC_DEFINE(M_BUS_SC, "bus-sc", "Bus data structures, softc");
142
143 static void devctl2_init(void);
144
145 #ifdef BUS_DEBUG
146
147 static int bus_debug = 1;
148 SYSCTL_INT(_debug, OID_AUTO, bus_debug, CTLFLAG_RWTUN, &bus_debug, 0,
149 "Bus debug level");
150
151 #define PDEBUG(a) if (bus_debug) {printf("%s:%d: ", __func__, __LINE__), printf a; printf("\n");}
152 #define DEVICENAME(d) ((d)? device_get_name(d): "no device")
153 #define DRIVERNAME(d) ((d)? d->name : "no driver")
154 #define DEVCLANAME(d) ((d)? d->name : "no devclass")
155
156 /**
157 * Produce the indenting, indent*2 spaces plus a '.' ahead of that to
158 * prevent syslog from deleting initial spaces
159 */
160 #define indentprintf(p) do { int iJ; printf("."); for (iJ=0; iJ<indent; iJ++) printf(" "); printf p ; } while (0)
161
162 static void print_device_short(device_t dev, int indent);
163 static void print_device(device_t dev, int indent);
164 void print_device_tree_short(device_t dev, int indent);
165 void print_device_tree(device_t dev, int indent);
166 static void print_driver_short(driver_t *driver, int indent);
167 static void print_driver(driver_t *driver, int indent);
168 static void print_driver_list(driver_list_t drivers, int indent);
169 static void print_devclass_short(devclass_t dc, int indent);
170 static void print_devclass(devclass_t dc, int indent);
171 void print_devclass_list_short(void);
172 void print_devclass_list(void);
173
174 #else
175 /* Make the compiler ignore the function calls */
176 #define PDEBUG(a) /* nop */
177 #define DEVICENAME(d) /* nop */
178 #define DRIVERNAME(d) /* nop */
179 #define DEVCLANAME(d) /* nop */
180
181 #define print_device_short(d,i) /* nop */
182 #define print_device(d,i) /* nop */
183 #define print_device_tree_short(d,i) /* nop */
184 #define print_device_tree(d,i) /* nop */
185 #define print_driver_short(d,i) /* nop */
186 #define print_driver(d,i) /* nop */
187 #define print_driver_list(d,i) /* nop */
188 #define print_devclass_short(d,i) /* nop */
189 #define print_devclass(d,i) /* nop */
190 #define print_devclass_list_short() /* nop */
191 #define print_devclass_list() /* nop */
192 #endif
193
194 /*
195 * dev sysctl tree
196 */
197
198 enum {
199 DEVCLASS_SYSCTL_PARENT,
200 };
201
202 static int
devclass_sysctl_handler(SYSCTL_HANDLER_ARGS)203 devclass_sysctl_handler(SYSCTL_HANDLER_ARGS)
204 {
205 devclass_t dc = (devclass_t)arg1;
206 const char *value;
207
208 switch (arg2) {
209 case DEVCLASS_SYSCTL_PARENT:
210 value = dc->parent ? dc->parent->name : "";
211 break;
212 default:
213 return (EINVAL);
214 }
215 return (SYSCTL_OUT_STR(req, value));
216 }
217
218 static void
devclass_sysctl_init(devclass_t dc)219 devclass_sysctl_init(devclass_t dc)
220 {
221
222 if (dc->sysctl_tree != NULL)
223 return;
224 sysctl_ctx_init(&dc->sysctl_ctx);
225 dc->sysctl_tree = SYSCTL_ADD_NODE(&dc->sysctl_ctx,
226 SYSCTL_STATIC_CHILDREN(_dev), OID_AUTO, dc->name,
227 CTLFLAG_RD, NULL, "");
228 SYSCTL_ADD_PROC(&dc->sysctl_ctx, SYSCTL_CHILDREN(dc->sysctl_tree),
229 OID_AUTO, "%parent", CTLTYPE_STRING | CTLFLAG_RD,
230 dc, DEVCLASS_SYSCTL_PARENT, devclass_sysctl_handler, "A",
231 "parent class");
232 }
233
234 enum {
235 DEVICE_SYSCTL_DESC,
236 DEVICE_SYSCTL_DRIVER,
237 DEVICE_SYSCTL_LOCATION,
238 DEVICE_SYSCTL_PNPINFO,
239 DEVICE_SYSCTL_PARENT,
240 };
241
242 static int
device_sysctl_handler(SYSCTL_HANDLER_ARGS)243 device_sysctl_handler(SYSCTL_HANDLER_ARGS)
244 {
245 device_t dev = (device_t)arg1;
246 const char *value;
247 char *buf;
248 int error;
249
250 buf = NULL;
251 switch (arg2) {
252 case DEVICE_SYSCTL_DESC:
253 value = dev->desc ? dev->desc : "";
254 break;
255 case DEVICE_SYSCTL_DRIVER:
256 value = dev->driver ? dev->driver->name : "";
257 break;
258 case DEVICE_SYSCTL_LOCATION:
259 value = buf = malloc(1024, M_BUS, M_WAITOK | M_ZERO);
260 bus_child_location_str(dev, buf, 1024);
261 break;
262 case DEVICE_SYSCTL_PNPINFO:
263 value = buf = malloc(1024, M_BUS, M_WAITOK | M_ZERO);
264 bus_child_pnpinfo_str(dev, buf, 1024);
265 break;
266 case DEVICE_SYSCTL_PARENT:
267 value = dev->parent ? dev->parent->nameunit : "";
268 break;
269 default:
270 return (EINVAL);
271 }
272 error = SYSCTL_OUT_STR(req, value);
273 if (buf != NULL)
274 free(buf, M_BUS);
275 return (error);
276 }
277
278 static void
device_sysctl_init(device_t dev)279 device_sysctl_init(device_t dev)
280 {
281 devclass_t dc = dev->devclass;
282 int domain;
283
284 if (dev->sysctl_tree != NULL)
285 return;
286 devclass_sysctl_init(dc);
287 sysctl_ctx_init(&dev->sysctl_ctx);
288 dev->sysctl_tree = SYSCTL_ADD_NODE(&dev->sysctl_ctx,
289 SYSCTL_CHILDREN(dc->sysctl_tree), OID_AUTO,
290 dev->nameunit + strlen(dc->name),
291 CTLFLAG_RD, NULL, "");
292 SYSCTL_ADD_PROC(&dev->sysctl_ctx, SYSCTL_CHILDREN(dev->sysctl_tree),
293 OID_AUTO, "%desc", CTLTYPE_STRING | CTLFLAG_RD,
294 dev, DEVICE_SYSCTL_DESC, device_sysctl_handler, "A",
295 "device description");
296 SYSCTL_ADD_PROC(&dev->sysctl_ctx, SYSCTL_CHILDREN(dev->sysctl_tree),
297 OID_AUTO, "%driver", CTLTYPE_STRING | CTLFLAG_RD,
298 dev, DEVICE_SYSCTL_DRIVER, device_sysctl_handler, "A",
299 "device driver name");
300 SYSCTL_ADD_PROC(&dev->sysctl_ctx, SYSCTL_CHILDREN(dev->sysctl_tree),
301 OID_AUTO, "%location", CTLTYPE_STRING | CTLFLAG_RD,
302 dev, DEVICE_SYSCTL_LOCATION, device_sysctl_handler, "A",
303 "device location relative to parent");
304 SYSCTL_ADD_PROC(&dev->sysctl_ctx, SYSCTL_CHILDREN(dev->sysctl_tree),
305 OID_AUTO, "%pnpinfo", CTLTYPE_STRING | CTLFLAG_RD,
306 dev, DEVICE_SYSCTL_PNPINFO, device_sysctl_handler, "A",
307 "device identification");
308 SYSCTL_ADD_PROC(&dev->sysctl_ctx, SYSCTL_CHILDREN(dev->sysctl_tree),
309 OID_AUTO, "%parent", CTLTYPE_STRING | CTLFLAG_RD,
310 dev, DEVICE_SYSCTL_PARENT, device_sysctl_handler, "A",
311 "parent device");
312 if (bus_get_domain(dev, &domain) == 0)
313 SYSCTL_ADD_INT(&dev->sysctl_ctx,
314 SYSCTL_CHILDREN(dev->sysctl_tree), OID_AUTO, "%domain",
315 CTLFLAG_RD, NULL, domain, "NUMA domain");
316 }
317
318 static void
device_sysctl_update(device_t dev)319 device_sysctl_update(device_t dev)
320 {
321 devclass_t dc = dev->devclass;
322
323 if (dev->sysctl_tree == NULL)
324 return;
325 sysctl_rename_oid(dev->sysctl_tree, dev->nameunit + strlen(dc->name));
326 }
327
328 static void
device_sysctl_fini(device_t dev)329 device_sysctl_fini(device_t dev)
330 {
331 if (dev->sysctl_tree == NULL)
332 return;
333 sysctl_ctx_free(&dev->sysctl_ctx);
334 dev->sysctl_tree = NULL;
335 }
336
337 /*
338 * /dev/devctl implementation
339 */
340
341 /*
342 * This design allows only one reader for /dev/devctl. This is not desirable
343 * in the long run, but will get a lot of hair out of this implementation.
344 * Maybe we should make this device a clonable device.
345 *
346 * Also note: we specifically do not attach a device to the device_t tree
347 * to avoid potential chicken and egg problems. One could argue that all
348 * of this belongs to the root node. One could also further argue that the
349 * sysctl interface that we have not might more properly be an ioctl
350 * interface, but at this stage of the game, I'm not inclined to rock that
351 * boat.
352 *
353 * I'm also not sure that the SIGIO support is done correctly or not, as
354 * I copied it from a driver that had SIGIO support that likely hasn't been
355 * tested since 3.4 or 2.2.8!
356 */
357
358 /* Deprecated way to adjust queue length */
359 static int sysctl_devctl_disable(SYSCTL_HANDLER_ARGS);
360 SYSCTL_PROC(_hw_bus, OID_AUTO, devctl_disable, CTLTYPE_INT | CTLFLAG_RWTUN |
361 CTLFLAG_MPSAFE, NULL, 0, sysctl_devctl_disable, "I",
362 "devctl disable -- deprecated");
363
364 #define DEVCTL_DEFAULT_QUEUE_LEN 1000
365 static int sysctl_devctl_queue(SYSCTL_HANDLER_ARGS);
366 static int devctl_queue_length = DEVCTL_DEFAULT_QUEUE_LEN;
367 SYSCTL_PROC(_hw_bus, OID_AUTO, devctl_queue, CTLTYPE_INT | CTLFLAG_RWTUN |
368 CTLFLAG_MPSAFE, NULL, 0, sysctl_devctl_queue, "I", "devctl queue length");
369
370 static d_open_t devopen;
371 static d_close_t devclose;
372 static d_read_t devread;
373 static d_ioctl_t devioctl;
374 static d_poll_t devpoll;
375 static d_kqfilter_t devkqfilter;
376
377 static struct cdevsw dev_cdevsw = {
378 .d_version = D_VERSION,
379 .d_open = devopen,
380 .d_close = devclose,
381 .d_read = devread,
382 .d_ioctl = devioctl,
383 .d_poll = devpoll,
384 .d_kqfilter = devkqfilter,
385 .d_name = "devctl",
386 };
387
388 struct dev_event_info
389 {
390 char *dei_data;
391 TAILQ_ENTRY(dev_event_info) dei_link;
392 };
393
394 TAILQ_HEAD(devq, dev_event_info);
395
396 static struct dev_softc
397 {
398 int inuse;
399 int nonblock;
400 int queued;
401 int async;
402 struct mtx mtx;
403 struct cv cv;
404 struct selinfo sel;
405 struct devq devq;
406 struct sigio *sigio;
407 } devsoftc;
408
409 static void filt_devctl_detach(struct knote *kn);
410 static int filt_devctl_read(struct knote *kn, long hint);
411
412 struct filterops devctl_rfiltops = {
413 .f_isfd = 1,
414 .f_detach = filt_devctl_detach,
415 .f_event = filt_devctl_read,
416 };
417
418 static struct cdev *devctl_dev;
419
420 static void
devinit(void)421 devinit(void)
422 {
423 devctl_dev = make_dev_credf(MAKEDEV_ETERNAL, &dev_cdevsw, 0, NULL,
424 UID_ROOT, GID_WHEEL, 0600, "devctl");
425 mtx_init(&devsoftc.mtx, "dev mtx", "devd", MTX_DEF);
426 cv_init(&devsoftc.cv, "dev cv");
427 TAILQ_INIT(&devsoftc.devq);
428 knlist_init_mtx(&devsoftc.sel.si_note, &devsoftc.mtx);
429 devctl2_init();
430 }
431
432 static int
devopen(struct cdev * dev,int oflags,int devtype,struct thread * td)433 devopen(struct cdev *dev, int oflags, int devtype, struct thread *td)
434 {
435
436 mtx_lock(&devsoftc.mtx);
437 if (devsoftc.inuse) {
438 mtx_unlock(&devsoftc.mtx);
439 return (EBUSY);
440 }
441 /* move to init */
442 devsoftc.inuse = 1;
443 mtx_unlock(&devsoftc.mtx);
444 return (0);
445 }
446
447 static int
devclose(struct cdev * dev,int fflag,int devtype,struct thread * td)448 devclose(struct cdev *dev, int fflag, int devtype, struct thread *td)
449 {
450
451 mtx_lock(&devsoftc.mtx);
452 devsoftc.inuse = 0;
453 devsoftc.nonblock = 0;
454 devsoftc.async = 0;
455 cv_broadcast(&devsoftc.cv);
456 funsetown(&devsoftc.sigio);
457 mtx_unlock(&devsoftc.mtx);
458 return (0);
459 }
460
461 /*
462 * The read channel for this device is used to report changes to
463 * userland in realtime. We are required to free the data as well as
464 * the n1 object because we allocate them separately. Also note that
465 * we return one record at a time. If you try to read this device a
466 * character at a time, you will lose the rest of the data. Listening
467 * programs are expected to cope.
468 */
469 static int
devread(struct cdev * dev,struct uio * uio,int ioflag)470 devread(struct cdev *dev, struct uio *uio, int ioflag)
471 {
472 struct dev_event_info *n1;
473 int rv;
474
475 mtx_lock(&devsoftc.mtx);
476 while (TAILQ_EMPTY(&devsoftc.devq)) {
477 if (devsoftc.nonblock) {
478 mtx_unlock(&devsoftc.mtx);
479 return (EAGAIN);
480 }
481 rv = cv_wait_sig(&devsoftc.cv, &devsoftc.mtx);
482 if (rv) {
483 /*
484 * Need to translate ERESTART to EINTR here? -- jake
485 */
486 mtx_unlock(&devsoftc.mtx);
487 return (rv);
488 }
489 }
490 n1 = TAILQ_FIRST(&devsoftc.devq);
491 TAILQ_REMOVE(&devsoftc.devq, n1, dei_link);
492 devsoftc.queued--;
493 mtx_unlock(&devsoftc.mtx);
494 rv = uiomove(n1->dei_data, strlen(n1->dei_data), uio);
495 free(n1->dei_data, M_BUS);
496 free(n1, M_BUS);
497 return (rv);
498 }
499
500 static int
devioctl(struct cdev * dev,u_long cmd,caddr_t data,int fflag,struct thread * td)501 devioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
502 {
503 switch (cmd) {
504
505 case FIONBIO:
506 if (*(int*)data)
507 devsoftc.nonblock = 1;
508 else
509 devsoftc.nonblock = 0;
510 return (0);
511 case FIOASYNC:
512 if (*(int*)data)
513 devsoftc.async = 1;
514 else
515 devsoftc.async = 0;
516 return (0);
517 case FIOSETOWN:
518 return fsetown(*(int *)data, &devsoftc.sigio);
519 case FIOGETOWN:
520 *(int *)data = fgetown(&devsoftc.sigio);
521 return (0);
522
523 /* (un)Support for other fcntl() calls. */
524 case FIOCLEX:
525 case FIONCLEX:
526 case FIONREAD:
527 default:
528 break;
529 }
530 return (ENOTTY);
531 }
532
533 static int
devpoll(struct cdev * dev,int events,struct thread * td)534 devpoll(struct cdev *dev, int events, struct thread *td)
535 {
536 int revents = 0;
537
538 mtx_lock(&devsoftc.mtx);
539 if (events & (POLLIN | POLLRDNORM)) {
540 if (!TAILQ_EMPTY(&devsoftc.devq))
541 revents = events & (POLLIN | POLLRDNORM);
542 else
543 selrecord(td, &devsoftc.sel);
544 }
545 mtx_unlock(&devsoftc.mtx);
546
547 return (revents);
548 }
549
550 static int
devkqfilter(struct cdev * dev,struct knote * kn)551 devkqfilter(struct cdev *dev, struct knote *kn)
552 {
553 int error;
554
555 if (kn->kn_filter == EVFILT_READ) {
556 kn->kn_fop = &devctl_rfiltops;
557 knlist_add(&devsoftc.sel.si_note, kn, 0);
558 error = 0;
559 } else
560 error = EINVAL;
561 return (error);
562 }
563
564 static void
filt_devctl_detach(struct knote * kn)565 filt_devctl_detach(struct knote *kn)
566 {
567
568 knlist_remove(&devsoftc.sel.si_note, kn, 0);
569 }
570
571 static int
filt_devctl_read(struct knote * kn,long hint)572 filt_devctl_read(struct knote *kn, long hint)
573 {
574 kn->kn_data = devsoftc.queued;
575 return (kn->kn_data != 0);
576 }
577
578 /**
579 * @brief Return whether the userland process is running
580 */
581 boolean_t
devctl_process_running(void)582 devctl_process_running(void)
583 {
584 return (devsoftc.inuse == 1);
585 }
586
587 /**
588 * @brief Queue data to be read from the devctl device
589 *
590 * Generic interface to queue data to the devctl device. It is
591 * assumed that @p data is properly formatted. It is further assumed
592 * that @p data is allocated using the M_BUS malloc type.
593 */
594 void
devctl_queue_data_f(char * data,int flags)595 devctl_queue_data_f(char *data, int flags)
596 {
597 struct dev_event_info *n1 = NULL, *n2 = NULL;
598
599 if (strlen(data) == 0)
600 goto out;
601 if (devctl_queue_length == 0)
602 goto out;
603 n1 = malloc(sizeof(*n1), M_BUS, flags);
604 if (n1 == NULL)
605 goto out;
606 n1->dei_data = data;
607 mtx_lock(&devsoftc.mtx);
608 if (devctl_queue_length == 0) {
609 mtx_unlock(&devsoftc.mtx);
610 free(n1->dei_data, M_BUS);
611 free(n1, M_BUS);
612 return;
613 }
614 /* Leave at least one spot in the queue... */
615 while (devsoftc.queued > devctl_queue_length - 1) {
616 n2 = TAILQ_FIRST(&devsoftc.devq);
617 TAILQ_REMOVE(&devsoftc.devq, n2, dei_link);
618 free(n2->dei_data, M_BUS);
619 free(n2, M_BUS);
620 devsoftc.queued--;
621 }
622 TAILQ_INSERT_TAIL(&devsoftc.devq, n1, dei_link);
623 devsoftc.queued++;
624 cv_broadcast(&devsoftc.cv);
625 KNOTE_LOCKED(&devsoftc.sel.si_note, 0);
626 mtx_unlock(&devsoftc.mtx);
627 selwakeup(&devsoftc.sel);
628 if (devsoftc.async && devsoftc.sigio != NULL)
629 pgsigio(&devsoftc.sigio, SIGIO, 0);
630 return;
631 out:
632 /*
633 * We have to free data on all error paths since the caller
634 * assumes it will be free'd when this item is dequeued.
635 */
636 free(data, M_BUS);
637 return;
638 }
639
640 void
devctl_queue_data(char * data)641 devctl_queue_data(char *data)
642 {
643
644 devctl_queue_data_f(data, M_NOWAIT);
645 }
646
647 /**
648 * @brief Send a 'notification' to userland, using standard ways
649 */
650 void
devctl_notify_f(const char * system,const char * subsystem,const char * type,const char * data,int flags)651 devctl_notify_f(const char *system, const char *subsystem, const char *type,
652 const char *data, int flags)
653 {
654 int len = 0;
655 char *msg;
656
657 if (system == NULL)
658 return; /* BOGUS! Must specify system. */
659 if (subsystem == NULL)
660 return; /* BOGUS! Must specify subsystem. */
661 if (type == NULL)
662 return; /* BOGUS! Must specify type. */
663 len += strlen(" system=") + strlen(system);
664 len += strlen(" subsystem=") + strlen(subsystem);
665 len += strlen(" type=") + strlen(type);
666 /* add in the data message plus newline. */
667 if (data != NULL)
668 len += strlen(data);
669 len += 3; /* '!', '\n', and NUL */
670 msg = malloc(len, M_BUS, flags);
671 if (msg == NULL)
672 return; /* Drop it on the floor */
673 if (data != NULL)
674 snprintf(msg, len, "!system=%s subsystem=%s type=%s %s\n",
675 system, subsystem, type, data);
676 else
677 snprintf(msg, len, "!system=%s subsystem=%s type=%s\n",
678 system, subsystem, type);
679 devctl_queue_data_f(msg, flags);
680 }
681
682 void
devctl_notify(const char * system,const char * subsystem,const char * type,const char * data)683 devctl_notify(const char *system, const char *subsystem, const char *type,
684 const char *data)
685 {
686
687 devctl_notify_f(system, subsystem, type, data, M_NOWAIT);
688 }
689
690 /*
691 * Common routine that tries to make sending messages as easy as possible.
692 * We allocate memory for the data, copy strings into that, but do not
693 * free it unless there's an error. The dequeue part of the driver should
694 * free the data. We don't send data when the device is disabled. We do
695 * send data, even when we have no listeners, because we wish to avoid
696 * races relating to startup and restart of listening applications.
697 *
698 * devaddq is designed to string together the type of event, with the
699 * object of that event, plus the plug and play info and location info
700 * for that event. This is likely most useful for devices, but less
701 * useful for other consumers of this interface. Those should use
702 * the devctl_queue_data() interface instead.
703 */
704 static void
devaddq(const char * type,const char * what,device_t dev)705 devaddq(const char *type, const char *what, device_t dev)
706 {
707 char *data = NULL;
708 char *loc = NULL;
709 char *pnp = NULL;
710 const char *parstr;
711
712 if (!devctl_queue_length)/* Rare race, but lost races safely discard */
713 return;
714 data = malloc(1024, M_BUS, M_NOWAIT);
715 if (data == NULL)
716 goto bad;
717
718 /* get the bus specific location of this device */
719 loc = malloc(1024, M_BUS, M_NOWAIT);
720 if (loc == NULL)
721 goto bad;
722 *loc = '\0';
723 bus_child_location_str(dev, loc, 1024);
724
725 /* Get the bus specific pnp info of this device */
726 pnp = malloc(1024, M_BUS, M_NOWAIT);
727 if (pnp == NULL)
728 goto bad;
729 *pnp = '\0';
730 bus_child_pnpinfo_str(dev, pnp, 1024);
731
732 /* Get the parent of this device, or / if high enough in the tree. */
733 if (device_get_parent(dev) == NULL)
734 parstr = "."; /* Or '/' ? */
735 else
736 parstr = device_get_nameunit(device_get_parent(dev));
737 /* String it all together. */
738 snprintf(data, 1024, "%s%s at %s %s on %s\n", type, what, loc, pnp,
739 parstr);
740 free(loc, M_BUS);
741 free(pnp, M_BUS);
742 devctl_queue_data(data);
743 return;
744 bad:
745 free(pnp, M_BUS);
746 free(loc, M_BUS);
747 free(data, M_BUS);
748 return;
749 }
750
751 /*
752 * A device was added to the tree. We are called just after it successfully
753 * attaches (that is, probe and attach success for this device). No call
754 * is made if a device is merely parented into the tree. See devnomatch
755 * if probe fails. If attach fails, no notification is sent (but maybe
756 * we should have a different message for this).
757 */
758 static void
devadded(device_t dev)759 devadded(device_t dev)
760 {
761 devaddq("+", device_get_nameunit(dev), dev);
762 }
763
764 /*
765 * A device was removed from the tree. We are called just before this
766 * happens.
767 */
768 static void
devremoved(device_t dev)769 devremoved(device_t dev)
770 {
771 devaddq("-", device_get_nameunit(dev), dev);
772 }
773
774 /*
775 * Called when there's no match for this device. This is only called
776 * the first time that no match happens, so we don't keep getting this
777 * message. Should that prove to be undesirable, we can change it.
778 * This is called when all drivers that can attach to a given bus
779 * decline to accept this device. Other errors may not be detected.
780 */
781 static void
devnomatch(device_t dev)782 devnomatch(device_t dev)
783 {
784 devaddq("?", "", dev);
785 }
786
787 static int
sysctl_devctl_disable(SYSCTL_HANDLER_ARGS)788 sysctl_devctl_disable(SYSCTL_HANDLER_ARGS)
789 {
790 struct dev_event_info *n1;
791 int dis, error;
792
793 dis = (devctl_queue_length == 0);
794 error = sysctl_handle_int(oidp, &dis, 0, req);
795 if (error || !req->newptr)
796 return (error);
797 if (mtx_initialized(&devsoftc.mtx))
798 mtx_lock(&devsoftc.mtx);
799 if (dis) {
800 while (!TAILQ_EMPTY(&devsoftc.devq)) {
801 n1 = TAILQ_FIRST(&devsoftc.devq);
802 TAILQ_REMOVE(&devsoftc.devq, n1, dei_link);
803 free(n1->dei_data, M_BUS);
804 free(n1, M_BUS);
805 }
806 devsoftc.queued = 0;
807 devctl_queue_length = 0;
808 } else {
809 devctl_queue_length = DEVCTL_DEFAULT_QUEUE_LEN;
810 }
811 if (mtx_initialized(&devsoftc.mtx))
812 mtx_unlock(&devsoftc.mtx);
813 return (0);
814 }
815
816 static int
sysctl_devctl_queue(SYSCTL_HANDLER_ARGS)817 sysctl_devctl_queue(SYSCTL_HANDLER_ARGS)
818 {
819 struct dev_event_info *n1;
820 int q, error;
821
822 q = devctl_queue_length;
823 error = sysctl_handle_int(oidp, &q, 0, req);
824 if (error || !req->newptr)
825 return (error);
826 if (q < 0)
827 return (EINVAL);
828 if (mtx_initialized(&devsoftc.mtx))
829 mtx_lock(&devsoftc.mtx);
830 devctl_queue_length = q;
831 while (devsoftc.queued > devctl_queue_length) {
832 n1 = TAILQ_FIRST(&devsoftc.devq);
833 TAILQ_REMOVE(&devsoftc.devq, n1, dei_link);
834 free(n1->dei_data, M_BUS);
835 free(n1, M_BUS);
836 devsoftc.queued--;
837 }
838 if (mtx_initialized(&devsoftc.mtx))
839 mtx_unlock(&devsoftc.mtx);
840 return (0);
841 }
842
843 /* End of /dev/devctl code */
844
845 static TAILQ_HEAD(,device) bus_data_devices;
846 static int bus_data_generation = 1;
847
848 static kobj_method_t null_methods[] = {
849 KOBJMETHOD_END
850 };
851
852 DEFINE_CLASS(null, null_methods, 0);
853
854 /*
855 * Bus pass implementation
856 */
857
858 static driver_list_t passes = TAILQ_HEAD_INITIALIZER(passes);
859 int bus_current_pass = BUS_PASS_ROOT;
860
861 /**
862 * @internal
863 * @brief Register the pass level of a new driver attachment
864 *
865 * Register a new driver attachment's pass level. If no driver
866 * attachment with the same pass level has been added, then @p new
867 * will be added to the global passes list.
868 *
869 * @param new the new driver attachment
870 */
871 static void
driver_register_pass(struct driverlink * new)872 driver_register_pass(struct driverlink *new)
873 {
874 struct driverlink *dl;
875
876 /* We only consider pass numbers during boot. */
877 if (bus_current_pass == BUS_PASS_DEFAULT)
878 return;
879
880 /*
881 * Walk the passes list. If we already know about this pass
882 * then there is nothing to do. If we don't, then insert this
883 * driver link into the list.
884 */
885 TAILQ_FOREACH(dl, &passes, passlink) {
886 if (dl->pass < new->pass)
887 continue;
888 if (dl->pass == new->pass)
889 return;
890 TAILQ_INSERT_BEFORE(dl, new, passlink);
891 return;
892 }
893 TAILQ_INSERT_TAIL(&passes, new, passlink);
894 }
895
896 /**
897 * @brief Raise the current bus pass
898 *
899 * Raise the current bus pass level to @p pass. Call the BUS_NEW_PASS()
900 * method on the root bus to kick off a new device tree scan for each
901 * new pass level that has at least one driver.
902 */
903 void
bus_set_pass(int pass)904 bus_set_pass(int pass)
905 {
906 struct driverlink *dl;
907
908 if (bus_current_pass > pass)
909 panic("Attempt to lower bus pass level");
910
911 TAILQ_FOREACH(dl, &passes, passlink) {
912 /* Skip pass values below the current pass level. */
913 if (dl->pass <= bus_current_pass)
914 continue;
915
916 /*
917 * Bail once we hit a driver with a pass level that is
918 * too high.
919 */
920 if (dl->pass > pass)
921 break;
922
923 /*
924 * Raise the pass level to the next level and rescan
925 * the tree.
926 */
927 bus_current_pass = dl->pass;
928 BUS_NEW_PASS(root_bus);
929 }
930
931 /*
932 * If there isn't a driver registered for the requested pass,
933 * then bus_current_pass might still be less than 'pass'. Set
934 * it to 'pass' in that case.
935 */
936 if (bus_current_pass < pass)
937 bus_current_pass = pass;
938 KASSERT(bus_current_pass == pass, ("Failed to update bus pass level"));
939 }
940
941 /*
942 * Devclass implementation
943 */
944
945 static devclass_list_t devclasses = TAILQ_HEAD_INITIALIZER(devclasses);
946
947 /**
948 * @internal
949 * @brief Find or create a device class
950 *
951 * If a device class with the name @p classname exists, return it,
952 * otherwise if @p create is non-zero create and return a new device
953 * class.
954 *
955 * If @p parentname is non-NULL, the parent of the devclass is set to
956 * the devclass of that name.
957 *
958 * @param classname the devclass name to find or create
959 * @param parentname the parent devclass name or @c NULL
960 * @param create non-zero to create a devclass
961 */
962 static devclass_t
devclass_find_internal(const char * classname,const char * parentname,int create)963 devclass_find_internal(const char *classname, const char *parentname,
964 int create)
965 {
966 devclass_t dc;
967
968 PDEBUG(("looking for %s", classname));
969 if (!classname)
970 return (NULL);
971
972 TAILQ_FOREACH(dc, &devclasses, link) {
973 if (!strcmp(dc->name, classname))
974 break;
975 }
976
977 if (create && !dc) {
978 PDEBUG(("creating %s", classname));
979 dc = malloc(sizeof(struct devclass) + strlen(classname) + 1,
980 M_BUS, M_NOWAIT | M_ZERO);
981 if (!dc)
982 return (NULL);
983 dc->parent = NULL;
984 dc->name = (char*) (dc + 1);
985 strcpy(dc->name, classname);
986 TAILQ_INIT(&dc->drivers);
987 TAILQ_INSERT_TAIL(&devclasses, dc, link);
988
989 bus_data_generation_update();
990 }
991
992 /*
993 * If a parent class is specified, then set that as our parent so
994 * that this devclass will support drivers for the parent class as
995 * well. If the parent class has the same name don't do this though
996 * as it creates a cycle that can trigger an infinite loop in
997 * device_probe_child() if a device exists for which there is no
998 * suitable driver.
999 */
1000 if (parentname && dc && !dc->parent &&
1001 strcmp(classname, parentname) != 0) {
1002 dc->parent = devclass_find_internal(parentname, NULL, TRUE);
1003 dc->parent->flags |= DC_HAS_CHILDREN;
1004 }
1005
1006 return (dc);
1007 }
1008
1009 /**
1010 * @brief Create a device class
1011 *
1012 * If a device class with the name @p classname exists, return it,
1013 * otherwise create and return a new device class.
1014 *
1015 * @param classname the devclass name to find or create
1016 */
1017 devclass_t
devclass_create(const char * classname)1018 devclass_create(const char *classname)
1019 {
1020 return (devclass_find_internal(classname, NULL, TRUE));
1021 }
1022
1023 /**
1024 * @brief Find a device class
1025 *
1026 * If a device class with the name @p classname exists, return it,
1027 * otherwise return @c NULL.
1028 *
1029 * @param classname the devclass name to find
1030 */
1031 devclass_t
devclass_find(const char * classname)1032 devclass_find(const char *classname)
1033 {
1034 return (devclass_find_internal(classname, NULL, FALSE));
1035 }
1036
1037 /**
1038 * @brief Register that a device driver has been added to a devclass
1039 *
1040 * Register that a device driver has been added to a devclass. This
1041 * is called by devclass_add_driver to accomplish the recursive
1042 * notification of all the children classes of dc, as well as dc.
1043 * Each layer will have BUS_DRIVER_ADDED() called for all instances of
1044 * the devclass.
1045 *
1046 * We do a full search here of the devclass list at each iteration
1047 * level to save storing children-lists in the devclass structure. If
1048 * we ever move beyond a few dozen devices doing this, we may need to
1049 * reevaluate...
1050 *
1051 * @param dc the devclass to edit
1052 * @param driver the driver that was just added
1053 */
1054 static void
devclass_driver_added(devclass_t dc,driver_t * driver)1055 devclass_driver_added(devclass_t dc, driver_t *driver)
1056 {
1057 devclass_t parent;
1058 int i;
1059
1060 /*
1061 * Call BUS_DRIVER_ADDED for any existing busses in this class.
1062 */
1063 for (i = 0; i < dc->maxunit; i++)
1064 if (dc->devices[i] && device_is_attached(dc->devices[i]))
1065 BUS_DRIVER_ADDED(dc->devices[i], driver);
1066
1067 /*
1068 * Walk through the children classes. Since we only keep a
1069 * single parent pointer around, we walk the entire list of
1070 * devclasses looking for children. We set the
1071 * DC_HAS_CHILDREN flag when a child devclass is created on
1072 * the parent, so we only walk the list for those devclasses
1073 * that have children.
1074 */
1075 if (!(dc->flags & DC_HAS_CHILDREN))
1076 return;
1077 parent = dc;
1078 TAILQ_FOREACH(dc, &devclasses, link) {
1079 if (dc->parent == parent)
1080 devclass_driver_added(dc, driver);
1081 }
1082 }
1083
1084 /**
1085 * @brief Add a device driver to a device class
1086 *
1087 * Add a device driver to a devclass. This is normally called
1088 * automatically by DRIVER_MODULE(). The BUS_DRIVER_ADDED() method of
1089 * all devices in the devclass will be called to allow them to attempt
1090 * to re-probe any unmatched children.
1091 *
1092 * @param dc the devclass to edit
1093 * @param driver the driver to register
1094 */
1095 int
devclass_add_driver(devclass_t dc,driver_t * driver,int pass,devclass_t * dcp)1096 devclass_add_driver(devclass_t dc, driver_t *driver, int pass, devclass_t *dcp)
1097 {
1098 driverlink_t dl;
1099 const char *parentname;
1100
1101 PDEBUG(("%s", DRIVERNAME(driver)));
1102
1103 /* Don't allow invalid pass values. */
1104 if (pass <= BUS_PASS_ROOT)
1105 return (EINVAL);
1106
1107 dl = malloc(sizeof *dl, M_BUS, M_NOWAIT|M_ZERO);
1108 if (!dl)
1109 return (ENOMEM);
1110
1111 /*
1112 * Compile the driver's methods. Also increase the reference count
1113 * so that the class doesn't get freed when the last instance
1114 * goes. This means we can safely use static methods and avoids a
1115 * double-free in devclass_delete_driver.
1116 */
1117 kobj_class_compile((kobj_class_t) driver);
1118
1119 /*
1120 * If the driver has any base classes, make the
1121 * devclass inherit from the devclass of the driver's
1122 * first base class. This will allow the system to
1123 * search for drivers in both devclasses for children
1124 * of a device using this driver.
1125 */
1126 if (driver->baseclasses)
1127 parentname = driver->baseclasses[0]->name;
1128 else
1129 parentname = NULL;
1130 *dcp = devclass_find_internal(driver->name, parentname, TRUE);
1131
1132 dl->driver = driver;
1133 TAILQ_INSERT_TAIL(&dc->drivers, dl, link);
1134 driver->refs++; /* XXX: kobj_mtx */
1135 dl->pass = pass;
1136 driver_register_pass(dl);
1137
1138 devclass_driver_added(dc, driver);
1139 bus_data_generation_update();
1140 return (0);
1141 }
1142
1143 /**
1144 * @brief Register that a device driver has been deleted from a devclass
1145 *
1146 * Register that a device driver has been removed from a devclass.
1147 * This is called by devclass_delete_driver to accomplish the
1148 * recursive notification of all the children classes of busclass, as
1149 * well as busclass. Each layer will attempt to detach the driver
1150 * from any devices that are children of the bus's devclass. The function
1151 * will return an error if a device fails to detach.
1152 *
1153 * We do a full search here of the devclass list at each iteration
1154 * level to save storing children-lists in the devclass structure. If
1155 * we ever move beyond a few dozen devices doing this, we may need to
1156 * reevaluate...
1157 *
1158 * @param busclass the devclass of the parent bus
1159 * @param dc the devclass of the driver being deleted
1160 * @param driver the driver being deleted
1161 */
1162 static int
devclass_driver_deleted(devclass_t busclass,devclass_t dc,driver_t * driver)1163 devclass_driver_deleted(devclass_t busclass, devclass_t dc, driver_t *driver)
1164 {
1165 devclass_t parent;
1166 device_t dev;
1167 int error, i;
1168
1169 /*
1170 * Disassociate from any devices. We iterate through all the
1171 * devices in the devclass of the driver and detach any which are
1172 * using the driver and which have a parent in the devclass which
1173 * we are deleting from.
1174 *
1175 * Note that since a driver can be in multiple devclasses, we
1176 * should not detach devices which are not children of devices in
1177 * the affected devclass.
1178 */
1179 for (i = 0; i < dc->maxunit; i++) {
1180 if (dc->devices[i]) {
1181 dev = dc->devices[i];
1182 if (dev->driver == driver && dev->parent &&
1183 dev->parent->devclass == busclass) {
1184 if ((error = device_detach(dev)) != 0)
1185 return (error);
1186 BUS_PROBE_NOMATCH(dev->parent, dev);
1187 devnomatch(dev);
1188 dev->flags |= DF_DONENOMATCH;
1189 }
1190 }
1191 }
1192
1193 /*
1194 * Walk through the children classes. Since we only keep a
1195 * single parent pointer around, we walk the entire list of
1196 * devclasses looking for children. We set the
1197 * DC_HAS_CHILDREN flag when a child devclass is created on
1198 * the parent, so we only walk the list for those devclasses
1199 * that have children.
1200 */
1201 if (!(busclass->flags & DC_HAS_CHILDREN))
1202 return (0);
1203 parent = busclass;
1204 TAILQ_FOREACH(busclass, &devclasses, link) {
1205 if (busclass->parent == parent) {
1206 error = devclass_driver_deleted(busclass, dc, driver);
1207 if (error)
1208 return (error);
1209 }
1210 }
1211 return (0);
1212 }
1213
1214 /**
1215 * @brief Delete a device driver from a device class
1216 *
1217 * Delete a device driver from a devclass. This is normally called
1218 * automatically by DRIVER_MODULE().
1219 *
1220 * If the driver is currently attached to any devices,
1221 * devclass_delete_driver() will first attempt to detach from each
1222 * device. If one of the detach calls fails, the driver will not be
1223 * deleted.
1224 *
1225 * @param dc the devclass to edit
1226 * @param driver the driver to unregister
1227 */
1228 int
devclass_delete_driver(devclass_t busclass,driver_t * driver)1229 devclass_delete_driver(devclass_t busclass, driver_t *driver)
1230 {
1231 devclass_t dc = devclass_find(driver->name);
1232 driverlink_t dl;
1233 int error;
1234
1235 PDEBUG(("%s from devclass %s", driver->name, DEVCLANAME(busclass)));
1236
1237 if (!dc)
1238 return (0);
1239
1240 /*
1241 * Find the link structure in the bus' list of drivers.
1242 */
1243 TAILQ_FOREACH(dl, &busclass->drivers, link) {
1244 if (dl->driver == driver)
1245 break;
1246 }
1247
1248 if (!dl) {
1249 PDEBUG(("%s not found in %s list", driver->name,
1250 busclass->name));
1251 return (ENOENT);
1252 }
1253
1254 error = devclass_driver_deleted(busclass, dc, driver);
1255 if (error != 0)
1256 return (error);
1257
1258 TAILQ_REMOVE(&busclass->drivers, dl, link);
1259 free(dl, M_BUS);
1260
1261 /* XXX: kobj_mtx */
1262 driver->refs--;
1263 if (driver->refs == 0)
1264 kobj_class_free((kobj_class_t) driver);
1265
1266 bus_data_generation_update();
1267 return (0);
1268 }
1269
1270 /**
1271 * @brief Quiesces a set of device drivers from a device class
1272 *
1273 * Quiesce a device driver from a devclass. This is normally called
1274 * automatically by DRIVER_MODULE().
1275 *
1276 * If the driver is currently attached to any devices,
1277 * devclass_quiesece_driver() will first attempt to quiesce each
1278 * device.
1279 *
1280 * @param dc the devclass to edit
1281 * @param driver the driver to unregister
1282 */
1283 static int
devclass_quiesce_driver(devclass_t busclass,driver_t * driver)1284 devclass_quiesce_driver(devclass_t busclass, driver_t *driver)
1285 {
1286 devclass_t dc = devclass_find(driver->name);
1287 driverlink_t dl;
1288 device_t dev;
1289 int i;
1290 int error;
1291
1292 PDEBUG(("%s from devclass %s", driver->name, DEVCLANAME(busclass)));
1293
1294 if (!dc)
1295 return (0);
1296
1297 /*
1298 * Find the link structure in the bus' list of drivers.
1299 */
1300 TAILQ_FOREACH(dl, &busclass->drivers, link) {
1301 if (dl->driver == driver)
1302 break;
1303 }
1304
1305 if (!dl) {
1306 PDEBUG(("%s not found in %s list", driver->name,
1307 busclass->name));
1308 return (ENOENT);
1309 }
1310
1311 /*
1312 * Quiesce all devices. We iterate through all the devices in
1313 * the devclass of the driver and quiesce any which are using
1314 * the driver and which have a parent in the devclass which we
1315 * are quiescing.
1316 *
1317 * Note that since a driver can be in multiple devclasses, we
1318 * should not quiesce devices which are not children of
1319 * devices in the affected devclass.
1320 */
1321 for (i = 0; i < dc->maxunit; i++) {
1322 if (dc->devices[i]) {
1323 dev = dc->devices[i];
1324 if (dev->driver == driver && dev->parent &&
1325 dev->parent->devclass == busclass) {
1326 if ((error = device_quiesce(dev)) != 0)
1327 return (error);
1328 }
1329 }
1330 }
1331
1332 return (0);
1333 }
1334
1335 /**
1336 * @internal
1337 */
1338 static driverlink_t
devclass_find_driver_internal(devclass_t dc,const char * classname)1339 devclass_find_driver_internal(devclass_t dc, const char *classname)
1340 {
1341 driverlink_t dl;
1342
1343 PDEBUG(("%s in devclass %s", classname, DEVCLANAME(dc)));
1344
1345 TAILQ_FOREACH(dl, &dc->drivers, link) {
1346 if (!strcmp(dl->driver->name, classname))
1347 return (dl);
1348 }
1349
1350 PDEBUG(("not found"));
1351 return (NULL);
1352 }
1353
1354 /**
1355 * @brief Return the name of the devclass
1356 */
1357 const char *
devclass_get_name(devclass_t dc)1358 devclass_get_name(devclass_t dc)
1359 {
1360 return (dc->name);
1361 }
1362
1363 /**
1364 * @brief Find a device given a unit number
1365 *
1366 * @param dc the devclass to search
1367 * @param unit the unit number to search for
1368 *
1369 * @returns the device with the given unit number or @c
1370 * NULL if there is no such device
1371 */
1372 device_t
devclass_get_device(devclass_t dc,int unit)1373 devclass_get_device(devclass_t dc, int unit)
1374 {
1375 if (dc == NULL || unit < 0 || unit >= dc->maxunit)
1376 return (NULL);
1377 return (dc->devices[unit]);
1378 }
1379
1380 /**
1381 * @brief Find the softc field of a device given a unit number
1382 *
1383 * @param dc the devclass to search
1384 * @param unit the unit number to search for
1385 *
1386 * @returns the softc field of the device with the given
1387 * unit number or @c NULL if there is no such
1388 * device
1389 */
1390 void *
devclass_get_softc(devclass_t dc,int unit)1391 devclass_get_softc(devclass_t dc, int unit)
1392 {
1393 device_t dev;
1394
1395 dev = devclass_get_device(dc, unit);
1396 if (!dev)
1397 return (NULL);
1398
1399 return (device_get_softc(dev));
1400 }
1401
1402 /**
1403 * @brief Get a list of devices in the devclass
1404 *
1405 * An array containing a list of all the devices in the given devclass
1406 * is allocated and returned in @p *devlistp. The number of devices
1407 * in the array is returned in @p *devcountp. The caller should free
1408 * the array using @c free(p, M_TEMP), even if @p *devcountp is 0.
1409 *
1410 * @param dc the devclass to examine
1411 * @param devlistp points at location for array pointer return
1412 * value
1413 * @param devcountp points at location for array size return value
1414 *
1415 * @retval 0 success
1416 * @retval ENOMEM the array allocation failed
1417 */
1418 int
devclass_get_devices(devclass_t dc,device_t ** devlistp,int * devcountp)1419 devclass_get_devices(devclass_t dc, device_t **devlistp, int *devcountp)
1420 {
1421 int count, i;
1422 device_t *list;
1423
1424 count = devclass_get_count(dc);
1425 list = malloc(count * sizeof(device_t), M_TEMP, M_NOWAIT|M_ZERO);
1426 if (!list)
1427 return (ENOMEM);
1428
1429 count = 0;
1430 for (i = 0; i < dc->maxunit; i++) {
1431 if (dc->devices[i]) {
1432 list[count] = dc->devices[i];
1433 count++;
1434 }
1435 }
1436
1437 *devlistp = list;
1438 *devcountp = count;
1439
1440 return (0);
1441 }
1442
1443 /**
1444 * @brief Get a list of drivers in the devclass
1445 *
1446 * An array containing a list of pointers to all the drivers in the
1447 * given devclass is allocated and returned in @p *listp. The number
1448 * of drivers in the array is returned in @p *countp. The caller should
1449 * free the array using @c free(p, M_TEMP).
1450 *
1451 * @param dc the devclass to examine
1452 * @param listp gives location for array pointer return value
1453 * @param countp gives location for number of array elements
1454 * return value
1455 *
1456 * @retval 0 success
1457 * @retval ENOMEM the array allocation failed
1458 */
1459 int
devclass_get_drivers(devclass_t dc,driver_t *** listp,int * countp)1460 devclass_get_drivers(devclass_t dc, driver_t ***listp, int *countp)
1461 {
1462 driverlink_t dl;
1463 driver_t **list;
1464 int count;
1465
1466 count = 0;
1467 TAILQ_FOREACH(dl, &dc->drivers, link)
1468 count++;
1469 list = malloc(count * sizeof(driver_t *), M_TEMP, M_NOWAIT);
1470 if (list == NULL)
1471 return (ENOMEM);
1472
1473 count = 0;
1474 TAILQ_FOREACH(dl, &dc->drivers, link) {
1475 list[count] = dl->driver;
1476 count++;
1477 }
1478 *listp = list;
1479 *countp = count;
1480
1481 return (0);
1482 }
1483
1484 /**
1485 * @brief Get the number of devices in a devclass
1486 *
1487 * @param dc the devclass to examine
1488 */
1489 int
devclass_get_count(devclass_t dc)1490 devclass_get_count(devclass_t dc)
1491 {
1492 int count, i;
1493
1494 count = 0;
1495 for (i = 0; i < dc->maxunit; i++)
1496 if (dc->devices[i])
1497 count++;
1498 return (count);
1499 }
1500
1501 /**
1502 * @brief Get the maximum unit number used in a devclass
1503 *
1504 * Note that this is one greater than the highest currently-allocated
1505 * unit. If a null devclass_t is passed in, -1 is returned to indicate
1506 * that not even the devclass has been allocated yet.
1507 *
1508 * @param dc the devclass to examine
1509 */
1510 int
devclass_get_maxunit(devclass_t dc)1511 devclass_get_maxunit(devclass_t dc)
1512 {
1513 if (dc == NULL)
1514 return (-1);
1515 return (dc->maxunit);
1516 }
1517
1518 /**
1519 * @brief Find a free unit number in a devclass
1520 *
1521 * This function searches for the first unused unit number greater
1522 * that or equal to @p unit.
1523 *
1524 * @param dc the devclass to examine
1525 * @param unit the first unit number to check
1526 */
1527 int
devclass_find_free_unit(devclass_t dc,int unit)1528 devclass_find_free_unit(devclass_t dc, int unit)
1529 {
1530 if (dc == NULL)
1531 return (unit);
1532 while (unit < dc->maxunit && dc->devices[unit] != NULL)
1533 unit++;
1534 return (unit);
1535 }
1536
1537 /**
1538 * @brief Set the parent of a devclass
1539 *
1540 * The parent class is normally initialised automatically by
1541 * DRIVER_MODULE().
1542 *
1543 * @param dc the devclass to edit
1544 * @param pdc the new parent devclass
1545 */
1546 void
devclass_set_parent(devclass_t dc,devclass_t pdc)1547 devclass_set_parent(devclass_t dc, devclass_t pdc)
1548 {
1549 dc->parent = pdc;
1550 }
1551
1552 /**
1553 * @brief Get the parent of a devclass
1554 *
1555 * @param dc the devclass to examine
1556 */
1557 devclass_t
devclass_get_parent(devclass_t dc)1558 devclass_get_parent(devclass_t dc)
1559 {
1560 return (dc->parent);
1561 }
1562
1563 struct sysctl_ctx_list *
devclass_get_sysctl_ctx(devclass_t dc)1564 devclass_get_sysctl_ctx(devclass_t dc)
1565 {
1566 return (&dc->sysctl_ctx);
1567 }
1568
1569 struct sysctl_oid *
devclass_get_sysctl_tree(devclass_t dc)1570 devclass_get_sysctl_tree(devclass_t dc)
1571 {
1572 return (dc->sysctl_tree);
1573 }
1574
1575 /**
1576 * @internal
1577 * @brief Allocate a unit number
1578 *
1579 * On entry, @p *unitp is the desired unit number (or @c -1 if any
1580 * will do). The allocated unit number is returned in @p *unitp.
1581
1582 * @param dc the devclass to allocate from
1583 * @param unitp points at the location for the allocated unit
1584 * number
1585 *
1586 * @retval 0 success
1587 * @retval EEXIST the requested unit number is already allocated
1588 * @retval ENOMEM memory allocation failure
1589 */
1590 static int
devclass_alloc_unit(devclass_t dc,device_t dev,int * unitp)1591 devclass_alloc_unit(devclass_t dc, device_t dev, int *unitp)
1592 {
1593 const char *s;
1594 int unit = *unitp;
1595
1596 PDEBUG(("unit %d in devclass %s", unit, DEVCLANAME(dc)));
1597
1598 /* Ask the parent bus if it wants to wire this device. */
1599 if (unit == -1)
1600 BUS_HINT_DEVICE_UNIT(device_get_parent(dev), dev, dc->name,
1601 &unit);
1602
1603 /* If we were given a wired unit number, check for existing device */
1604 /* XXX imp XXX */
1605 if (unit != -1) {
1606 if (unit >= 0 && unit < dc->maxunit &&
1607 dc->devices[unit] != NULL) {
1608 if (bootverbose)
1609 printf("%s: %s%d already exists; skipping it\n",
1610 dc->name, dc->name, *unitp);
1611 return (EEXIST);
1612 }
1613 } else {
1614 /* Unwired device, find the next available slot for it */
1615 unit = 0;
1616 for (unit = 0;; unit++) {
1617 /* If there is an "at" hint for a unit then skip it. */
1618 if (resource_string_value(dc->name, unit, "at", &s) ==
1619 0)
1620 continue;
1621
1622 /* If this device slot is already in use, skip it. */
1623 if (unit < dc->maxunit && dc->devices[unit] != NULL)
1624 continue;
1625
1626 break;
1627 }
1628 }
1629
1630 /*
1631 * We've selected a unit beyond the length of the table, so let's
1632 * extend the table to make room for all units up to and including
1633 * this one.
1634 */
1635 if (unit >= dc->maxunit) {
1636 device_t *newlist, *oldlist;
1637 int newsize;
1638
1639 oldlist = dc->devices;
1640 newsize = roundup((unit + 1), MINALLOCSIZE / sizeof(device_t));
1641 newlist = malloc(sizeof(device_t) * newsize, M_BUS, M_NOWAIT);
1642 if (!newlist)
1643 return (ENOMEM);
1644 if (oldlist != NULL)
1645 bcopy(oldlist, newlist, sizeof(device_t) * dc->maxunit);
1646 bzero(newlist + dc->maxunit,
1647 sizeof(device_t) * (newsize - dc->maxunit));
1648 dc->devices = newlist;
1649 dc->maxunit = newsize;
1650 if (oldlist != NULL)
1651 free(oldlist, M_BUS);
1652 }
1653 PDEBUG(("now: unit %d in devclass %s", unit, DEVCLANAME(dc)));
1654
1655 *unitp = unit;
1656 return (0);
1657 }
1658
1659 /**
1660 * @internal
1661 * @brief Add a device to a devclass
1662 *
1663 * A unit number is allocated for the device (using the device's
1664 * preferred unit number if any) and the device is registered in the
1665 * devclass. This allows the device to be looked up by its unit
1666 * number, e.g. by decoding a dev_t minor number.
1667 *
1668 * @param dc the devclass to add to
1669 * @param dev the device to add
1670 *
1671 * @retval 0 success
1672 * @retval EEXIST the requested unit number is already allocated
1673 * @retval ENOMEM memory allocation failure
1674 */
1675 static int
devclass_add_device(devclass_t dc,device_t dev)1676 devclass_add_device(devclass_t dc, device_t dev)
1677 {
1678 int buflen, error;
1679
1680 PDEBUG(("%s in devclass %s", DEVICENAME(dev), DEVCLANAME(dc)));
1681
1682 buflen = snprintf(NULL, 0, "%s%d$", dc->name, INT_MAX);
1683 if (buflen < 0)
1684 return (ENOMEM);
1685 dev->nameunit = malloc(buflen, M_BUS, M_NOWAIT|M_ZERO);
1686 if (!dev->nameunit)
1687 return (ENOMEM);
1688
1689 if ((error = devclass_alloc_unit(dc, dev, &dev->unit)) != 0) {
1690 free(dev->nameunit, M_BUS);
1691 dev->nameunit = NULL;
1692 return (error);
1693 }
1694 dc->devices[dev->unit] = dev;
1695 dev->devclass = dc;
1696 snprintf(dev->nameunit, buflen, "%s%d", dc->name, dev->unit);
1697
1698 return (0);
1699 }
1700
1701 /**
1702 * @internal
1703 * @brief Delete a device from a devclass
1704 *
1705 * The device is removed from the devclass's device list and its unit
1706 * number is freed.
1707
1708 * @param dc the devclass to delete from
1709 * @param dev the device to delete
1710 *
1711 * @retval 0 success
1712 */
1713 static int
devclass_delete_device(devclass_t dc,device_t dev)1714 devclass_delete_device(devclass_t dc, device_t dev)
1715 {
1716 if (!dc || !dev)
1717 return (0);
1718
1719 PDEBUG(("%s in devclass %s", DEVICENAME(dev), DEVCLANAME(dc)));
1720
1721 if (dev->devclass != dc || dc->devices[dev->unit] != dev)
1722 panic("devclass_delete_device: inconsistent device class");
1723 dc->devices[dev->unit] = NULL;
1724 if (dev->flags & DF_WILDCARD)
1725 dev->unit = -1;
1726 dev->devclass = NULL;
1727 free(dev->nameunit, M_BUS);
1728 dev->nameunit = NULL;
1729
1730 return (0);
1731 }
1732
1733 /**
1734 * @internal
1735 * @brief Make a new device and add it as a child of @p parent
1736 *
1737 * @param parent the parent of the new device
1738 * @param name the devclass name of the new device or @c NULL
1739 * to leave the devclass unspecified
1740 * @parem unit the unit number of the new device of @c -1 to
1741 * leave the unit number unspecified
1742 *
1743 * @returns the new device
1744 */
1745 static device_t
make_device(device_t parent,const char * name,int unit)1746 make_device(device_t parent, const char *name, int unit)
1747 {
1748 device_t dev;
1749 devclass_t dc;
1750
1751 PDEBUG(("%s at %s as unit %d", name, DEVICENAME(parent), unit));
1752
1753 if (name) {
1754 dc = devclass_find_internal(name, NULL, TRUE);
1755 if (!dc) {
1756 printf("make_device: can't find device class %s\n",
1757 name);
1758 return (NULL);
1759 }
1760 } else {
1761 dc = NULL;
1762 }
1763
1764 dev = malloc(sizeof(struct device), M_BUS, M_NOWAIT|M_ZERO);
1765 if (!dev)
1766 return (NULL);
1767
1768 dev->parent = parent;
1769 TAILQ_INIT(&dev->children);
1770 kobj_init((kobj_t) dev, &null_class);
1771 dev->driver = NULL;
1772 dev->devclass = NULL;
1773 dev->unit = unit;
1774 dev->nameunit = NULL;
1775 dev->desc = NULL;
1776 dev->busy = 0;
1777 dev->devflags = 0;
1778 dev->flags = DF_ENABLED;
1779 dev->order = 0;
1780 if (unit == -1)
1781 dev->flags |= DF_WILDCARD;
1782 if (name) {
1783 dev->flags |= DF_FIXEDCLASS;
1784 if (devclass_add_device(dc, dev)) {
1785 kobj_delete((kobj_t) dev, M_BUS);
1786 return (NULL);
1787 }
1788 }
1789 dev->ivars = NULL;
1790 dev->softc = NULL;
1791
1792 dev->state = DS_NOTPRESENT;
1793
1794 TAILQ_INSERT_TAIL(&bus_data_devices, dev, devlink);
1795 bus_data_generation_update();
1796
1797 return (dev);
1798 }
1799
1800 /**
1801 * @internal
1802 * @brief Print a description of a device.
1803 */
1804 static int
device_print_child(device_t dev,device_t child)1805 device_print_child(device_t dev, device_t child)
1806 {
1807 int retval = 0;
1808
1809 if (device_is_alive(child))
1810 retval += BUS_PRINT_CHILD(dev, child);
1811 else
1812 retval += device_printf(child, " not found\n");
1813
1814 return (retval);
1815 }
1816
1817 /**
1818 * @brief Create a new device
1819 *
1820 * This creates a new device and adds it as a child of an existing
1821 * parent device. The new device will be added after the last existing
1822 * child with order zero.
1823 *
1824 * @param dev the device which will be the parent of the
1825 * new child device
1826 * @param name devclass name for new device or @c NULL if not
1827 * specified
1828 * @param unit unit number for new device or @c -1 if not
1829 * specified
1830 *
1831 * @returns the new device
1832 */
1833 device_t
device_add_child(device_t dev,const char * name,int unit)1834 device_add_child(device_t dev, const char *name, int unit)
1835 {
1836 return (device_add_child_ordered(dev, 0, name, unit));
1837 }
1838
1839 /**
1840 * @brief Create a new device
1841 *
1842 * This creates a new device and adds it as a child of an existing
1843 * parent device. The new device will be added after the last existing
1844 * child with the same order.
1845 *
1846 * @param dev the device which will be the parent of the
1847 * new child device
1848 * @param order a value which is used to partially sort the
1849 * children of @p dev - devices created using
1850 * lower values of @p order appear first in @p
1851 * dev's list of children
1852 * @param name devclass name for new device or @c NULL if not
1853 * specified
1854 * @param unit unit number for new device or @c -1 if not
1855 * specified
1856 *
1857 * @returns the new device
1858 */
1859 device_t
device_add_child_ordered(device_t dev,u_int order,const char * name,int unit)1860 device_add_child_ordered(device_t dev, u_int order, const char *name, int unit)
1861 {
1862 device_t child;
1863 device_t place;
1864
1865 PDEBUG(("%s at %s with order %u as unit %d",
1866 name, DEVICENAME(dev), order, unit));
1867 KASSERT(name != NULL || unit == -1,
1868 ("child device with wildcard name and specific unit number"));
1869
1870 child = make_device(dev, name, unit);
1871 if (child == NULL)
1872 return (child);
1873 child->order = order;
1874
1875 TAILQ_FOREACH(place, &dev->children, link) {
1876 if (place->order > order)
1877 break;
1878 }
1879
1880 if (place) {
1881 /*
1882 * The device 'place' is the first device whose order is
1883 * greater than the new child.
1884 */
1885 TAILQ_INSERT_BEFORE(place, child, link);
1886 } else {
1887 /*
1888 * The new child's order is greater or equal to the order of
1889 * any existing device. Add the child to the tail of the list.
1890 */
1891 TAILQ_INSERT_TAIL(&dev->children, child, link);
1892 }
1893
1894 bus_data_generation_update();
1895 return (child);
1896 }
1897
1898 /**
1899 * @brief Delete a device
1900 *
1901 * This function deletes a device along with all of its children. If
1902 * the device currently has a driver attached to it, the device is
1903 * detached first using device_detach().
1904 *
1905 * @param dev the parent device
1906 * @param child the device to delete
1907 *
1908 * @retval 0 success
1909 * @retval non-zero a unit error code describing the error
1910 */
1911 int
device_delete_child(device_t dev,device_t child)1912 device_delete_child(device_t dev, device_t child)
1913 {
1914 int error;
1915 device_t grandchild;
1916
1917 PDEBUG(("%s from %s", DEVICENAME(child), DEVICENAME(dev)));
1918
1919 /* remove children first */
1920 while ((grandchild = TAILQ_FIRST(&child->children)) != NULL) {
1921 error = device_delete_child(child, grandchild);
1922 if (error)
1923 return (error);
1924 }
1925
1926 if ((error = device_detach(child)) != 0)
1927 return (error);
1928 if (child->devclass)
1929 devclass_delete_device(child->devclass, child);
1930 if (child->parent)
1931 BUS_CHILD_DELETED(dev, child);
1932 TAILQ_REMOVE(&dev->children, child, link);
1933 TAILQ_REMOVE(&bus_data_devices, child, devlink);
1934 kobj_delete((kobj_t) child, M_BUS);
1935
1936 bus_data_generation_update();
1937 return (0);
1938 }
1939
1940 /**
1941 * @brief Delete all children devices of the given device, if any.
1942 *
1943 * This function deletes all children devices of the given device, if
1944 * any, using the device_delete_child() function for each device it
1945 * finds. If a child device cannot be deleted, this function will
1946 * return an error code.
1947 *
1948 * @param dev the parent device
1949 *
1950 * @retval 0 success
1951 * @retval non-zero a device would not detach
1952 */
1953 int
device_delete_children(device_t dev)1954 device_delete_children(device_t dev)
1955 {
1956 device_t child;
1957 int error;
1958
1959 PDEBUG(("Deleting all children of %s", DEVICENAME(dev)));
1960
1961 error = 0;
1962
1963 while ((child = TAILQ_FIRST(&dev->children)) != NULL) {
1964 error = device_delete_child(dev, child);
1965 if (error) {
1966 PDEBUG(("Failed deleting %s", DEVICENAME(child)));
1967 break;
1968 }
1969 }
1970 return (error);
1971 }
1972
1973 /**
1974 * @brief Find a device given a unit number
1975 *
1976 * This is similar to devclass_get_devices() but only searches for
1977 * devices which have @p dev as a parent.
1978 *
1979 * @param dev the parent device to search
1980 * @param unit the unit number to search for. If the unit is -1,
1981 * return the first child of @p dev which has name
1982 * @p classname (that is, the one with the lowest unit.)
1983 *
1984 * @returns the device with the given unit number or @c
1985 * NULL if there is no such device
1986 */
1987 device_t
device_find_child(device_t dev,const char * classname,int unit)1988 device_find_child(device_t dev, const char *classname, int unit)
1989 {
1990 devclass_t dc;
1991 device_t child;
1992
1993 dc = devclass_find(classname);
1994 if (!dc)
1995 return (NULL);
1996
1997 if (unit != -1) {
1998 child = devclass_get_device(dc, unit);
1999 if (child && child->parent == dev)
2000 return (child);
2001 } else {
2002 for (unit = 0; unit < devclass_get_maxunit(dc); unit++) {
2003 child = devclass_get_device(dc, unit);
2004 if (child && child->parent == dev)
2005 return (child);
2006 }
2007 }
2008 return (NULL);
2009 }
2010
2011 /**
2012 * @internal
2013 */
2014 static driverlink_t
first_matching_driver(devclass_t dc,device_t dev)2015 first_matching_driver(devclass_t dc, device_t dev)
2016 {
2017 if (dev->devclass)
2018 return (devclass_find_driver_internal(dc, dev->devclass->name));
2019 return (TAILQ_FIRST(&dc->drivers));
2020 }
2021
2022 /**
2023 * @internal
2024 */
2025 static driverlink_t
next_matching_driver(devclass_t dc,device_t dev,driverlink_t last)2026 next_matching_driver(devclass_t dc, device_t dev, driverlink_t last)
2027 {
2028 if (dev->devclass) {
2029 driverlink_t dl;
2030 for (dl = TAILQ_NEXT(last, link); dl; dl = TAILQ_NEXT(dl, link))
2031 if (!strcmp(dev->devclass->name, dl->driver->name))
2032 return (dl);
2033 return (NULL);
2034 }
2035 return (TAILQ_NEXT(last, link));
2036 }
2037
2038 /**
2039 * @internal
2040 */
2041 int
device_probe_child(device_t dev,device_t child)2042 device_probe_child(device_t dev, device_t child)
2043 {
2044 devclass_t dc;
2045 driverlink_t best = NULL;
2046 driverlink_t dl;
2047 int result, pri = 0;
2048 int hasclass = (child->devclass != NULL);
2049
2050 GIANT_REQUIRED;
2051
2052 dc = dev->devclass;
2053 if (!dc)
2054 panic("device_probe_child: parent device has no devclass");
2055
2056 /*
2057 * If the state is already probed, then return. However, don't
2058 * return if we can rebid this object.
2059 */
2060 if (child->state == DS_ALIVE && (child->flags & DF_REBID) == 0)
2061 return (0);
2062
2063 for (; dc; dc = dc->parent) {
2064 for (dl = first_matching_driver(dc, child);
2065 dl;
2066 dl = next_matching_driver(dc, child, dl)) {
2067 /* If this driver's pass is too high, then ignore it. */
2068 if (dl->pass > bus_current_pass)
2069 continue;
2070
2071 PDEBUG(("Trying %s", DRIVERNAME(dl->driver)));
2072 result = device_set_driver(child, dl->driver);
2073 if (result == ENOMEM)
2074 return (result);
2075 else if (result != 0)
2076 continue;
2077 if (!hasclass) {
2078 if (device_set_devclass(child,
2079 dl->driver->name) != 0) {
2080 char const * devname =
2081 device_get_name(child);
2082 if (devname == NULL)
2083 devname = "(unknown)";
2084 printf("driver bug: Unable to set "
2085 "devclass (class: %s "
2086 "devname: %s)\n",
2087 dl->driver->name,
2088 devname);
2089 (void)device_set_driver(child, NULL);
2090 continue;
2091 }
2092 }
2093
2094 /* Fetch any flags for the device before probing. */
2095 resource_int_value(dl->driver->name, child->unit,
2096 "flags", &child->devflags);
2097
2098 result = DEVICE_PROBE(child);
2099
2100 /* Reset flags and devclass before the next probe. */
2101 child->devflags = 0;
2102 if (!hasclass)
2103 (void)device_set_devclass(child, NULL);
2104
2105 /*
2106 * If the driver returns SUCCESS, there can be
2107 * no higher match for this device.
2108 */
2109 if (result == 0) {
2110 best = dl;
2111 pri = 0;
2112 break;
2113 }
2114
2115 /*
2116 * Probes that return BUS_PROBE_NOWILDCARD or lower
2117 * only match on devices whose driver was explicitly
2118 * specified.
2119 */
2120 if (result <= BUS_PROBE_NOWILDCARD &&
2121 !(child->flags & DF_FIXEDCLASS)) {
2122 result = ENXIO;
2123 }
2124
2125 /*
2126 * The driver returned an error so it
2127 * certainly doesn't match.
2128 */
2129 if (result > 0) {
2130 (void)device_set_driver(child, NULL);
2131 continue;
2132 }
2133
2134 /*
2135 * A priority lower than SUCCESS, remember the
2136 * best matching driver. Initialise the value
2137 * of pri for the first match.
2138 */
2139 if (best == NULL || result > pri) {
2140 best = dl;
2141 pri = result;
2142 continue;
2143 }
2144 }
2145 /*
2146 * If we have an unambiguous match in this devclass,
2147 * don't look in the parent.
2148 */
2149 if (best && pri == 0)
2150 break;
2151 }
2152
2153 /*
2154 * If we found a driver, change state and initialise the devclass.
2155 */
2156 /* XXX What happens if we rebid and got no best? */
2157 if (best) {
2158 /*
2159 * If this device was attached, and we were asked to
2160 * rescan, and it is a different driver, then we have
2161 * to detach the old driver and reattach this new one.
2162 * Note, we don't have to check for DF_REBID here
2163 * because if the state is > DS_ALIVE, we know it must
2164 * be.
2165 *
2166 * This assumes that all DF_REBID drivers can have
2167 * their probe routine called at any time and that
2168 * they are idempotent as well as completely benign in
2169 * normal operations.
2170 *
2171 * We also have to make sure that the detach
2172 * succeeded, otherwise we fail the operation (or
2173 * maybe it should just fail silently? I'm torn).
2174 */
2175 if (child->state > DS_ALIVE && best->driver != child->driver)
2176 if ((result = device_detach(dev)) != 0)
2177 return (result);
2178
2179 /* Set the winning driver, devclass, and flags. */
2180 if (!child->devclass) {
2181 result = device_set_devclass(child, best->driver->name);
2182 if (result != 0)
2183 return (result);
2184 }
2185 result = device_set_driver(child, best->driver);
2186 if (result != 0)
2187 return (result);
2188 resource_int_value(best->driver->name, child->unit,
2189 "flags", &child->devflags);
2190
2191 if (pri < 0) {
2192 /*
2193 * A bit bogus. Call the probe method again to make
2194 * sure that we have the right description.
2195 */
2196 DEVICE_PROBE(child);
2197 #if 0
2198 child->flags |= DF_REBID;
2199 #endif
2200 } else
2201 child->flags &= ~DF_REBID;
2202 child->state = DS_ALIVE;
2203
2204 bus_data_generation_update();
2205 return (0);
2206 }
2207
2208 return (ENXIO);
2209 }
2210
2211 /**
2212 * @brief Return the parent of a device
2213 */
2214 device_t
device_get_parent(device_t dev)2215 device_get_parent(device_t dev)
2216 {
2217 return (dev->parent);
2218 }
2219
2220 /**
2221 * @brief Get a list of children of a device
2222 *
2223 * An array containing a list of all the children of the given device
2224 * is allocated and returned in @p *devlistp. The number of devices
2225 * in the array is returned in @p *devcountp. The caller should free
2226 * the array using @c free(p, M_TEMP).
2227 *
2228 * @param dev the device to examine
2229 * @param devlistp points at location for array pointer return
2230 * value
2231 * @param devcountp points at location for array size return value
2232 *
2233 * @retval 0 success
2234 * @retval ENOMEM the array allocation failed
2235 */
2236 int
device_get_children(device_t dev,device_t ** devlistp,int * devcountp)2237 device_get_children(device_t dev, device_t **devlistp, int *devcountp)
2238 {
2239 int count;
2240 device_t child;
2241 device_t *list;
2242
2243 count = 0;
2244 TAILQ_FOREACH(child, &dev->children, link) {
2245 count++;
2246 }
2247 if (count == 0) {
2248 *devlistp = NULL;
2249 *devcountp = 0;
2250 return (0);
2251 }
2252
2253 list = malloc(count * sizeof(device_t), M_TEMP, M_NOWAIT|M_ZERO);
2254 if (!list)
2255 return (ENOMEM);
2256
2257 count = 0;
2258 TAILQ_FOREACH(child, &dev->children, link) {
2259 list[count] = child;
2260 count++;
2261 }
2262
2263 *devlistp = list;
2264 *devcountp = count;
2265
2266 return (0);
2267 }
2268
2269 /**
2270 * @brief Return the current driver for the device or @c NULL if there
2271 * is no driver currently attached
2272 */
2273 driver_t *
device_get_driver(device_t dev)2274 device_get_driver(device_t dev)
2275 {
2276 return (dev->driver);
2277 }
2278
2279 /**
2280 * @brief Return the current devclass for the device or @c NULL if
2281 * there is none.
2282 */
2283 devclass_t
device_get_devclass(device_t dev)2284 device_get_devclass(device_t dev)
2285 {
2286 return (dev->devclass);
2287 }
2288
2289 /**
2290 * @brief Return the name of the device's devclass or @c NULL if there
2291 * is none.
2292 */
2293 const char *
device_get_name(device_t dev)2294 device_get_name(device_t dev)
2295 {
2296 if (dev != NULL && dev->devclass)
2297 return (devclass_get_name(dev->devclass));
2298 return (NULL);
2299 }
2300
2301 /**
2302 * @brief Return a string containing the device's devclass name
2303 * followed by an ascii representation of the device's unit number
2304 * (e.g. @c "foo2").
2305 */
2306 const char *
device_get_nameunit(device_t dev)2307 device_get_nameunit(device_t dev)
2308 {
2309 return (dev->nameunit);
2310 }
2311
2312 /**
2313 * @brief Return the device's unit number.
2314 */
2315 int
device_get_unit(device_t dev)2316 device_get_unit(device_t dev)
2317 {
2318 return (dev->unit);
2319 }
2320
2321 /**
2322 * @brief Return the device's description string
2323 */
2324 const char *
device_get_desc(device_t dev)2325 device_get_desc(device_t dev)
2326 {
2327 return (dev->desc);
2328 }
2329
2330 /**
2331 * @brief Return the device's flags
2332 */
2333 uint32_t
device_get_flags(device_t dev)2334 device_get_flags(device_t dev)
2335 {
2336 return (dev->devflags);
2337 }
2338
2339 struct sysctl_ctx_list *
device_get_sysctl_ctx(device_t dev)2340 device_get_sysctl_ctx(device_t dev)
2341 {
2342 return (&dev->sysctl_ctx);
2343 }
2344
2345 struct sysctl_oid *
device_get_sysctl_tree(device_t dev)2346 device_get_sysctl_tree(device_t dev)
2347 {
2348 return (dev->sysctl_tree);
2349 }
2350
2351 /**
2352 * @brief Print the name of the device followed by a colon and a space
2353 *
2354 * @returns the number of characters printed
2355 */
2356 int
device_print_prettyname(device_t dev)2357 device_print_prettyname(device_t dev)
2358 {
2359 const char *name = device_get_name(dev);
2360
2361 if (name == NULL)
2362 return (printf("unknown: "));
2363 return (printf("%s%d: ", name, device_get_unit(dev)));
2364 }
2365
2366 /**
2367 * @brief Print the name of the device followed by a colon, a space
2368 * and the result of calling vprintf() with the value of @p fmt and
2369 * the following arguments.
2370 *
2371 * @returns the number of characters printed
2372 */
2373 int
device_printf(device_t dev,const char * fmt,...)2374 device_printf(device_t dev, const char * fmt, ...)
2375 {
2376 va_list ap;
2377 int retval;
2378
2379 retval = device_print_prettyname(dev);
2380 va_start(ap, fmt);
2381 retval += vprintf(fmt, ap);
2382 va_end(ap);
2383 return (retval);
2384 }
2385
2386 /**
2387 * @internal
2388 */
2389 static void
device_set_desc_internal(device_t dev,const char * desc,int copy)2390 device_set_desc_internal(device_t dev, const char* desc, int copy)
2391 {
2392 if (dev->desc && (dev->flags & DF_DESCMALLOCED)) {
2393 free(dev->desc, M_BUS);
2394 dev->flags &= ~DF_DESCMALLOCED;
2395 dev->desc = NULL;
2396 }
2397
2398 if (copy && desc) {
2399 dev->desc = malloc(strlen(desc) + 1, M_BUS, M_NOWAIT);
2400 if (dev->desc) {
2401 strcpy(dev->desc, desc);
2402 dev->flags |= DF_DESCMALLOCED;
2403 }
2404 } else {
2405 /* Avoid a -Wcast-qual warning */
2406 dev->desc = (char *)(uintptr_t) desc;
2407 }
2408
2409 bus_data_generation_update();
2410 }
2411
2412 /**
2413 * @brief Set the device's description
2414 *
2415 * The value of @c desc should be a string constant that will not
2416 * change (at least until the description is changed in a subsequent
2417 * call to device_set_desc() or device_set_desc_copy()).
2418 */
2419 void
device_set_desc(device_t dev,const char * desc)2420 device_set_desc(device_t dev, const char* desc)
2421 {
2422 device_set_desc_internal(dev, desc, FALSE);
2423 }
2424
2425 /**
2426 * @brief Set the device's description
2427 *
2428 * The string pointed to by @c desc is copied. Use this function if
2429 * the device description is generated, (e.g. with sprintf()).
2430 */
2431 void
device_set_desc_copy(device_t dev,const char * desc)2432 device_set_desc_copy(device_t dev, const char* desc)
2433 {
2434 device_set_desc_internal(dev, desc, TRUE);
2435 }
2436
2437 /**
2438 * @brief Set the device's flags
2439 */
2440 void
device_set_flags(device_t dev,uint32_t flags)2441 device_set_flags(device_t dev, uint32_t flags)
2442 {
2443 dev->devflags = flags;
2444 }
2445
2446 /**
2447 * @brief Return the device's softc field
2448 *
2449 * The softc is allocated and zeroed when a driver is attached, based
2450 * on the size field of the driver.
2451 */
2452 void *
device_get_softc(device_t dev)2453 device_get_softc(device_t dev)
2454 {
2455 return (dev->softc);
2456 }
2457
2458 /**
2459 * @brief Set the device's softc field
2460 *
2461 * Most drivers do not need to use this since the softc is allocated
2462 * automatically when the driver is attached.
2463 */
2464 void
device_set_softc(device_t dev,void * softc)2465 device_set_softc(device_t dev, void *softc)
2466 {
2467 if (dev->softc && !(dev->flags & DF_EXTERNALSOFTC))
2468 free(dev->softc, M_BUS_SC);
2469 dev->softc = softc;
2470 if (dev->softc)
2471 dev->flags |= DF_EXTERNALSOFTC;
2472 else
2473 dev->flags &= ~DF_EXTERNALSOFTC;
2474 }
2475
2476 /**
2477 * @brief Free claimed softc
2478 *
2479 * Most drivers do not need to use this since the softc is freed
2480 * automatically when the driver is detached.
2481 */
2482 void
device_free_softc(void * softc)2483 device_free_softc(void *softc)
2484 {
2485 free(softc, M_BUS_SC);
2486 }
2487
2488 /**
2489 * @brief Claim softc
2490 *
2491 * This function can be used to let the driver free the automatically
2492 * allocated softc using "device_free_softc()". This function is
2493 * useful when the driver is refcounting the softc and the softc
2494 * cannot be freed when the "device_detach" method is called.
2495 */
2496 void
device_claim_softc(device_t dev)2497 device_claim_softc(device_t dev)
2498 {
2499 if (dev->softc)
2500 dev->flags |= DF_EXTERNALSOFTC;
2501 else
2502 dev->flags &= ~DF_EXTERNALSOFTC;
2503 }
2504
2505 /**
2506 * @brief Get the device's ivars field
2507 *
2508 * The ivars field is used by the parent device to store per-device
2509 * state (e.g. the physical location of the device or a list of
2510 * resources).
2511 */
2512 void *
device_get_ivars(device_t dev)2513 device_get_ivars(device_t dev)
2514 {
2515
2516 KASSERT(dev != NULL, ("device_get_ivars(NULL, ...)"));
2517 return (dev->ivars);
2518 }
2519
2520 /**
2521 * @brief Set the device's ivars field
2522 */
2523 void
device_set_ivars(device_t dev,void * ivars)2524 device_set_ivars(device_t dev, void * ivars)
2525 {
2526
2527 KASSERT(dev != NULL, ("device_set_ivars(NULL, ...)"));
2528 dev->ivars = ivars;
2529 }
2530
2531 /**
2532 * @brief Return the device's state
2533 */
2534 device_state_t
device_get_state(device_t dev)2535 device_get_state(device_t dev)
2536 {
2537 return (dev->state);
2538 }
2539
2540 /**
2541 * @brief Set the DF_ENABLED flag for the device
2542 */
2543 void
device_enable(device_t dev)2544 device_enable(device_t dev)
2545 {
2546 dev->flags |= DF_ENABLED;
2547 }
2548
2549 /**
2550 * @brief Clear the DF_ENABLED flag for the device
2551 */
2552 void
device_disable(device_t dev)2553 device_disable(device_t dev)
2554 {
2555 dev->flags &= ~DF_ENABLED;
2556 }
2557
2558 /**
2559 * @brief Increment the busy counter for the device
2560 */
2561 void
device_busy(device_t dev)2562 device_busy(device_t dev)
2563 {
2564 if (dev->state < DS_ATTACHING)
2565 panic("device_busy: called for unattached device");
2566 if (dev->busy == 0 && dev->parent)
2567 device_busy(dev->parent);
2568 dev->busy++;
2569 if (dev->state == DS_ATTACHED)
2570 dev->state = DS_BUSY;
2571 }
2572
2573 /**
2574 * @brief Decrement the busy counter for the device
2575 */
2576 void
device_unbusy(device_t dev)2577 device_unbusy(device_t dev)
2578 {
2579 if (dev->busy != 0 && dev->state != DS_BUSY &&
2580 dev->state != DS_ATTACHING)
2581 panic("device_unbusy: called for non-busy device %s",
2582 device_get_nameunit(dev));
2583 dev->busy--;
2584 if (dev->busy == 0) {
2585 if (dev->parent)
2586 device_unbusy(dev->parent);
2587 if (dev->state == DS_BUSY)
2588 dev->state = DS_ATTACHED;
2589 }
2590 }
2591
2592 /**
2593 * @brief Set the DF_QUIET flag for the device
2594 */
2595 void
device_quiet(device_t dev)2596 device_quiet(device_t dev)
2597 {
2598 dev->flags |= DF_QUIET;
2599 }
2600
2601 /**
2602 * @brief Clear the DF_QUIET flag for the device
2603 */
2604 void
device_verbose(device_t dev)2605 device_verbose(device_t dev)
2606 {
2607 dev->flags &= ~DF_QUIET;
2608 }
2609
2610 /**
2611 * @brief Return non-zero if the DF_QUIET flag is set on the device
2612 */
2613 int
device_is_quiet(device_t dev)2614 device_is_quiet(device_t dev)
2615 {
2616 return ((dev->flags & DF_QUIET) != 0);
2617 }
2618
2619 /**
2620 * @brief Return non-zero if the DF_ENABLED flag is set on the device
2621 */
2622 int
device_is_enabled(device_t dev)2623 device_is_enabled(device_t dev)
2624 {
2625 return ((dev->flags & DF_ENABLED) != 0);
2626 }
2627
2628 /**
2629 * @brief Return non-zero if the device was successfully probed
2630 */
2631 int
device_is_alive(device_t dev)2632 device_is_alive(device_t dev)
2633 {
2634 return (dev->state >= DS_ALIVE);
2635 }
2636
2637 /**
2638 * @brief Return non-zero if the device currently has a driver
2639 * attached to it
2640 */
2641 int
device_is_attached(device_t dev)2642 device_is_attached(device_t dev)
2643 {
2644 return (dev->state >= DS_ATTACHED);
2645 }
2646
2647 /**
2648 * @brief Return non-zero if the device is currently suspended.
2649 */
2650 int
device_is_suspended(device_t dev)2651 device_is_suspended(device_t dev)
2652 {
2653 return ((dev->flags & DF_SUSPENDED) != 0);
2654 }
2655
2656 /**
2657 * @brief Set the devclass of a device
2658 * @see devclass_add_device().
2659 */
2660 int
device_set_devclass(device_t dev,const char * classname)2661 device_set_devclass(device_t dev, const char *classname)
2662 {
2663 devclass_t dc;
2664 int error;
2665
2666 if (!classname) {
2667 if (dev->devclass)
2668 devclass_delete_device(dev->devclass, dev);
2669 return (0);
2670 }
2671
2672 if (dev->devclass) {
2673 printf("device_set_devclass: device class already set\n");
2674 return (EINVAL);
2675 }
2676
2677 dc = devclass_find_internal(classname, NULL, TRUE);
2678 if (!dc)
2679 return (ENOMEM);
2680
2681 error = devclass_add_device(dc, dev);
2682
2683 bus_data_generation_update();
2684 return (error);
2685 }
2686
2687 /**
2688 * @brief Set the devclass of a device and mark the devclass fixed.
2689 * @see device_set_devclass()
2690 */
2691 int
device_set_devclass_fixed(device_t dev,const char * classname)2692 device_set_devclass_fixed(device_t dev, const char *classname)
2693 {
2694 int error;
2695
2696 if (classname == NULL)
2697 return (EINVAL);
2698
2699 error = device_set_devclass(dev, classname);
2700 if (error)
2701 return (error);
2702 dev->flags |= DF_FIXEDCLASS;
2703 return (0);
2704 }
2705
2706 /**
2707 * @brief Set the driver of a device
2708 *
2709 * @retval 0 success
2710 * @retval EBUSY the device already has a driver attached
2711 * @retval ENOMEM a memory allocation failure occurred
2712 */
2713 int
device_set_driver(device_t dev,driver_t * driver)2714 device_set_driver(device_t dev, driver_t *driver)
2715 {
2716 if (dev->state >= DS_ATTACHED)
2717 return (EBUSY);
2718
2719 if (dev->driver == driver)
2720 return (0);
2721
2722 if (dev->softc && !(dev->flags & DF_EXTERNALSOFTC)) {
2723 free(dev->softc, M_BUS_SC);
2724 dev->softc = NULL;
2725 }
2726 device_set_desc(dev, NULL);
2727 kobj_delete((kobj_t) dev, NULL);
2728 dev->driver = driver;
2729 if (driver) {
2730 kobj_init((kobj_t) dev, (kobj_class_t) driver);
2731 if (!(dev->flags & DF_EXTERNALSOFTC) && driver->size > 0) {
2732 dev->softc = malloc(driver->size, M_BUS_SC,
2733 M_NOWAIT | M_ZERO);
2734 if (!dev->softc) {
2735 kobj_delete((kobj_t) dev, NULL);
2736 kobj_init((kobj_t) dev, &null_class);
2737 dev->driver = NULL;
2738 return (ENOMEM);
2739 }
2740 }
2741 } else {
2742 kobj_init((kobj_t) dev, &null_class);
2743 }
2744
2745 bus_data_generation_update();
2746 return (0);
2747 }
2748
2749 /**
2750 * @brief Probe a device, and return this status.
2751 *
2752 * This function is the core of the device autoconfiguration
2753 * system. Its purpose is to select a suitable driver for a device and
2754 * then call that driver to initialise the hardware appropriately. The
2755 * driver is selected by calling the DEVICE_PROBE() method of a set of
2756 * candidate drivers and then choosing the driver which returned the
2757 * best value. This driver is then attached to the device using
2758 * device_attach().
2759 *
2760 * The set of suitable drivers is taken from the list of drivers in
2761 * the parent device's devclass. If the device was originally created
2762 * with a specific class name (see device_add_child()), only drivers
2763 * with that name are probed, otherwise all drivers in the devclass
2764 * are probed. If no drivers return successful probe values in the
2765 * parent devclass, the search continues in the parent of that
2766 * devclass (see devclass_get_parent()) if any.
2767 *
2768 * @param dev the device to initialise
2769 *
2770 * @retval 0 success
2771 * @retval ENXIO no driver was found
2772 * @retval ENOMEM memory allocation failure
2773 * @retval non-zero some other unix error code
2774 * @retval -1 Device already attached
2775 */
2776 int
device_probe(device_t dev)2777 device_probe(device_t dev)
2778 {
2779 int error;
2780
2781 GIANT_REQUIRED;
2782
2783 if (dev->state >= DS_ALIVE && (dev->flags & DF_REBID) == 0)
2784 return (-1);
2785
2786 if (!(dev->flags & DF_ENABLED)) {
2787 if (bootverbose && device_get_name(dev) != NULL) {
2788 device_print_prettyname(dev);
2789 printf("not probed (disabled)\n");
2790 }
2791 return (-1);
2792 }
2793 if ((error = device_probe_child(dev->parent, dev)) != 0) {
2794 if (bus_current_pass == BUS_PASS_DEFAULT &&
2795 !(dev->flags & DF_DONENOMATCH)) {
2796 BUS_PROBE_NOMATCH(dev->parent, dev);
2797 devnomatch(dev);
2798 dev->flags |= DF_DONENOMATCH;
2799 }
2800 return (error);
2801 }
2802 return (0);
2803 }
2804
2805 /**
2806 * @brief Probe a device and attach a driver if possible
2807 *
2808 * calls device_probe() and attaches if that was successful.
2809 */
2810 int
device_probe_and_attach(device_t dev)2811 device_probe_and_attach(device_t dev)
2812 {
2813 int error;
2814
2815 GIANT_REQUIRED;
2816
2817 error = device_probe(dev);
2818 if (error == -1)
2819 return (0);
2820 else if (error != 0)
2821 return (error);
2822
2823 CURVNET_SET_QUIET(vnet0);
2824 error = device_attach(dev);
2825 CURVNET_RESTORE();
2826 return error;
2827 }
2828
2829 /**
2830 * @brief Attach a device driver to a device
2831 *
2832 * This function is a wrapper around the DEVICE_ATTACH() driver
2833 * method. In addition to calling DEVICE_ATTACH(), it initialises the
2834 * device's sysctl tree, optionally prints a description of the device
2835 * and queues a notification event for user-based device management
2836 * services.
2837 *
2838 * Normally this function is only called internally from
2839 * device_probe_and_attach().
2840 *
2841 * @param dev the device to initialise
2842 *
2843 * @retval 0 success
2844 * @retval ENXIO no driver was found
2845 * @retval ENOMEM memory allocation failure
2846 * @retval non-zero some other unix error code
2847 */
2848 int
device_attach(device_t dev)2849 device_attach(device_t dev)
2850 {
2851 uint64_t attachtime;
2852 int error;
2853
2854 if (resource_disabled(dev->driver->name, dev->unit)) {
2855 device_disable(dev);
2856 if (bootverbose)
2857 device_printf(dev, "disabled via hints entry\n");
2858 return (ENXIO);
2859 }
2860
2861 device_sysctl_init(dev);
2862 if (!device_is_quiet(dev))
2863 device_print_child(dev->parent, dev);
2864 attachtime = get_cyclecount();
2865 dev->state = DS_ATTACHING;
2866 if ((error = DEVICE_ATTACH(dev)) != 0) {
2867 printf("device_attach: %s%d attach returned %d\n",
2868 dev->driver->name, dev->unit, error);
2869 if (!(dev->flags & DF_FIXEDCLASS))
2870 devclass_delete_device(dev->devclass, dev);
2871 (void)device_set_driver(dev, NULL);
2872 device_sysctl_fini(dev);
2873 KASSERT(dev->busy == 0, ("attach failed but busy"));
2874 dev->state = DS_NOTPRESENT;
2875 return (error);
2876 }
2877 attachtime = get_cyclecount() - attachtime;
2878 /*
2879 * 4 bits per device is a reasonable value for desktop and server
2880 * hardware with good get_cyclecount() implementations, but WILL
2881 * need to be adjusted on other platforms.
2882 */
2883 #define RANDOM_PROBE_BIT_GUESS 4
2884 if (bootverbose)
2885 printf("random: harvesting attach, %zu bytes (%d bits) from %s%d\n",
2886 sizeof(attachtime), RANDOM_PROBE_BIT_GUESS,
2887 dev->driver->name, dev->unit);
2888 random_harvest_direct(&attachtime, sizeof(attachtime),
2889 RANDOM_PROBE_BIT_GUESS, RANDOM_ATTACH);
2890 device_sysctl_update(dev);
2891 if (dev->busy)
2892 dev->state = DS_BUSY;
2893 else
2894 dev->state = DS_ATTACHED;
2895 dev->flags &= ~DF_DONENOMATCH;
2896 devadded(dev);
2897 return (0);
2898 }
2899
2900 /**
2901 * @brief Detach a driver from a device
2902 *
2903 * This function is a wrapper around the DEVICE_DETACH() driver
2904 * method. If the call to DEVICE_DETACH() succeeds, it calls
2905 * BUS_CHILD_DETACHED() for the parent of @p dev, queues a
2906 * notification event for user-based device management services and
2907 * cleans up the device's sysctl tree.
2908 *
2909 * @param dev the device to un-initialise
2910 *
2911 * @retval 0 success
2912 * @retval ENXIO no driver was found
2913 * @retval ENOMEM memory allocation failure
2914 * @retval non-zero some other unix error code
2915 */
2916 int
device_detach(device_t dev)2917 device_detach(device_t dev)
2918 {
2919 int error;
2920
2921 GIANT_REQUIRED;
2922
2923 PDEBUG(("%s", DEVICENAME(dev)));
2924 if (dev->state == DS_BUSY)
2925 return (EBUSY);
2926 if (dev->state != DS_ATTACHED)
2927 return (0);
2928
2929 if ((error = DEVICE_DETACH(dev)) != 0)
2930 return (error);
2931 devremoved(dev);
2932 if (!device_is_quiet(dev))
2933 device_printf(dev, "detached\n");
2934 if (dev->parent)
2935 BUS_CHILD_DETACHED(dev->parent, dev);
2936
2937 if (!(dev->flags & DF_FIXEDCLASS))
2938 devclass_delete_device(dev->devclass, dev);
2939
2940 dev->state = DS_NOTPRESENT;
2941 (void)device_set_driver(dev, NULL);
2942 device_sysctl_fini(dev);
2943
2944 return (0);
2945 }
2946
2947 /**
2948 * @brief Tells a driver to quiesce itself.
2949 *
2950 * This function is a wrapper around the DEVICE_QUIESCE() driver
2951 * method. If the call to DEVICE_QUIESCE() succeeds.
2952 *
2953 * @param dev the device to quiesce
2954 *
2955 * @retval 0 success
2956 * @retval ENXIO no driver was found
2957 * @retval ENOMEM memory allocation failure
2958 * @retval non-zero some other unix error code
2959 */
2960 int
device_quiesce(device_t dev)2961 device_quiesce(device_t dev)
2962 {
2963
2964 PDEBUG(("%s", DEVICENAME(dev)));
2965 if (dev->state == DS_BUSY)
2966 return (EBUSY);
2967 if (dev->state != DS_ATTACHED)
2968 return (0);
2969
2970 return (DEVICE_QUIESCE(dev));
2971 }
2972
2973 /**
2974 * @brief Notify a device of system shutdown
2975 *
2976 * This function calls the DEVICE_SHUTDOWN() driver method if the
2977 * device currently has an attached driver.
2978 *
2979 * @returns the value returned by DEVICE_SHUTDOWN()
2980 */
2981 int
device_shutdown(device_t dev)2982 device_shutdown(device_t dev)
2983 {
2984 if (dev->state < DS_ATTACHED)
2985 return (0);
2986 return (DEVICE_SHUTDOWN(dev));
2987 }
2988
2989 /**
2990 * @brief Set the unit number of a device
2991 *
2992 * This function can be used to override the unit number used for a
2993 * device (e.g. to wire a device to a pre-configured unit number).
2994 */
2995 int
device_set_unit(device_t dev,int unit)2996 device_set_unit(device_t dev, int unit)
2997 {
2998 devclass_t dc;
2999 int err;
3000
3001 dc = device_get_devclass(dev);
3002 if (unit < dc->maxunit && dc->devices[unit])
3003 return (EBUSY);
3004 err = devclass_delete_device(dc, dev);
3005 if (err)
3006 return (err);
3007 dev->unit = unit;
3008 err = devclass_add_device(dc, dev);
3009 if (err)
3010 return (err);
3011
3012 bus_data_generation_update();
3013 return (0);
3014 }
3015
3016 /*======================================*/
3017 /*
3018 * Some useful method implementations to make life easier for bus drivers.
3019 */
3020
3021 /**
3022 * @brief Initialise a resource list.
3023 *
3024 * @param rl the resource list to initialise
3025 */
3026 void
resource_list_init(struct resource_list * rl)3027 resource_list_init(struct resource_list *rl)
3028 {
3029 STAILQ_INIT(rl);
3030 }
3031
3032 /**
3033 * @brief Reclaim memory used by a resource list.
3034 *
3035 * This function frees the memory for all resource entries on the list
3036 * (if any).
3037 *
3038 * @param rl the resource list to free
3039 */
3040 void
resource_list_free(struct resource_list * rl)3041 resource_list_free(struct resource_list *rl)
3042 {
3043 struct resource_list_entry *rle;
3044
3045 while ((rle = STAILQ_FIRST(rl)) != NULL) {
3046 if (rle->res)
3047 panic("resource_list_free: resource entry is busy");
3048 STAILQ_REMOVE_HEAD(rl, link);
3049 free(rle, M_BUS);
3050 }
3051 }
3052
3053 /**
3054 * @brief Add a resource entry.
3055 *
3056 * This function adds a resource entry using the given @p type, @p
3057 * start, @p end and @p count values. A rid value is chosen by
3058 * searching sequentially for the first unused rid starting at zero.
3059 *
3060 * @param rl the resource list to edit
3061 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3062 * @param start the start address of the resource
3063 * @param end the end address of the resource
3064 * @param count XXX end-start+1
3065 */
3066 int
resource_list_add_next(struct resource_list * rl,int type,u_long start,u_long end,u_long count)3067 resource_list_add_next(struct resource_list *rl, int type, u_long start,
3068 u_long end, u_long count)
3069 {
3070 int rid;
3071
3072 rid = 0;
3073 while (resource_list_find(rl, type, rid) != NULL)
3074 rid++;
3075 resource_list_add(rl, type, rid, start, end, count);
3076 return (rid);
3077 }
3078
3079 /**
3080 * @brief Add or modify a resource entry.
3081 *
3082 * If an existing entry exists with the same type and rid, it will be
3083 * modified using the given values of @p start, @p end and @p
3084 * count. If no entry exists, a new one will be created using the
3085 * given values. The resource list entry that matches is then returned.
3086 *
3087 * @param rl the resource list to edit
3088 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3089 * @param rid the resource identifier
3090 * @param start the start address of the resource
3091 * @param end the end address of the resource
3092 * @param count XXX end-start+1
3093 */
3094 struct resource_list_entry *
resource_list_add(struct resource_list * rl,int type,int rid,u_long start,u_long end,u_long count)3095 resource_list_add(struct resource_list *rl, int type, int rid,
3096 u_long start, u_long end, u_long count)
3097 {
3098 struct resource_list_entry *rle;
3099
3100 rle = resource_list_find(rl, type, rid);
3101 if (!rle) {
3102 rle = malloc(sizeof(struct resource_list_entry), M_BUS,
3103 M_NOWAIT);
3104 if (!rle)
3105 panic("resource_list_add: can't record entry");
3106 STAILQ_INSERT_TAIL(rl, rle, link);
3107 rle->type = type;
3108 rle->rid = rid;
3109 rle->res = NULL;
3110 rle->flags = 0;
3111 }
3112
3113 if (rle->res)
3114 panic("resource_list_add: resource entry is busy");
3115
3116 rle->start = start;
3117 rle->end = end;
3118 rle->count = count;
3119 return (rle);
3120 }
3121
3122 /**
3123 * @brief Determine if a resource entry is busy.
3124 *
3125 * Returns true if a resource entry is busy meaning that it has an
3126 * associated resource that is not an unallocated "reserved" resource.
3127 *
3128 * @param rl the resource list to search
3129 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3130 * @param rid the resource identifier
3131 *
3132 * @returns Non-zero if the entry is busy, zero otherwise.
3133 */
3134 int
resource_list_busy(struct resource_list * rl,int type,int rid)3135 resource_list_busy(struct resource_list *rl, int type, int rid)
3136 {
3137 struct resource_list_entry *rle;
3138
3139 rle = resource_list_find(rl, type, rid);
3140 if (rle == NULL || rle->res == NULL)
3141 return (0);
3142 if ((rle->flags & (RLE_RESERVED | RLE_ALLOCATED)) == RLE_RESERVED) {
3143 KASSERT(!(rman_get_flags(rle->res) & RF_ACTIVE),
3144 ("reserved resource is active"));
3145 return (0);
3146 }
3147 return (1);
3148 }
3149
3150 /**
3151 * @brief Determine if a resource entry is reserved.
3152 *
3153 * Returns true if a resource entry is reserved meaning that it has an
3154 * associated "reserved" resource. The resource can either be
3155 * allocated or unallocated.
3156 *
3157 * @param rl the resource list to search
3158 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3159 * @param rid the resource identifier
3160 *
3161 * @returns Non-zero if the entry is reserved, zero otherwise.
3162 */
3163 int
resource_list_reserved(struct resource_list * rl,int type,int rid)3164 resource_list_reserved(struct resource_list *rl, int type, int rid)
3165 {
3166 struct resource_list_entry *rle;
3167
3168 rle = resource_list_find(rl, type, rid);
3169 if (rle != NULL && rle->flags & RLE_RESERVED)
3170 return (1);
3171 return (0);
3172 }
3173
3174 /**
3175 * @brief Find a resource entry by type and rid.
3176 *
3177 * @param rl the resource list to search
3178 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3179 * @param rid the resource identifier
3180 *
3181 * @returns the resource entry pointer or NULL if there is no such
3182 * entry.
3183 */
3184 struct resource_list_entry *
resource_list_find(struct resource_list * rl,int type,int rid)3185 resource_list_find(struct resource_list *rl, int type, int rid)
3186 {
3187 struct resource_list_entry *rle;
3188
3189 STAILQ_FOREACH(rle, rl, link) {
3190 if (rle->type == type && rle->rid == rid)
3191 return (rle);
3192 }
3193 return (NULL);
3194 }
3195
3196 /**
3197 * @brief Delete a resource entry.
3198 *
3199 * @param rl the resource list to edit
3200 * @param type the resource entry type (e.g. SYS_RES_MEMORY)
3201 * @param rid the resource identifier
3202 */
3203 void
resource_list_delete(struct resource_list * rl,int type,int rid)3204 resource_list_delete(struct resource_list *rl, int type, int rid)
3205 {
3206 struct resource_list_entry *rle = resource_list_find(rl, type, rid);
3207
3208 if (rle) {
3209 if (rle->res != NULL)
3210 panic("resource_list_delete: resource has not been released");
3211 STAILQ_REMOVE(rl, rle, resource_list_entry, link);
3212 free(rle, M_BUS);
3213 }
3214 }
3215
3216 /**
3217 * @brief Allocate a reserved resource
3218 *
3219 * This can be used by busses to force the allocation of resources
3220 * that are always active in the system even if they are not allocated
3221 * by a driver (e.g. PCI BARs). This function is usually called when
3222 * adding a new child to the bus. The resource is allocated from the
3223 * parent bus when it is reserved. The resource list entry is marked
3224 * with RLE_RESERVED to note that it is a reserved resource.
3225 *
3226 * Subsequent attempts to allocate the resource with
3227 * resource_list_alloc() will succeed the first time and will set
3228 * RLE_ALLOCATED to note that it has been allocated. When a reserved
3229 * resource that has been allocated is released with
3230 * resource_list_release() the resource RLE_ALLOCATED is cleared, but
3231 * the actual resource remains allocated. The resource can be released to
3232 * the parent bus by calling resource_list_unreserve().
3233 *
3234 * @param rl the resource list to allocate from
3235 * @param bus the parent device of @p child
3236 * @param child the device for which the resource is being reserved
3237 * @param type the type of resource to allocate
3238 * @param rid a pointer to the resource identifier
3239 * @param start hint at the start of the resource range - pass
3240 * @c 0UL for any start address
3241 * @param end hint at the end of the resource range - pass
3242 * @c ~0UL for any end address
3243 * @param count hint at the size of range required - pass @c 1
3244 * for any size
3245 * @param flags any extra flags to control the resource
3246 * allocation - see @c RF_XXX flags in
3247 * <sys/rman.h> for details
3248 *
3249 * @returns the resource which was allocated or @c NULL if no
3250 * resource could be allocated
3251 */
3252 struct resource *
resource_list_reserve(struct resource_list * rl,device_t bus,device_t child,int type,int * rid,u_long start,u_long end,u_long count,u_int flags)3253 resource_list_reserve(struct resource_list *rl, device_t bus, device_t child,
3254 int type, int *rid, u_long start, u_long end, u_long count, u_int flags)
3255 {
3256 struct resource_list_entry *rle = NULL;
3257 int passthrough = (device_get_parent(child) != bus);
3258 struct resource *r;
3259
3260 if (passthrough)
3261 panic(
3262 "resource_list_reserve() should only be called for direct children");
3263 if (flags & RF_ACTIVE)
3264 panic(
3265 "resource_list_reserve() should only reserve inactive resources");
3266
3267 r = resource_list_alloc(rl, bus, child, type, rid, start, end, count,
3268 flags);
3269 if (r != NULL) {
3270 rle = resource_list_find(rl, type, *rid);
3271 rle->flags |= RLE_RESERVED;
3272 }
3273 return (r);
3274 }
3275
3276 /**
3277 * @brief Helper function for implementing BUS_ALLOC_RESOURCE()
3278 *
3279 * Implement BUS_ALLOC_RESOURCE() by looking up a resource from the list
3280 * and passing the allocation up to the parent of @p bus. This assumes
3281 * that the first entry of @c device_get_ivars(child) is a struct
3282 * resource_list. This also handles 'passthrough' allocations where a
3283 * child is a remote descendant of bus by passing the allocation up to
3284 * the parent of bus.
3285 *
3286 * Typically, a bus driver would store a list of child resources
3287 * somewhere in the child device's ivars (see device_get_ivars()) and
3288 * its implementation of BUS_ALLOC_RESOURCE() would find that list and
3289 * then call resource_list_alloc() to perform the allocation.
3290 *
3291 * @param rl the resource list to allocate from
3292 * @param bus the parent device of @p child
3293 * @param child the device which is requesting an allocation
3294 * @param type the type of resource to allocate
3295 * @param rid a pointer to the resource identifier
3296 * @param start hint at the start of the resource range - pass
3297 * @c 0UL for any start address
3298 * @param end hint at the end of the resource range - pass
3299 * @c ~0UL for any end address
3300 * @param count hint at the size of range required - pass @c 1
3301 * for any size
3302 * @param flags any extra flags to control the resource
3303 * allocation - see @c RF_XXX flags in
3304 * <sys/rman.h> for details
3305 *
3306 * @returns the resource which was allocated or @c NULL if no
3307 * resource could be allocated
3308 */
3309 struct resource *
resource_list_alloc(struct resource_list * rl,device_t bus,device_t child,int type,int * rid,u_long start,u_long end,u_long count,u_int flags)3310 resource_list_alloc(struct resource_list *rl, device_t bus, device_t child,
3311 int type, int *rid, u_long start, u_long end, u_long count, u_int flags)
3312 {
3313 struct resource_list_entry *rle = NULL;
3314 int passthrough = (device_get_parent(child) != bus);
3315 int isdefault = (start == 0UL && end == ~0UL);
3316
3317 if (passthrough) {
3318 return (BUS_ALLOC_RESOURCE(device_get_parent(bus), child,
3319 type, rid, start, end, count, flags));
3320 }
3321
3322 rle = resource_list_find(rl, type, *rid);
3323
3324 if (!rle)
3325 return (NULL); /* no resource of that type/rid */
3326
3327 if (rle->res) {
3328 if (rle->flags & RLE_RESERVED) {
3329 if (rle->flags & RLE_ALLOCATED)
3330 return (NULL);
3331 if ((flags & RF_ACTIVE) &&
3332 bus_activate_resource(child, type, *rid,
3333 rle->res) != 0)
3334 return (NULL);
3335 rle->flags |= RLE_ALLOCATED;
3336 return (rle->res);
3337 }
3338 device_printf(bus,
3339 "resource entry %#x type %d for child %s is busy\n", *rid,
3340 type, device_get_nameunit(child));
3341 return (NULL);
3342 }
3343
3344 if (isdefault) {
3345 start = rle->start;
3346 count = ulmax(count, rle->count);
3347 end = ulmax(rle->end, start + count - 1);
3348 }
3349
3350 rle->res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child,
3351 type, rid, start, end, count, flags);
3352
3353 /*
3354 * Record the new range.
3355 */
3356 if (rle->res) {
3357 rle->start = rman_get_start(rle->res);
3358 rle->end = rman_get_end(rle->res);
3359 rle->count = count;
3360 }
3361
3362 return (rle->res);
3363 }
3364
3365 /**
3366 * @brief Helper function for implementing BUS_RELEASE_RESOURCE()
3367 *
3368 * Implement BUS_RELEASE_RESOURCE() using a resource list. Normally
3369 * used with resource_list_alloc().
3370 *
3371 * @param rl the resource list which was allocated from
3372 * @param bus the parent device of @p child
3373 * @param child the device which is requesting a release
3374 * @param type the type of resource to release
3375 * @param rid the resource identifier
3376 * @param res the resource to release
3377 *
3378 * @retval 0 success
3379 * @retval non-zero a standard unix error code indicating what
3380 * error condition prevented the operation
3381 */
3382 int
resource_list_release(struct resource_list * rl,device_t bus,device_t child,int type,int rid,struct resource * res)3383 resource_list_release(struct resource_list *rl, device_t bus, device_t child,
3384 int type, int rid, struct resource *res)
3385 {
3386 struct resource_list_entry *rle = NULL;
3387 int passthrough = (device_get_parent(child) != bus);
3388 int error;
3389
3390 if (passthrough) {
3391 return (BUS_RELEASE_RESOURCE(device_get_parent(bus), child,
3392 type, rid, res));
3393 }
3394
3395 rle = resource_list_find(rl, type, rid);
3396
3397 if (!rle)
3398 panic("resource_list_release: can't find resource");
3399 if (!rle->res)
3400 panic("resource_list_release: resource entry is not busy");
3401 if (rle->flags & RLE_RESERVED) {
3402 if (rle->flags & RLE_ALLOCATED) {
3403 if (rman_get_flags(res) & RF_ACTIVE) {
3404 error = bus_deactivate_resource(child, type,
3405 rid, res);
3406 if (error)
3407 return (error);
3408 }
3409 rle->flags &= ~RLE_ALLOCATED;
3410 return (0);
3411 }
3412 return (EINVAL);
3413 }
3414
3415 error = BUS_RELEASE_RESOURCE(device_get_parent(bus), child,
3416 type, rid, res);
3417 if (error)
3418 return (error);
3419
3420 rle->res = NULL;
3421 return (0);
3422 }
3423
3424 /**
3425 * @brief Release all active resources of a given type
3426 *
3427 * Release all active resources of a specified type. This is intended
3428 * to be used to cleanup resources leaked by a driver after detach or
3429 * a failed attach.
3430 *
3431 * @param rl the resource list which was allocated from
3432 * @param bus the parent device of @p child
3433 * @param child the device whose active resources are being released
3434 * @param type the type of resources to release
3435 *
3436 * @retval 0 success
3437 * @retval EBUSY at least one resource was active
3438 */
3439 int
resource_list_release_active(struct resource_list * rl,device_t bus,device_t child,int type)3440 resource_list_release_active(struct resource_list *rl, device_t bus,
3441 device_t child, int type)
3442 {
3443 struct resource_list_entry *rle;
3444 int error, retval;
3445
3446 retval = 0;
3447 STAILQ_FOREACH(rle, rl, link) {
3448 if (rle->type != type)
3449 continue;
3450 if (rle->res == NULL)
3451 continue;
3452 if ((rle->flags & (RLE_RESERVED | RLE_ALLOCATED)) ==
3453 RLE_RESERVED)
3454 continue;
3455 retval = EBUSY;
3456 error = resource_list_release(rl, bus, child, type,
3457 rman_get_rid(rle->res), rle->res);
3458 if (error != 0)
3459 device_printf(bus,
3460 "Failed to release active resource: %d\n", error);
3461 }
3462 return (retval);
3463 }
3464
3465
3466 /**
3467 * @brief Fully release a reserved resource
3468 *
3469 * Fully releases a resource reserved via resource_list_reserve().
3470 *
3471 * @param rl the resource list which was allocated from
3472 * @param bus the parent device of @p child
3473 * @param child the device whose reserved resource is being released
3474 * @param type the type of resource to release
3475 * @param rid the resource identifier
3476 * @param res the resource to release
3477 *
3478 * @retval 0 success
3479 * @retval non-zero a standard unix error code indicating what
3480 * error condition prevented the operation
3481 */
3482 int
resource_list_unreserve(struct resource_list * rl,device_t bus,device_t child,int type,int rid)3483 resource_list_unreserve(struct resource_list *rl, device_t bus, device_t child,
3484 int type, int rid)
3485 {
3486 struct resource_list_entry *rle = NULL;
3487 int passthrough = (device_get_parent(child) != bus);
3488
3489 if (passthrough)
3490 panic(
3491 "resource_list_unreserve() should only be called for direct children");
3492
3493 rle = resource_list_find(rl, type, rid);
3494
3495 if (!rle)
3496 panic("resource_list_unreserve: can't find resource");
3497 if (!(rle->flags & RLE_RESERVED))
3498 return (EINVAL);
3499 if (rle->flags & RLE_ALLOCATED)
3500 return (EBUSY);
3501 rle->flags &= ~RLE_RESERVED;
3502 return (resource_list_release(rl, bus, child, type, rid, rle->res));
3503 }
3504
3505 /**
3506 * @brief Print a description of resources in a resource list
3507 *
3508 * Print all resources of a specified type, for use in BUS_PRINT_CHILD().
3509 * The name is printed if at least one resource of the given type is available.
3510 * The format is used to print resource start and end.
3511 *
3512 * @param rl the resource list to print
3513 * @param name the name of @p type, e.g. @c "memory"
3514 * @param type type type of resource entry to print
3515 * @param format printf(9) format string to print resource
3516 * start and end values
3517 *
3518 * @returns the number of characters printed
3519 */
3520 int
resource_list_print_type(struct resource_list * rl,const char * name,int type,const char * format)3521 resource_list_print_type(struct resource_list *rl, const char *name, int type,
3522 const char *format)
3523 {
3524 struct resource_list_entry *rle;
3525 int printed, retval;
3526
3527 printed = 0;
3528 retval = 0;
3529 /* Yes, this is kinda cheating */
3530 STAILQ_FOREACH(rle, rl, link) {
3531 if (rle->type == type) {
3532 if (printed == 0)
3533 retval += printf(" %s ", name);
3534 else
3535 retval += printf(",");
3536 printed++;
3537 retval += printf(format, rle->start);
3538 if (rle->count > 1) {
3539 retval += printf("-");
3540 retval += printf(format, rle->start +
3541 rle->count - 1);
3542 }
3543 }
3544 }
3545 return (retval);
3546 }
3547
3548 /**
3549 * @brief Releases all the resources in a list.
3550 *
3551 * @param rl The resource list to purge.
3552 *
3553 * @returns nothing
3554 */
3555 void
resource_list_purge(struct resource_list * rl)3556 resource_list_purge(struct resource_list *rl)
3557 {
3558 struct resource_list_entry *rle;
3559
3560 while ((rle = STAILQ_FIRST(rl)) != NULL) {
3561 if (rle->res)
3562 bus_release_resource(rman_get_device(rle->res),
3563 rle->type, rle->rid, rle->res);
3564 STAILQ_REMOVE_HEAD(rl, link);
3565 free(rle, M_BUS);
3566 }
3567 }
3568
3569 device_t
bus_generic_add_child(device_t dev,u_int order,const char * name,int unit)3570 bus_generic_add_child(device_t dev, u_int order, const char *name, int unit)
3571 {
3572
3573 return (device_add_child_ordered(dev, order, name, unit));
3574 }
3575
3576 /**
3577 * @brief Helper function for implementing DEVICE_PROBE()
3578 *
3579 * This function can be used to help implement the DEVICE_PROBE() for
3580 * a bus (i.e. a device which has other devices attached to it). It
3581 * calls the DEVICE_IDENTIFY() method of each driver in the device's
3582 * devclass.
3583 */
3584 int
bus_generic_probe(device_t dev)3585 bus_generic_probe(device_t dev)
3586 {
3587 devclass_t dc = dev->devclass;
3588 driverlink_t dl;
3589
3590 TAILQ_FOREACH(dl, &dc->drivers, link) {
3591 /*
3592 * If this driver's pass is too high, then ignore it.
3593 * For most drivers in the default pass, this will
3594 * never be true. For early-pass drivers they will
3595 * only call the identify routines of eligible drivers
3596 * when this routine is called. Drivers for later
3597 * passes should have their identify routines called
3598 * on early-pass busses during BUS_NEW_PASS().
3599 */
3600 if (dl->pass > bus_current_pass)
3601 continue;
3602 DEVICE_IDENTIFY(dl->driver, dev);
3603 }
3604
3605 return (0);
3606 }
3607
3608 /**
3609 * @brief Helper function for implementing DEVICE_ATTACH()
3610 *
3611 * This function can be used to help implement the DEVICE_ATTACH() for
3612 * a bus. It calls device_probe_and_attach() for each of the device's
3613 * children.
3614 */
3615 int
bus_generic_attach(device_t dev)3616 bus_generic_attach(device_t dev)
3617 {
3618 device_t child;
3619
3620 TAILQ_FOREACH(child, &dev->children, link) {
3621 device_probe_and_attach(child);
3622 }
3623
3624 return (0);
3625 }
3626
3627 /**
3628 * @brief Helper function for implementing DEVICE_DETACH()
3629 *
3630 * This function can be used to help implement the DEVICE_DETACH() for
3631 * a bus. It calls device_detach() for each of the device's
3632 * children.
3633 */
3634 int
bus_generic_detach(device_t dev)3635 bus_generic_detach(device_t dev)
3636 {
3637 device_t child;
3638 int error;
3639
3640 if (dev->state != DS_ATTACHED)
3641 return (EBUSY);
3642
3643 TAILQ_FOREACH(child, &dev->children, link) {
3644 if ((error = device_detach(child)) != 0)
3645 return (error);
3646 }
3647
3648 return (0);
3649 }
3650
3651 /**
3652 * @brief Helper function for implementing DEVICE_SHUTDOWN()
3653 *
3654 * This function can be used to help implement the DEVICE_SHUTDOWN()
3655 * for a bus. It calls device_shutdown() for each of the device's
3656 * children.
3657 */
3658 int
bus_generic_shutdown(device_t dev)3659 bus_generic_shutdown(device_t dev)
3660 {
3661 device_t child;
3662
3663 TAILQ_FOREACH(child, &dev->children, link) {
3664 device_shutdown(child);
3665 }
3666
3667 return (0);
3668 }
3669
3670 /**
3671 * @brief Default function for suspending a child device.
3672 *
3673 * This function is to be used by a bus's DEVICE_SUSPEND_CHILD().
3674 */
3675 int
bus_generic_suspend_child(device_t dev,device_t child)3676 bus_generic_suspend_child(device_t dev, device_t child)
3677 {
3678 int error;
3679
3680 error = DEVICE_SUSPEND(child);
3681
3682 if (error == 0)
3683 child->flags |= DF_SUSPENDED;
3684
3685 return (error);
3686 }
3687
3688 /**
3689 * @brief Default function for resuming a child device.
3690 *
3691 * This function is to be used by a bus's DEVICE_RESUME_CHILD().
3692 */
3693 int
bus_generic_resume_child(device_t dev,device_t child)3694 bus_generic_resume_child(device_t dev, device_t child)
3695 {
3696
3697 DEVICE_RESUME(child);
3698 child->flags &= ~DF_SUSPENDED;
3699
3700 return (0);
3701 }
3702
3703 /**
3704 * @brief Helper function for implementing DEVICE_SUSPEND()
3705 *
3706 * This function can be used to help implement the DEVICE_SUSPEND()
3707 * for a bus. It calls DEVICE_SUSPEND() for each of the device's
3708 * children. If any call to DEVICE_SUSPEND() fails, the suspend
3709 * operation is aborted and any devices which were suspended are
3710 * resumed immediately by calling their DEVICE_RESUME() methods.
3711 */
3712 int
bus_generic_suspend(device_t dev)3713 bus_generic_suspend(device_t dev)
3714 {
3715 int error;
3716 device_t child, child2;
3717
3718 TAILQ_FOREACH(child, &dev->children, link) {
3719 error = BUS_SUSPEND_CHILD(dev, child);
3720 if (error) {
3721 for (child2 = TAILQ_FIRST(&dev->children);
3722 child2 && child2 != child;
3723 child2 = TAILQ_NEXT(child2, link))
3724 BUS_RESUME_CHILD(dev, child2);
3725 return (error);
3726 }
3727 }
3728 return (0);
3729 }
3730
3731 /**
3732 * @brief Helper function for implementing DEVICE_RESUME()
3733 *
3734 * This function can be used to help implement the DEVICE_RESUME() for
3735 * a bus. It calls DEVICE_RESUME() on each of the device's children.
3736 */
3737 int
bus_generic_resume(device_t dev)3738 bus_generic_resume(device_t dev)
3739 {
3740 device_t child;
3741
3742 TAILQ_FOREACH(child, &dev->children, link) {
3743 BUS_RESUME_CHILD(dev, child);
3744 /* if resume fails, there's nothing we can usefully do... */
3745 }
3746 return (0);
3747 }
3748
3749 /**
3750 * @brief Helper function for implementing BUS_PRINT_CHILD().
3751 *
3752 * This function prints the first part of the ascii representation of
3753 * @p child, including its name, unit and description (if any - see
3754 * device_set_desc()).
3755 *
3756 * @returns the number of characters printed
3757 */
3758 int
bus_print_child_header(device_t dev,device_t child)3759 bus_print_child_header(device_t dev, device_t child)
3760 {
3761 int retval = 0;
3762
3763 if (device_get_desc(child)) {
3764 retval += device_printf(child, "<%s>", device_get_desc(child));
3765 } else {
3766 retval += printf("%s", device_get_nameunit(child));
3767 }
3768
3769 return (retval);
3770 }
3771
3772 /**
3773 * @brief Helper function for implementing BUS_PRINT_CHILD().
3774 *
3775 * This function prints the last part of the ascii representation of
3776 * @p child, which consists of the string @c " on " followed by the
3777 * name and unit of the @p dev.
3778 *
3779 * @returns the number of characters printed
3780 */
3781 int
bus_print_child_footer(device_t dev,device_t child)3782 bus_print_child_footer(device_t dev, device_t child)
3783 {
3784 return (printf(" on %s\n", device_get_nameunit(dev)));
3785 }
3786
3787 /**
3788 * @brief Helper function for implementing BUS_PRINT_CHILD().
3789 *
3790 * This function prints out the VM domain for the given device.
3791 *
3792 * @returns the number of characters printed
3793 */
3794 int
bus_print_child_domain(device_t dev,device_t child)3795 bus_print_child_domain(device_t dev, device_t child)
3796 {
3797 int domain;
3798
3799 /* No domain? Don't print anything */
3800 if (BUS_GET_DOMAIN(dev, child, &domain) != 0)
3801 return (0);
3802
3803 return (printf(" numa-domain %d", domain));
3804 }
3805
3806 /**
3807 * @brief Helper function for implementing BUS_PRINT_CHILD().
3808 *
3809 * This function simply calls bus_print_child_header() followed by
3810 * bus_print_child_footer().
3811 *
3812 * @returns the number of characters printed
3813 */
3814 int
bus_generic_print_child(device_t dev,device_t child)3815 bus_generic_print_child(device_t dev, device_t child)
3816 {
3817 int retval = 0;
3818
3819 retval += bus_print_child_header(dev, child);
3820 retval += bus_print_child_domain(dev, child);
3821 retval += bus_print_child_footer(dev, child);
3822
3823 return (retval);
3824 }
3825
3826 /**
3827 * @brief Stub function for implementing BUS_READ_IVAR().
3828 *
3829 * @returns ENOENT
3830 */
3831 int
bus_generic_read_ivar(device_t dev,device_t child,int index,uintptr_t * result)3832 bus_generic_read_ivar(device_t dev, device_t child, int index,
3833 uintptr_t * result)
3834 {
3835 return (ENOENT);
3836 }
3837
3838 /**
3839 * @brief Stub function for implementing BUS_WRITE_IVAR().
3840 *
3841 * @returns ENOENT
3842 */
3843 int
bus_generic_write_ivar(device_t dev,device_t child,int index,uintptr_t value)3844 bus_generic_write_ivar(device_t dev, device_t child, int index,
3845 uintptr_t value)
3846 {
3847 return (ENOENT);
3848 }
3849
3850 /**
3851 * @brief Stub function for implementing BUS_GET_RESOURCE_LIST().
3852 *
3853 * @returns NULL
3854 */
3855 struct resource_list *
bus_generic_get_resource_list(device_t dev,device_t child)3856 bus_generic_get_resource_list(device_t dev, device_t child)
3857 {
3858 return (NULL);
3859 }
3860
3861 /**
3862 * @brief Helper function for implementing BUS_DRIVER_ADDED().
3863 *
3864 * This implementation of BUS_DRIVER_ADDED() simply calls the driver's
3865 * DEVICE_IDENTIFY() method to allow it to add new children to the bus
3866 * and then calls device_probe_and_attach() for each unattached child.
3867 */
3868 void
bus_generic_driver_added(device_t dev,driver_t * driver)3869 bus_generic_driver_added(device_t dev, driver_t *driver)
3870 {
3871 device_t child;
3872
3873 DEVICE_IDENTIFY(driver, dev);
3874 TAILQ_FOREACH(child, &dev->children, link) {
3875 if (child->state == DS_NOTPRESENT ||
3876 (child->flags & DF_REBID))
3877 device_probe_and_attach(child);
3878 }
3879 }
3880
3881 /**
3882 * @brief Helper function for implementing BUS_NEW_PASS().
3883 *
3884 * This implementing of BUS_NEW_PASS() first calls the identify
3885 * routines for any drivers that probe at the current pass. Then it
3886 * walks the list of devices for this bus. If a device is already
3887 * attached, then it calls BUS_NEW_PASS() on that device. If the
3888 * device is not already attached, it attempts to attach a driver to
3889 * it.
3890 */
3891 void
bus_generic_new_pass(device_t dev)3892 bus_generic_new_pass(device_t dev)
3893 {
3894 driverlink_t dl;
3895 devclass_t dc;
3896 device_t child;
3897
3898 dc = dev->devclass;
3899 TAILQ_FOREACH(dl, &dc->drivers, link) {
3900 if (dl->pass == bus_current_pass)
3901 DEVICE_IDENTIFY(dl->driver, dev);
3902 }
3903 TAILQ_FOREACH(child, &dev->children, link) {
3904 if (child->state >= DS_ATTACHED)
3905 BUS_NEW_PASS(child);
3906 else if (child->state == DS_NOTPRESENT)
3907 device_probe_and_attach(child);
3908 }
3909 }
3910
3911 /**
3912 * @brief Helper function for implementing BUS_SETUP_INTR().
3913 *
3914 * This simple implementation of BUS_SETUP_INTR() simply calls the
3915 * BUS_SETUP_INTR() method of the parent of @p dev.
3916 */
3917 int
bus_generic_setup_intr(device_t dev,device_t child,struct resource * irq,int flags,driver_filter_t * filter,driver_intr_t * intr,void * arg,void ** cookiep)3918 bus_generic_setup_intr(device_t dev, device_t child, struct resource *irq,
3919 int flags, driver_filter_t *filter, driver_intr_t *intr, void *arg,
3920 void **cookiep)
3921 {
3922 /* Propagate up the bus hierarchy until someone handles it. */
3923 if (dev->parent)
3924 return (BUS_SETUP_INTR(dev->parent, child, irq, flags,
3925 filter, intr, arg, cookiep));
3926 return (EINVAL);
3927 }
3928
3929 /**
3930 * @brief Helper function for implementing BUS_TEARDOWN_INTR().
3931 *
3932 * This simple implementation of BUS_TEARDOWN_INTR() simply calls the
3933 * BUS_TEARDOWN_INTR() method of the parent of @p dev.
3934 */
3935 int
bus_generic_teardown_intr(device_t dev,device_t child,struct resource * irq,void * cookie)3936 bus_generic_teardown_intr(device_t dev, device_t child, struct resource *irq,
3937 void *cookie)
3938 {
3939 /* Propagate up the bus hierarchy until someone handles it. */
3940 if (dev->parent)
3941 return (BUS_TEARDOWN_INTR(dev->parent, child, irq, cookie));
3942 return (EINVAL);
3943 }
3944
3945 /**
3946 * @brief Helper function for implementing BUS_ADJUST_RESOURCE().
3947 *
3948 * This simple implementation of BUS_ADJUST_RESOURCE() simply calls the
3949 * BUS_ADJUST_RESOURCE() method of the parent of @p dev.
3950 */
3951 int
bus_generic_adjust_resource(device_t dev,device_t child,int type,struct resource * r,u_long start,u_long end)3952 bus_generic_adjust_resource(device_t dev, device_t child, int type,
3953 struct resource *r, u_long start, u_long end)
3954 {
3955 /* Propagate up the bus hierarchy until someone handles it. */
3956 if (dev->parent)
3957 return (BUS_ADJUST_RESOURCE(dev->parent, child, type, r, start,
3958 end));
3959 return (EINVAL);
3960 }
3961
3962 /**
3963 * @brief Helper function for implementing BUS_ALLOC_RESOURCE().
3964 *
3965 * This simple implementation of BUS_ALLOC_RESOURCE() simply calls the
3966 * BUS_ALLOC_RESOURCE() method of the parent of @p dev.
3967 */
3968 struct resource *
bus_generic_alloc_resource(device_t dev,device_t child,int type,int * rid,u_long start,u_long end,u_long count,u_int flags)3969 bus_generic_alloc_resource(device_t dev, device_t child, int type, int *rid,
3970 u_long start, u_long end, u_long count, u_int flags)
3971 {
3972 /* Propagate up the bus hierarchy until someone handles it. */
3973 if (dev->parent)
3974 return (BUS_ALLOC_RESOURCE(dev->parent, child, type, rid,
3975 start, end, count, flags));
3976 return (NULL);
3977 }
3978
3979 /**
3980 * @brief Helper function for implementing BUS_RELEASE_RESOURCE().
3981 *
3982 * This simple implementation of BUS_RELEASE_RESOURCE() simply calls the
3983 * BUS_RELEASE_RESOURCE() method of the parent of @p dev.
3984 */
3985 int
bus_generic_release_resource(device_t dev,device_t child,int type,int rid,struct resource * r)3986 bus_generic_release_resource(device_t dev, device_t child, int type, int rid,
3987 struct resource *r)
3988 {
3989 /* Propagate up the bus hierarchy until someone handles it. */
3990 if (dev->parent)
3991 return (BUS_RELEASE_RESOURCE(dev->parent, child, type, rid,
3992 r));
3993 return (EINVAL);
3994 }
3995
3996 /**
3997 * @brief Helper function for implementing BUS_ACTIVATE_RESOURCE().
3998 *
3999 * This simple implementation of BUS_ACTIVATE_RESOURCE() simply calls the
4000 * BUS_ACTIVATE_RESOURCE() method of the parent of @p dev.
4001 */
4002 int
bus_generic_activate_resource(device_t dev,device_t child,int type,int rid,struct resource * r)4003 bus_generic_activate_resource(device_t dev, device_t child, int type, int rid,
4004 struct resource *r)
4005 {
4006 /* Propagate up the bus hierarchy until someone handles it. */
4007 if (dev->parent)
4008 return (BUS_ACTIVATE_RESOURCE(dev->parent, child, type, rid,
4009 r));
4010 return (EINVAL);
4011 }
4012
4013 /**
4014 * @brief Helper function for implementing BUS_DEACTIVATE_RESOURCE().
4015 *
4016 * This simple implementation of BUS_DEACTIVATE_RESOURCE() simply calls the
4017 * BUS_DEACTIVATE_RESOURCE() method of the parent of @p dev.
4018 */
4019 int
bus_generic_deactivate_resource(device_t dev,device_t child,int type,int rid,struct resource * r)4020 bus_generic_deactivate_resource(device_t dev, device_t child, int type,
4021 int rid, struct resource *r)
4022 {
4023 /* Propagate up the bus hierarchy until someone handles it. */
4024 if (dev->parent)
4025 return (BUS_DEACTIVATE_RESOURCE(dev->parent, child, type, rid,
4026 r));
4027 return (EINVAL);
4028 }
4029
4030 /**
4031 * @brief Helper function for implementing BUS_BIND_INTR().
4032 *
4033 * This simple implementation of BUS_BIND_INTR() simply calls the
4034 * BUS_BIND_INTR() method of the parent of @p dev.
4035 */
4036 int
bus_generic_bind_intr(device_t dev,device_t child,struct resource * irq,int cpu)4037 bus_generic_bind_intr(device_t dev, device_t child, struct resource *irq,
4038 int cpu)
4039 {
4040
4041 /* Propagate up the bus hierarchy until someone handles it. */
4042 if (dev->parent)
4043 return (BUS_BIND_INTR(dev->parent, child, irq, cpu));
4044 return (EINVAL);
4045 }
4046
4047 /**
4048 * @brief Helper function for implementing BUS_CONFIG_INTR().
4049 *
4050 * This simple implementation of BUS_CONFIG_INTR() simply calls the
4051 * BUS_CONFIG_INTR() method of the parent of @p dev.
4052 */
4053 int
bus_generic_config_intr(device_t dev,int irq,enum intr_trigger trig,enum intr_polarity pol)4054 bus_generic_config_intr(device_t dev, int irq, enum intr_trigger trig,
4055 enum intr_polarity pol)
4056 {
4057
4058 /* Propagate up the bus hierarchy until someone handles it. */
4059 if (dev->parent)
4060 return (BUS_CONFIG_INTR(dev->parent, irq, trig, pol));
4061 return (EINVAL);
4062 }
4063
4064 /**
4065 * @brief Helper function for implementing BUS_DESCRIBE_INTR().
4066 *
4067 * This simple implementation of BUS_DESCRIBE_INTR() simply calls the
4068 * BUS_DESCRIBE_INTR() method of the parent of @p dev.
4069 */
4070 int
bus_generic_describe_intr(device_t dev,device_t child,struct resource * irq,void * cookie,const char * descr)4071 bus_generic_describe_intr(device_t dev, device_t child, struct resource *irq,
4072 void *cookie, const char *descr)
4073 {
4074
4075 /* Propagate up the bus hierarchy until someone handles it. */
4076 if (dev->parent)
4077 return (BUS_DESCRIBE_INTR(dev->parent, child, irq, cookie,
4078 descr));
4079 return (EINVAL);
4080 }
4081
4082 /**
4083 * @brief Helper function for implementing BUS_GET_CPUS().
4084 *
4085 * This simple implementation of BUS_GET_CPUS() simply calls the
4086 * BUS_GET_CPUS() method of the parent of @p dev.
4087 */
4088 int
bus_generic_get_cpus(device_t dev,device_t child,enum cpu_sets op,cpuset_t * cpuset)4089 bus_generic_get_cpus(device_t dev, device_t child, enum cpu_sets op,
4090 cpuset_t *cpuset)
4091 {
4092
4093 /* Propagate up the bus hierarchy until someone handles it. */
4094 if (dev->parent != NULL)
4095 return (BUS_GET_CPUS(dev->parent, child, op, cpuset));
4096 return (EINVAL);
4097 }
4098
4099 /**
4100 * @brief Helper function for implementing BUS_GET_DMA_TAG().
4101 *
4102 * This simple implementation of BUS_GET_DMA_TAG() simply calls the
4103 * BUS_GET_DMA_TAG() method of the parent of @p dev.
4104 */
4105 bus_dma_tag_t
bus_generic_get_dma_tag(device_t dev,device_t child)4106 bus_generic_get_dma_tag(device_t dev, device_t child)
4107 {
4108
4109 /* Propagate up the bus hierarchy until someone handles it. */
4110 if (dev->parent != NULL)
4111 return (BUS_GET_DMA_TAG(dev->parent, child));
4112 return (NULL);
4113 }
4114
4115 /**
4116 * @brief Helper function for implementing BUS_GET_RESOURCE().
4117 *
4118 * This implementation of BUS_GET_RESOURCE() uses the
4119 * resource_list_find() function to do most of the work. It calls
4120 * BUS_GET_RESOURCE_LIST() to find a suitable resource list to
4121 * search.
4122 */
4123 int
bus_generic_rl_get_resource(device_t dev,device_t child,int type,int rid,u_long * startp,u_long * countp)4124 bus_generic_rl_get_resource(device_t dev, device_t child, int type, int rid,
4125 u_long *startp, u_long *countp)
4126 {
4127 struct resource_list * rl = NULL;
4128 struct resource_list_entry * rle = NULL;
4129
4130 rl = BUS_GET_RESOURCE_LIST(dev, child);
4131 if (!rl)
4132 return (EINVAL);
4133
4134 rle = resource_list_find(rl, type, rid);
4135 if (!rle)
4136 return (ENOENT);
4137
4138 if (startp)
4139 *startp = rle->start;
4140 if (countp)
4141 *countp = rle->count;
4142
4143 return (0);
4144 }
4145
4146 /**
4147 * @brief Helper function for implementing BUS_SET_RESOURCE().
4148 *
4149 * This implementation of BUS_SET_RESOURCE() uses the
4150 * resource_list_add() function to do most of the work. It calls
4151 * BUS_GET_RESOURCE_LIST() to find a suitable resource list to
4152 * edit.
4153 */
4154 int
bus_generic_rl_set_resource(device_t dev,device_t child,int type,int rid,u_long start,u_long count)4155 bus_generic_rl_set_resource(device_t dev, device_t child, int type, int rid,
4156 u_long start, u_long count)
4157 {
4158 struct resource_list * rl = NULL;
4159
4160 rl = BUS_GET_RESOURCE_LIST(dev, child);
4161 if (!rl)
4162 return (EINVAL);
4163
4164 resource_list_add(rl, type, rid, start, (start + count - 1), count);
4165
4166 return (0);
4167 }
4168
4169 /**
4170 * @brief Helper function for implementing BUS_DELETE_RESOURCE().
4171 *
4172 * This implementation of BUS_DELETE_RESOURCE() uses the
4173 * resource_list_delete() function to do most of the work. It calls
4174 * BUS_GET_RESOURCE_LIST() to find a suitable resource list to
4175 * edit.
4176 */
4177 void
bus_generic_rl_delete_resource(device_t dev,device_t child,int type,int rid)4178 bus_generic_rl_delete_resource(device_t dev, device_t child, int type, int rid)
4179 {
4180 struct resource_list * rl = NULL;
4181
4182 rl = BUS_GET_RESOURCE_LIST(dev, child);
4183 if (!rl)
4184 return;
4185
4186 resource_list_delete(rl, type, rid);
4187
4188 return;
4189 }
4190
4191 /**
4192 * @brief Helper function for implementing BUS_RELEASE_RESOURCE().
4193 *
4194 * This implementation of BUS_RELEASE_RESOURCE() uses the
4195 * resource_list_release() function to do most of the work. It calls
4196 * BUS_GET_RESOURCE_LIST() to find a suitable resource list.
4197 */
4198 int
bus_generic_rl_release_resource(device_t dev,device_t child,int type,int rid,struct resource * r)4199 bus_generic_rl_release_resource(device_t dev, device_t child, int type,
4200 int rid, struct resource *r)
4201 {
4202 struct resource_list * rl = NULL;
4203
4204 if (device_get_parent(child) != dev)
4205 return (BUS_RELEASE_RESOURCE(device_get_parent(dev), child,
4206 type, rid, r));
4207
4208 rl = BUS_GET_RESOURCE_LIST(dev, child);
4209 if (!rl)
4210 return (EINVAL);
4211
4212 return (resource_list_release(rl, dev, child, type, rid, r));
4213 }
4214
4215 /**
4216 * @brief Helper function for implementing BUS_ALLOC_RESOURCE().
4217 *
4218 * This implementation of BUS_ALLOC_RESOURCE() uses the
4219 * resource_list_alloc() function to do most of the work. It calls
4220 * BUS_GET_RESOURCE_LIST() to find a suitable resource list.
4221 */
4222 struct resource *
bus_generic_rl_alloc_resource(device_t dev,device_t child,int type,int * rid,u_long start,u_long end,u_long count,u_int flags)4223 bus_generic_rl_alloc_resource(device_t dev, device_t child, int type,
4224 int *rid, u_long start, u_long end, u_long count, u_int flags)
4225 {
4226 struct resource_list * rl = NULL;
4227
4228 if (device_get_parent(child) != dev)
4229 return (BUS_ALLOC_RESOURCE(device_get_parent(dev), child,
4230 type, rid, start, end, count, flags));
4231
4232 rl = BUS_GET_RESOURCE_LIST(dev, child);
4233 if (!rl)
4234 return (NULL);
4235
4236 return (resource_list_alloc(rl, dev, child, type, rid,
4237 start, end, count, flags));
4238 }
4239
4240 /**
4241 * @brief Helper function for implementing BUS_CHILD_PRESENT().
4242 *
4243 * This simple implementation of BUS_CHILD_PRESENT() simply calls the
4244 * BUS_CHILD_PRESENT() method of the parent of @p dev.
4245 */
4246 int
bus_generic_child_present(device_t dev,device_t child)4247 bus_generic_child_present(device_t dev, device_t child)
4248 {
4249 return (BUS_CHILD_PRESENT(device_get_parent(dev), dev));
4250 }
4251
4252 int
bus_generic_get_domain(device_t dev,device_t child,int * domain)4253 bus_generic_get_domain(device_t dev, device_t child, int *domain)
4254 {
4255
4256 if (dev->parent)
4257 return (BUS_GET_DOMAIN(dev->parent, dev, domain));
4258
4259 return (ENOENT);
4260 }
4261
4262 /*
4263 * Some convenience functions to make it easier for drivers to use the
4264 * resource-management functions. All these really do is hide the
4265 * indirection through the parent's method table, making for slightly
4266 * less-wordy code. In the future, it might make sense for this code
4267 * to maintain some sort of a list of resources allocated by each device.
4268 */
4269
4270 int
bus_alloc_resources(device_t dev,struct resource_spec * rs,struct resource ** res)4271 bus_alloc_resources(device_t dev, struct resource_spec *rs,
4272 struct resource **res)
4273 {
4274 int i;
4275
4276 for (i = 0; rs[i].type != -1; i++)
4277 res[i] = NULL;
4278 for (i = 0; rs[i].type != -1; i++) {
4279 res[i] = bus_alloc_resource_any(dev,
4280 rs[i].type, &rs[i].rid, rs[i].flags);
4281 if (res[i] == NULL && !(rs[i].flags & RF_OPTIONAL)) {
4282 bus_release_resources(dev, rs, res);
4283 return (ENXIO);
4284 }
4285 }
4286 return (0);
4287 }
4288
4289 void
bus_release_resources(device_t dev,const struct resource_spec * rs,struct resource ** res)4290 bus_release_resources(device_t dev, const struct resource_spec *rs,
4291 struct resource **res)
4292 {
4293 int i;
4294
4295 for (i = 0; rs[i].type != -1; i++)
4296 if (res[i] != NULL) {
4297 bus_release_resource(
4298 dev, rs[i].type, rs[i].rid, res[i]);
4299 res[i] = NULL;
4300 }
4301 }
4302
4303 /**
4304 * @brief Wrapper function for BUS_ALLOC_RESOURCE().
4305 *
4306 * This function simply calls the BUS_ALLOC_RESOURCE() method of the
4307 * parent of @p dev.
4308 */
4309 struct resource *
bus_alloc_resource(device_t dev,int type,int * rid,u_long start,u_long end,u_long count,u_int flags)4310 bus_alloc_resource(device_t dev, int type, int *rid, u_long start, u_long end,
4311 u_long count, u_int flags)
4312 {
4313 if (dev->parent == NULL)
4314 return (NULL);
4315 return (BUS_ALLOC_RESOURCE(dev->parent, dev, type, rid, start, end,
4316 count, flags));
4317 }
4318
4319 /**
4320 * @brief Wrapper function for BUS_ADJUST_RESOURCE().
4321 *
4322 * This function simply calls the BUS_ADJUST_RESOURCE() method of the
4323 * parent of @p dev.
4324 */
4325 int
bus_adjust_resource(device_t dev,int type,struct resource * r,u_long start,u_long end)4326 bus_adjust_resource(device_t dev, int type, struct resource *r, u_long start,
4327 u_long end)
4328 {
4329 if (dev->parent == NULL)
4330 return (EINVAL);
4331 return (BUS_ADJUST_RESOURCE(dev->parent, dev, type, r, start, end));
4332 }
4333
4334 /**
4335 * @brief Wrapper function for BUS_ACTIVATE_RESOURCE().
4336 *
4337 * This function simply calls the BUS_ACTIVATE_RESOURCE() method of the
4338 * parent of @p dev.
4339 */
4340 int
bus_activate_resource(device_t dev,int type,int rid,struct resource * r)4341 bus_activate_resource(device_t dev, int type, int rid, struct resource *r)
4342 {
4343 if (dev->parent == NULL)
4344 return (EINVAL);
4345 return (BUS_ACTIVATE_RESOURCE(dev->parent, dev, type, rid, r));
4346 }
4347
4348 /**
4349 * @brief Wrapper function for BUS_DEACTIVATE_RESOURCE().
4350 *
4351 * This function simply calls the BUS_DEACTIVATE_RESOURCE() method of the
4352 * parent of @p dev.
4353 */
4354 int
bus_deactivate_resource(device_t dev,int type,int rid,struct resource * r)4355 bus_deactivate_resource(device_t dev, int type, int rid, struct resource *r)
4356 {
4357 if (dev->parent == NULL)
4358 return (EINVAL);
4359 return (BUS_DEACTIVATE_RESOURCE(dev->parent, dev, type, rid, r));
4360 }
4361
4362 /**
4363 * @brief Wrapper function for BUS_RELEASE_RESOURCE().
4364 *
4365 * This function simply calls the BUS_RELEASE_RESOURCE() method of the
4366 * parent of @p dev.
4367 */
4368 int
bus_release_resource(device_t dev,int type,int rid,struct resource * r)4369 bus_release_resource(device_t dev, int type, int rid, struct resource *r)
4370 {
4371 if (dev->parent == NULL)
4372 return (EINVAL);
4373 return (BUS_RELEASE_RESOURCE(dev->parent, dev, type, rid, r));
4374 }
4375
4376 /**
4377 * @brief Wrapper function for BUS_SETUP_INTR().
4378 *
4379 * This function simply calls the BUS_SETUP_INTR() method of the
4380 * parent of @p dev.
4381 */
4382 int
bus_setup_intr(device_t dev,struct resource * r,int flags,driver_filter_t filter,driver_intr_t handler,void * arg,void ** cookiep)4383 bus_setup_intr(device_t dev, struct resource *r, int flags,
4384 driver_filter_t filter, driver_intr_t handler, void *arg, void **cookiep)
4385 {
4386 int error;
4387
4388 if (dev->parent == NULL)
4389 return (EINVAL);
4390 error = BUS_SETUP_INTR(dev->parent, dev, r, flags, filter, handler,
4391 arg, cookiep);
4392 if (error != 0)
4393 return (error);
4394 if (handler != NULL && !(flags & INTR_MPSAFE))
4395 device_printf(dev, "[GIANT-LOCKED]\n");
4396 return (0);
4397 }
4398
4399 /**
4400 * @brief Wrapper function for BUS_TEARDOWN_INTR().
4401 *
4402 * This function simply calls the BUS_TEARDOWN_INTR() method of the
4403 * parent of @p dev.
4404 */
4405 int
bus_teardown_intr(device_t dev,struct resource * r,void * cookie)4406 bus_teardown_intr(device_t dev, struct resource *r, void *cookie)
4407 {
4408 if (dev->parent == NULL)
4409 return (EINVAL);
4410 return (BUS_TEARDOWN_INTR(dev->parent, dev, r, cookie));
4411 }
4412
4413 /**
4414 * @brief Wrapper function for BUS_BIND_INTR().
4415 *
4416 * This function simply calls the BUS_BIND_INTR() method of the
4417 * parent of @p dev.
4418 */
4419 int
bus_bind_intr(device_t dev,struct resource * r,int cpu)4420 bus_bind_intr(device_t dev, struct resource *r, int cpu)
4421 {
4422 if (dev->parent == NULL)
4423 return (EINVAL);
4424 return (BUS_BIND_INTR(dev->parent, dev, r, cpu));
4425 }
4426
4427 /**
4428 * @brief Wrapper function for BUS_DESCRIBE_INTR().
4429 *
4430 * This function first formats the requested description into a
4431 * temporary buffer and then calls the BUS_DESCRIBE_INTR() method of
4432 * the parent of @p dev.
4433 */
4434 int
bus_describe_intr(device_t dev,struct resource * irq,void * cookie,const char * fmt,...)4435 bus_describe_intr(device_t dev, struct resource *irq, void *cookie,
4436 const char *fmt, ...)
4437 {
4438 va_list ap;
4439 char descr[MAXCOMLEN + 1];
4440
4441 if (dev->parent == NULL)
4442 return (EINVAL);
4443 va_start(ap, fmt);
4444 vsnprintf(descr, sizeof(descr), fmt, ap);
4445 va_end(ap);
4446 return (BUS_DESCRIBE_INTR(dev->parent, dev, irq, cookie, descr));
4447 }
4448
4449 /**
4450 * @brief Wrapper function for BUS_SET_RESOURCE().
4451 *
4452 * This function simply calls the BUS_SET_RESOURCE() method of the
4453 * parent of @p dev.
4454 */
4455 int
bus_set_resource(device_t dev,int type,int rid,u_long start,u_long count)4456 bus_set_resource(device_t dev, int type, int rid,
4457 u_long start, u_long count)
4458 {
4459 return (BUS_SET_RESOURCE(device_get_parent(dev), dev, type, rid,
4460 start, count));
4461 }
4462
4463 /**
4464 * @brief Wrapper function for BUS_GET_RESOURCE().
4465 *
4466 * This function simply calls the BUS_GET_RESOURCE() method of the
4467 * parent of @p dev.
4468 */
4469 int
bus_get_resource(device_t dev,int type,int rid,u_long * startp,u_long * countp)4470 bus_get_resource(device_t dev, int type, int rid,
4471 u_long *startp, u_long *countp)
4472 {
4473 return (BUS_GET_RESOURCE(device_get_parent(dev), dev, type, rid,
4474 startp, countp));
4475 }
4476
4477 /**
4478 * @brief Wrapper function for BUS_GET_RESOURCE().
4479 *
4480 * This function simply calls the BUS_GET_RESOURCE() method of the
4481 * parent of @p dev and returns the start value.
4482 */
4483 u_long
bus_get_resource_start(device_t dev,int type,int rid)4484 bus_get_resource_start(device_t dev, int type, int rid)
4485 {
4486 u_long start, count;
4487 int error;
4488
4489 error = BUS_GET_RESOURCE(device_get_parent(dev), dev, type, rid,
4490 &start, &count);
4491 if (error)
4492 return (0);
4493 return (start);
4494 }
4495
4496 /**
4497 * @brief Wrapper function for BUS_GET_RESOURCE().
4498 *
4499 * This function simply calls the BUS_GET_RESOURCE() method of the
4500 * parent of @p dev and returns the count value.
4501 */
4502 u_long
bus_get_resource_count(device_t dev,int type,int rid)4503 bus_get_resource_count(device_t dev, int type, int rid)
4504 {
4505 u_long start, count;
4506 int error;
4507
4508 error = BUS_GET_RESOURCE(device_get_parent(dev), dev, type, rid,
4509 &start, &count);
4510 if (error)
4511 return (0);
4512 return (count);
4513 }
4514
4515 /**
4516 * @brief Wrapper function for BUS_DELETE_RESOURCE().
4517 *
4518 * This function simply calls the BUS_DELETE_RESOURCE() method of the
4519 * parent of @p dev.
4520 */
4521 void
bus_delete_resource(device_t dev,int type,int rid)4522 bus_delete_resource(device_t dev, int type, int rid)
4523 {
4524 BUS_DELETE_RESOURCE(device_get_parent(dev), dev, type, rid);
4525 }
4526
4527 /**
4528 * @brief Wrapper function for BUS_CHILD_PRESENT().
4529 *
4530 * This function simply calls the BUS_CHILD_PRESENT() method of the
4531 * parent of @p dev.
4532 */
4533 int
bus_child_present(device_t child)4534 bus_child_present(device_t child)
4535 {
4536 return (BUS_CHILD_PRESENT(device_get_parent(child), child));
4537 }
4538
4539 /**
4540 * @brief Wrapper function for BUS_CHILD_PNPINFO_STR().
4541 *
4542 * This function simply calls the BUS_CHILD_PNPINFO_STR() method of the
4543 * parent of @p dev.
4544 */
4545 int
bus_child_pnpinfo_str(device_t child,char * buf,size_t buflen)4546 bus_child_pnpinfo_str(device_t child, char *buf, size_t buflen)
4547 {
4548 device_t parent;
4549
4550 parent = device_get_parent(child);
4551 if (parent == NULL) {
4552 *buf = '\0';
4553 return (0);
4554 }
4555 return (BUS_CHILD_PNPINFO_STR(parent, child, buf, buflen));
4556 }
4557
4558 /**
4559 * @brief Wrapper function for BUS_CHILD_LOCATION_STR().
4560 *
4561 * This function simply calls the BUS_CHILD_LOCATION_STR() method of the
4562 * parent of @p dev.
4563 */
4564 int
bus_child_location_str(device_t child,char * buf,size_t buflen)4565 bus_child_location_str(device_t child, char *buf, size_t buflen)
4566 {
4567 device_t parent;
4568
4569 parent = device_get_parent(child);
4570 if (parent == NULL) {
4571 *buf = '\0';
4572 return (0);
4573 }
4574 return (BUS_CHILD_LOCATION_STR(parent, child, buf, buflen));
4575 }
4576
4577 /**
4578 * @brief Wrapper function for BUS_GET_CPUS().
4579 *
4580 * This function simply calls the BUS_GET_CPUS() method of the
4581 * parent of @p dev.
4582 */
4583 int
bus_get_cpus(device_t dev,enum cpu_sets op,cpuset_t * cpuset)4584 bus_get_cpus(device_t dev, enum cpu_sets op, cpuset_t *cpuset)
4585 {
4586 device_t parent;
4587
4588 parent = device_get_parent(dev);
4589 if (parent == NULL)
4590 return (EINVAL);
4591 return (BUS_GET_CPUS(parent, dev, op, cpuset));
4592 }
4593
4594 /**
4595 * @brief Wrapper function for BUS_GET_DMA_TAG().
4596 *
4597 * This function simply calls the BUS_GET_DMA_TAG() method of the
4598 * parent of @p dev.
4599 */
4600 bus_dma_tag_t
bus_get_dma_tag(device_t dev)4601 bus_get_dma_tag(device_t dev)
4602 {
4603 device_t parent;
4604
4605 parent = device_get_parent(dev);
4606 if (parent == NULL)
4607 return (NULL);
4608 return (BUS_GET_DMA_TAG(parent, dev));
4609 }
4610
4611 /**
4612 * @brief Wrapper function for BUS_GET_DOMAIN().
4613 *
4614 * This function simply calls the BUS_GET_DOMAIN() method of the
4615 * parent of @p dev.
4616 */
4617 int
bus_get_domain(device_t dev,int * domain)4618 bus_get_domain(device_t dev, int *domain)
4619 {
4620 return (BUS_GET_DOMAIN(device_get_parent(dev), dev, domain));
4621 }
4622
4623 /* Resume all devices and then notify userland that we're up again. */
4624 static int
root_resume(device_t dev)4625 root_resume(device_t dev)
4626 {
4627 int error;
4628
4629 error = bus_generic_resume(dev);
4630 if (error == 0)
4631 devctl_notify("kern", "power", "resume", NULL);
4632 return (error);
4633 }
4634
4635 static int
root_print_child(device_t dev,device_t child)4636 root_print_child(device_t dev, device_t child)
4637 {
4638 int retval = 0;
4639
4640 retval += bus_print_child_header(dev, child);
4641 retval += printf("\n");
4642
4643 return (retval);
4644 }
4645
4646 static int
root_setup_intr(device_t dev,device_t child,struct resource * irq,int flags,driver_filter_t * filter,driver_intr_t * intr,void * arg,void ** cookiep)4647 root_setup_intr(device_t dev, device_t child, struct resource *irq, int flags,
4648 driver_filter_t *filter, driver_intr_t *intr, void *arg, void **cookiep)
4649 {
4650 /*
4651 * If an interrupt mapping gets to here something bad has happened.
4652 */
4653 panic("root_setup_intr");
4654 }
4655
4656 /*
4657 * If we get here, assume that the device is permanant and really is
4658 * present in the system. Removable bus drivers are expected to intercept
4659 * this call long before it gets here. We return -1 so that drivers that
4660 * really care can check vs -1 or some ERRNO returned higher in the food
4661 * chain.
4662 */
4663 static int
root_child_present(device_t dev,device_t child)4664 root_child_present(device_t dev, device_t child)
4665 {
4666 return (-1);
4667 }
4668
4669 static int
root_get_cpus(device_t dev,device_t child,enum cpu_sets op,cpuset_t * cpuset)4670 root_get_cpus(device_t dev, device_t child, enum cpu_sets op, cpuset_t *cpuset)
4671 {
4672
4673 switch (op) {
4674 case INTR_CPUS:
4675 /* Default to returning the set of all CPUs. */
4676 *cpuset = all_cpus;
4677 return (0);
4678 default:
4679 return (EINVAL);
4680 }
4681 }
4682
4683 static kobj_method_t root_methods[] = {
4684 /* Device interface */
4685 KOBJMETHOD(device_shutdown, bus_generic_shutdown),
4686 KOBJMETHOD(device_suspend, bus_generic_suspend),
4687 KOBJMETHOD(device_resume, root_resume),
4688
4689 /* Bus interface */
4690 KOBJMETHOD(bus_print_child, root_print_child),
4691 KOBJMETHOD(bus_read_ivar, bus_generic_read_ivar),
4692 KOBJMETHOD(bus_write_ivar, bus_generic_write_ivar),
4693 KOBJMETHOD(bus_setup_intr, root_setup_intr),
4694 KOBJMETHOD(bus_child_present, root_child_present),
4695 KOBJMETHOD(bus_get_cpus, root_get_cpus),
4696
4697 KOBJMETHOD_END
4698 };
4699
4700 static driver_t root_driver = {
4701 "root",
4702 root_methods,
4703 1, /* no softc */
4704 };
4705
4706 device_t root_bus;
4707 devclass_t root_devclass;
4708
4709 static int
root_bus_module_handler(module_t mod,int what,void * arg)4710 root_bus_module_handler(module_t mod, int what, void* arg)
4711 {
4712 switch (what) {
4713 case MOD_LOAD:
4714 TAILQ_INIT(&bus_data_devices);
4715 kobj_class_compile((kobj_class_t) &root_driver);
4716 root_bus = make_device(NULL, "root", 0);
4717 root_bus->desc = "System root bus";
4718 kobj_init((kobj_t) root_bus, (kobj_class_t) &root_driver);
4719 root_bus->driver = &root_driver;
4720 root_bus->state = DS_ATTACHED;
4721 root_devclass = devclass_find_internal("root", NULL, FALSE);
4722 devinit();
4723 return (0);
4724
4725 case MOD_SHUTDOWN:
4726 device_shutdown(root_bus);
4727 return (0);
4728 default:
4729 return (EOPNOTSUPP);
4730 }
4731
4732 return (0);
4733 }
4734
4735 static moduledata_t root_bus_mod = {
4736 "rootbus",
4737 root_bus_module_handler,
4738 NULL
4739 };
4740 DECLARE_MODULE(rootbus, root_bus_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
4741
4742 /**
4743 * @brief Automatically configure devices
4744 *
4745 * This function begins the autoconfiguration process by calling
4746 * device_probe_and_attach() for each child of the @c root0 device.
4747 */
4748 void
root_bus_configure(void)4749 root_bus_configure(void)
4750 {
4751
4752 PDEBUG(("."));
4753
4754 /* Eventually this will be split up, but this is sufficient for now. */
4755 bus_set_pass(BUS_PASS_DEFAULT);
4756 }
4757
4758 /**
4759 * @brief Module handler for registering device drivers
4760 *
4761 * This module handler is used to automatically register device
4762 * drivers when modules are loaded. If @p what is MOD_LOAD, it calls
4763 * devclass_add_driver() for the driver described by the
4764 * driver_module_data structure pointed to by @p arg
4765 */
4766 int
driver_module_handler(module_t mod,int what,void * arg)4767 driver_module_handler(module_t mod, int what, void *arg)
4768 {
4769 struct driver_module_data *dmd;
4770 devclass_t bus_devclass;
4771 kobj_class_t driver;
4772 int error, pass;
4773
4774 dmd = (struct driver_module_data *)arg;
4775 bus_devclass = devclass_find_internal(dmd->dmd_busname, NULL, TRUE);
4776 error = 0;
4777
4778 switch (what) {
4779 case MOD_LOAD:
4780 if (dmd->dmd_chainevh)
4781 error = dmd->dmd_chainevh(mod,what,dmd->dmd_chainarg);
4782
4783 pass = dmd->dmd_pass;
4784 driver = dmd->dmd_driver;
4785 PDEBUG(("Loading module: driver %s on bus %s (pass %d)",
4786 DRIVERNAME(driver), dmd->dmd_busname, pass));
4787 error = devclass_add_driver(bus_devclass, driver, pass,
4788 dmd->dmd_devclass);
4789 break;
4790
4791 case MOD_UNLOAD:
4792 PDEBUG(("Unloading module: driver %s from bus %s",
4793 DRIVERNAME(dmd->dmd_driver),
4794 dmd->dmd_busname));
4795 error = devclass_delete_driver(bus_devclass,
4796 dmd->dmd_driver);
4797
4798 if (!error && dmd->dmd_chainevh)
4799 error = dmd->dmd_chainevh(mod,what,dmd->dmd_chainarg);
4800 break;
4801 case MOD_QUIESCE:
4802 PDEBUG(("Quiesce module: driver %s from bus %s",
4803 DRIVERNAME(dmd->dmd_driver),
4804 dmd->dmd_busname));
4805 error = devclass_quiesce_driver(bus_devclass,
4806 dmd->dmd_driver);
4807
4808 if (!error && dmd->dmd_chainevh)
4809 error = dmd->dmd_chainevh(mod,what,dmd->dmd_chainarg);
4810 break;
4811 default:
4812 error = EOPNOTSUPP;
4813 break;
4814 }
4815
4816 return (error);
4817 }
4818
4819 /**
4820 * @brief Enumerate all hinted devices for this bus.
4821 *
4822 * Walks through the hints for this bus and calls the bus_hinted_child
4823 * routine for each one it fines. It searches first for the specific
4824 * bus that's being probed for hinted children (eg isa0), and then for
4825 * generic children (eg isa).
4826 *
4827 * @param dev bus device to enumerate
4828 */
4829 void
bus_enumerate_hinted_children(device_t bus)4830 bus_enumerate_hinted_children(device_t bus)
4831 {
4832 int i;
4833 const char *dname, *busname;
4834 int dunit;
4835
4836 /*
4837 * enumerate all devices on the specific bus
4838 */
4839 busname = device_get_nameunit(bus);
4840 i = 0;
4841 while (resource_find_match(&i, &dname, &dunit, "at", busname) == 0)
4842 BUS_HINTED_CHILD(bus, dname, dunit);
4843
4844 /*
4845 * and all the generic ones.
4846 */
4847 busname = device_get_name(bus);
4848 i = 0;
4849 while (resource_find_match(&i, &dname, &dunit, "at", busname) == 0)
4850 BUS_HINTED_CHILD(bus, dname, dunit);
4851 }
4852
4853 #ifdef BUS_DEBUG
4854
4855 /* the _short versions avoid iteration by not calling anything that prints
4856 * more than oneliners. I love oneliners.
4857 */
4858
4859 static void
print_device_short(device_t dev,int indent)4860 print_device_short(device_t dev, int indent)
4861 {
4862 if (!dev)
4863 return;
4864
4865 indentprintf(("device %d: <%s> %sparent,%schildren,%s%s%s%s%s,%sivars,%ssoftc,busy=%d\n",
4866 dev->unit, dev->desc,
4867 (dev->parent? "":"no "),
4868 (TAILQ_EMPTY(&dev->children)? "no ":""),
4869 (dev->flags&DF_ENABLED? "enabled,":"disabled,"),
4870 (dev->flags&DF_FIXEDCLASS? "fixed,":""),
4871 (dev->flags&DF_WILDCARD? "wildcard,":""),
4872 (dev->flags&DF_DESCMALLOCED? "descmalloced,":""),
4873 (dev->flags&DF_REBID? "rebiddable,":""),
4874 (dev->ivars? "":"no "),
4875 (dev->softc? "":"no "),
4876 dev->busy));
4877 }
4878
4879 static void
print_device(device_t dev,int indent)4880 print_device(device_t dev, int indent)
4881 {
4882 if (!dev)
4883 return;
4884
4885 print_device_short(dev, indent);
4886
4887 indentprintf(("Parent:\n"));
4888 print_device_short(dev->parent, indent+1);
4889 indentprintf(("Driver:\n"));
4890 print_driver_short(dev->driver, indent+1);
4891 indentprintf(("Devclass:\n"));
4892 print_devclass_short(dev->devclass, indent+1);
4893 }
4894
4895 void
print_device_tree_short(device_t dev,int indent)4896 print_device_tree_short(device_t dev, int indent)
4897 /* print the device and all its children (indented) */
4898 {
4899 device_t child;
4900
4901 if (!dev)
4902 return;
4903
4904 print_device_short(dev, indent);
4905
4906 TAILQ_FOREACH(child, &dev->children, link) {
4907 print_device_tree_short(child, indent+1);
4908 }
4909 }
4910
4911 void
print_device_tree(device_t dev,int indent)4912 print_device_tree(device_t dev, int indent)
4913 /* print the device and all its children (indented) */
4914 {
4915 device_t child;
4916
4917 if (!dev)
4918 return;
4919
4920 print_device(dev, indent);
4921
4922 TAILQ_FOREACH(child, &dev->children, link) {
4923 print_device_tree(child, indent+1);
4924 }
4925 }
4926
4927 static void
print_driver_short(driver_t * driver,int indent)4928 print_driver_short(driver_t *driver, int indent)
4929 {
4930 if (!driver)
4931 return;
4932
4933 indentprintf(("driver %s: softc size = %zd\n",
4934 driver->name, driver->size));
4935 }
4936
4937 static void
print_driver(driver_t * driver,int indent)4938 print_driver(driver_t *driver, int indent)
4939 {
4940 if (!driver)
4941 return;
4942
4943 print_driver_short(driver, indent);
4944 }
4945
4946 static void
print_driver_list(driver_list_t drivers,int indent)4947 print_driver_list(driver_list_t drivers, int indent)
4948 {
4949 driverlink_t driver;
4950
4951 TAILQ_FOREACH(driver, &drivers, link) {
4952 print_driver(driver->driver, indent);
4953 }
4954 }
4955
4956 static void
print_devclass_short(devclass_t dc,int indent)4957 print_devclass_short(devclass_t dc, int indent)
4958 {
4959 if ( !dc )
4960 return;
4961
4962 indentprintf(("devclass %s: max units = %d\n", dc->name, dc->maxunit));
4963 }
4964
4965 static void
print_devclass(devclass_t dc,int indent)4966 print_devclass(devclass_t dc, int indent)
4967 {
4968 int i;
4969
4970 if ( !dc )
4971 return;
4972
4973 print_devclass_short(dc, indent);
4974 indentprintf(("Drivers:\n"));
4975 print_driver_list(dc->drivers, indent+1);
4976
4977 indentprintf(("Devices:\n"));
4978 for (i = 0; i < dc->maxunit; i++)
4979 if (dc->devices[i])
4980 print_device(dc->devices[i], indent+1);
4981 }
4982
4983 void
print_devclass_list_short(void)4984 print_devclass_list_short(void)
4985 {
4986 devclass_t dc;
4987
4988 printf("Short listing of devclasses, drivers & devices:\n");
4989 TAILQ_FOREACH(dc, &devclasses, link) {
4990 print_devclass_short(dc, 0);
4991 }
4992 }
4993
4994 void
print_devclass_list(void)4995 print_devclass_list(void)
4996 {
4997 devclass_t dc;
4998
4999 printf("Full listing of devclasses, drivers & devices:\n");
5000 TAILQ_FOREACH(dc, &devclasses, link) {
5001 print_devclass(dc, 0);
5002 }
5003 }
5004
5005 #endif
5006
5007 /*
5008 * User-space access to the device tree.
5009 *
5010 * We implement a small set of nodes:
5011 *
5012 * hw.bus Single integer read method to obtain the
5013 * current generation count.
5014 * hw.bus.devices Reads the entire device tree in flat space.
5015 * hw.bus.rman Resource manager interface
5016 *
5017 * We might like to add the ability to scan devclasses and/or drivers to
5018 * determine what else is currently loaded/available.
5019 */
5020
5021 static int
sysctl_bus(SYSCTL_HANDLER_ARGS)5022 sysctl_bus(SYSCTL_HANDLER_ARGS)
5023 {
5024 struct u_businfo ubus;
5025
5026 ubus.ub_version = BUS_USER_VERSION;
5027 ubus.ub_generation = bus_data_generation;
5028
5029 return (SYSCTL_OUT(req, &ubus, sizeof(ubus)));
5030 }
5031 SYSCTL_NODE(_hw_bus, OID_AUTO, info, CTLFLAG_RW, sysctl_bus,
5032 "bus-related data");
5033
5034 static int
sysctl_devices(SYSCTL_HANDLER_ARGS)5035 sysctl_devices(SYSCTL_HANDLER_ARGS)
5036 {
5037 int *name = (int *)arg1;
5038 u_int namelen = arg2;
5039 int index;
5040 struct device *dev;
5041 struct u_device udev; /* XXX this is a bit big */
5042 int error;
5043
5044 if (namelen != 2)
5045 return (EINVAL);
5046
5047 if (bus_data_generation_check(name[0]))
5048 return (EINVAL);
5049
5050 index = name[1];
5051
5052 /*
5053 * Scan the list of devices, looking for the requested index.
5054 */
5055 TAILQ_FOREACH(dev, &bus_data_devices, devlink) {
5056 if (index-- == 0)
5057 break;
5058 }
5059 if (dev == NULL)
5060 return (ENOENT);
5061
5062 /*
5063 * Populate the return array.
5064 */
5065 bzero(&udev, sizeof(udev));
5066 udev.dv_handle = (uintptr_t)dev;
5067 udev.dv_parent = (uintptr_t)dev->parent;
5068 if (dev->nameunit != NULL)
5069 strlcpy(udev.dv_name, dev->nameunit, sizeof(udev.dv_name));
5070 if (dev->desc != NULL)
5071 strlcpy(udev.dv_desc, dev->desc, sizeof(udev.dv_desc));
5072 if (dev->driver != NULL && dev->driver->name != NULL)
5073 strlcpy(udev.dv_drivername, dev->driver->name,
5074 sizeof(udev.dv_drivername));
5075 bus_child_pnpinfo_str(dev, udev.dv_pnpinfo, sizeof(udev.dv_pnpinfo));
5076 bus_child_location_str(dev, udev.dv_location, sizeof(udev.dv_location));
5077 udev.dv_devflags = dev->devflags;
5078 udev.dv_flags = dev->flags;
5079 udev.dv_state = dev->state;
5080 error = SYSCTL_OUT(req, &udev, sizeof(udev));
5081 return (error);
5082 }
5083
5084 SYSCTL_NODE(_hw_bus, OID_AUTO, devices, CTLFLAG_RD, sysctl_devices,
5085 "system device tree");
5086
5087 int
bus_data_generation_check(int generation)5088 bus_data_generation_check(int generation)
5089 {
5090 if (generation != bus_data_generation)
5091 return (1);
5092
5093 /* XXX generate optimised lists here? */
5094 return (0);
5095 }
5096
5097 void
bus_data_generation_update(void)5098 bus_data_generation_update(void)
5099 {
5100 bus_data_generation++;
5101 }
5102
5103 int
bus_free_resource(device_t dev,int type,struct resource * r)5104 bus_free_resource(device_t dev, int type, struct resource *r)
5105 {
5106 if (r == NULL)
5107 return (0);
5108 return (bus_release_resource(dev, type, rman_get_rid(r), r));
5109 }
5110
5111 /*
5112 * /dev/devctl2 implementation. The existing /dev/devctl device has
5113 * implicit semantics on open, so it could not be reused for this.
5114 * Another option would be to call this /dev/bus?
5115 */
5116 static int
find_device(struct devreq * req,device_t * devp)5117 find_device(struct devreq *req, device_t *devp)
5118 {
5119 device_t dev;
5120
5121 /*
5122 * First, ensure that the name is nul terminated.
5123 */
5124 if (memchr(req->dr_name, '\0', sizeof(req->dr_name)) == NULL)
5125 return (EINVAL);
5126
5127 /*
5128 * Second, try to find an attached device whose name matches
5129 * 'name'.
5130 */
5131 TAILQ_FOREACH(dev, &bus_data_devices, devlink) {
5132 if (dev->nameunit != NULL &&
5133 strcmp(dev->nameunit, req->dr_name) == 0) {
5134 *devp = dev;
5135 return (0);
5136 }
5137 }
5138
5139 /* Finally, give device enumerators a chance. */
5140 dev = NULL;
5141 EVENTHANDLER_INVOKE(dev_lookup, req->dr_name, &dev);
5142 if (dev == NULL)
5143 return (ENOENT);
5144 *devp = dev;
5145 return (0);
5146 }
5147
5148 static bool
driver_exists(struct device * bus,const char * driver)5149 driver_exists(struct device *bus, const char *driver)
5150 {
5151 devclass_t dc;
5152
5153 for (dc = bus->devclass; dc != NULL; dc = dc->parent) {
5154 if (devclass_find_driver_internal(dc, driver) != NULL)
5155 return (true);
5156 }
5157 return (false);
5158 }
5159
5160 static int
devctl2_ioctl(struct cdev * cdev,u_long cmd,caddr_t data,int fflag,struct thread * td)5161 devctl2_ioctl(struct cdev *cdev, u_long cmd, caddr_t data, int fflag,
5162 struct thread *td)
5163 {
5164 struct devreq *req;
5165 device_t dev;
5166 int error, old;
5167
5168 /* Locate the device to control. */
5169 mtx_lock(&Giant);
5170 req = (struct devreq *)data;
5171 switch (cmd) {
5172 case DEV_ATTACH:
5173 case DEV_DETACH:
5174 case DEV_ENABLE:
5175 case DEV_DISABLE:
5176 case DEV_SUSPEND:
5177 case DEV_RESUME:
5178 case DEV_SET_DRIVER:
5179 error = priv_check(td, PRIV_DRIVER);
5180 if (error == 0)
5181 error = find_device(req, &dev);
5182 break;
5183 default:
5184 error = ENOTTY;
5185 break;
5186 }
5187 if (error) {
5188 mtx_unlock(&Giant);
5189 return (error);
5190 }
5191
5192 /* Perform the requested operation. */
5193 switch (cmd) {
5194 case DEV_ATTACH:
5195 if (device_is_attached(dev) && (dev->flags & DF_REBID) == 0)
5196 error = EBUSY;
5197 else if (!device_is_enabled(dev))
5198 error = ENXIO;
5199 else
5200 error = device_probe_and_attach(dev);
5201 break;
5202 case DEV_DETACH:
5203 if (!device_is_attached(dev)) {
5204 error = ENXIO;
5205 break;
5206 }
5207 if (!(req->dr_flags & DEVF_FORCE_DETACH)) {
5208 error = device_quiesce(dev);
5209 if (error)
5210 break;
5211 }
5212 error = device_detach(dev);
5213 break;
5214 case DEV_ENABLE:
5215 if (device_is_enabled(dev)) {
5216 error = EBUSY;
5217 break;
5218 }
5219
5220 /*
5221 * If the device has been probed but not attached (e.g.
5222 * when it has been disabled by a loader hint), just
5223 * attach the device rather than doing a full probe.
5224 */
5225 device_enable(dev);
5226 if (device_is_alive(dev)) {
5227 /*
5228 * If the device was disabled via a hint, clear
5229 * the hint.
5230 */
5231 if (resource_disabled(dev->driver->name, dev->unit))
5232 resource_unset_value(dev->driver->name,
5233 dev->unit, "disabled");
5234 error = device_attach(dev);
5235 } else
5236 error = device_probe_and_attach(dev);
5237 break;
5238 case DEV_DISABLE:
5239 if (!device_is_enabled(dev)) {
5240 error = ENXIO;
5241 break;
5242 }
5243
5244 if (!(req->dr_flags & DEVF_FORCE_DETACH)) {
5245 error = device_quiesce(dev);
5246 if (error)
5247 break;
5248 }
5249
5250 /*
5251 * Force DF_FIXEDCLASS on around detach to preserve
5252 * the existing name.
5253 */
5254 old = dev->flags;
5255 dev->flags |= DF_FIXEDCLASS;
5256 error = device_detach(dev);
5257 if (!(old & DF_FIXEDCLASS))
5258 dev->flags &= ~DF_FIXEDCLASS;
5259 if (error == 0)
5260 device_disable(dev);
5261 break;
5262 case DEV_SUSPEND:
5263 if (device_is_suspended(dev)) {
5264 error = EBUSY;
5265 break;
5266 }
5267 if (device_get_parent(dev) == NULL) {
5268 error = EINVAL;
5269 break;
5270 }
5271 error = BUS_SUSPEND_CHILD(device_get_parent(dev), dev);
5272 break;
5273 case DEV_RESUME:
5274 if (!device_is_suspended(dev)) {
5275 error = EINVAL;
5276 break;
5277 }
5278 if (device_get_parent(dev) == NULL) {
5279 error = EINVAL;
5280 break;
5281 }
5282 error = BUS_RESUME_CHILD(device_get_parent(dev), dev);
5283 break;
5284 case DEV_SET_DRIVER: {
5285 devclass_t dc;
5286 char driver[128];
5287
5288 error = copyinstr(req->dr_data, driver, sizeof(driver), NULL);
5289 if (error)
5290 break;
5291 if (driver[0] == '\0') {
5292 error = EINVAL;
5293 break;
5294 }
5295 if (dev->devclass != NULL &&
5296 strcmp(driver, dev->devclass->name) == 0)
5297 /* XXX: Could possibly force DF_FIXEDCLASS on? */
5298 break;
5299
5300 /*
5301 * Scan drivers for this device's bus looking for at
5302 * least one matching driver.
5303 */
5304 if (dev->parent == NULL) {
5305 error = EINVAL;
5306 break;
5307 }
5308 if (!driver_exists(dev->parent, driver)) {
5309 error = ENOENT;
5310 break;
5311 }
5312 dc = devclass_create(driver);
5313 if (dc == NULL) {
5314 error = ENOMEM;
5315 break;
5316 }
5317
5318 /* Detach device if necessary. */
5319 if (device_is_attached(dev)) {
5320 if (req->dr_flags & DEVF_SET_DRIVER_DETACH)
5321 error = device_detach(dev);
5322 else
5323 error = EBUSY;
5324 if (error)
5325 break;
5326 }
5327
5328 /* Clear any previously-fixed device class and unit. */
5329 if (dev->flags & DF_FIXEDCLASS)
5330 devclass_delete_device(dev->devclass, dev);
5331 dev->flags |= DF_WILDCARD;
5332 dev->unit = -1;
5333
5334 /* Force the new device class. */
5335 error = devclass_add_device(dc, dev);
5336 if (error)
5337 break;
5338 dev->flags |= DF_FIXEDCLASS;
5339 error = device_probe_and_attach(dev);
5340 break;
5341 }
5342 }
5343 mtx_unlock(&Giant);
5344 return (error);
5345 }
5346
5347 static struct cdevsw devctl2_cdevsw = {
5348 .d_version = D_VERSION,
5349 .d_ioctl = devctl2_ioctl,
5350 .d_name = "devctl2",
5351 };
5352
5353 static void
devctl2_init(void)5354 devctl2_init(void)
5355 {
5356
5357 make_dev_credf(MAKEDEV_ETERNAL, &devctl2_cdevsw, 0, NULL,
5358 UID_ROOT, GID_WHEEL, 0600, "devctl2");
5359 }
5360