]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/bus.h
dts: Update our copy to Linux 4.17
[FreeBSD/FreeBSD.git] / sys / sys / bus.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 1997,1998,2003 Doug Rabson
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef _SYS_BUS_H_
32 #define _SYS_BUS_H_
33
34 #include <machine/_limits.h>
35 #include <machine/_bus.h>
36 #include <sys/_bus_dma.h>
37 #include <sys/ioccom.h>
38
39 /**
40  * @defgroup NEWBUS newbus - a generic framework for managing devices
41  * @{
42  */
43
44 /**
45  * @brief Interface information structure.
46  */
47 struct u_businfo {
48         int     ub_version;             /**< @brief interface version */
49 #define BUS_USER_VERSION        2
50         int     ub_generation;          /**< @brief generation count */
51 };
52
53 /**
54  * @brief State of the device.
55  */
56 typedef enum device_state {
57         DS_NOTPRESENT = 10,             /**< @brief not probed or probe failed */
58         DS_ALIVE = 20,                  /**< @brief probe succeeded */
59         DS_ATTACHING = 25,              /**< @brief currently attaching */
60         DS_ATTACHED = 30,               /**< @brief attach method called */
61         DS_BUSY = 40                    /**< @brief device is open */
62 } device_state_t;
63
64 /**
65  * @brief Device information exported to userspace.
66  * The strings are placed one after the other, separated by NUL characters.
67  * Fields should be added after the last one and order maintained for compatibility
68  */
69 #define BUS_USER_BUFFER         (3*1024)
70 struct u_device {
71         uintptr_t       dv_handle;
72         uintptr_t       dv_parent;
73         uint32_t        dv_devflags;            /**< @brief API Flags for device */
74         uint16_t        dv_flags;               /**< @brief flags for dev state */
75         device_state_t  dv_state;               /**< @brief State of attachment */
76         char            dv_fields[BUS_USER_BUFFER]; /**< @brief NUL terminated fields */
77         /* name (name of the device in tree) */
78         /* desc (driver description) */
79         /* drivername (Name of driver without unit number) */
80         /* pnpinfo (Plug and play information from bus) */
81         /* location (Location of device on parent */
82         /* NUL */
83 };
84
85 /* Flags exported via dv_flags. */
86 #define DF_ENABLED      0x01            /* device should be probed/attached */
87 #define DF_FIXEDCLASS   0x02            /* devclass specified at create time */
88 #define DF_WILDCARD     0x04            /* unit was originally wildcard */
89 #define DF_DESCMALLOCED 0x08            /* description was malloced */
90 #define DF_QUIET        0x10            /* don't print verbose attach message */
91 #define DF_DONENOMATCH  0x20            /* don't execute DEVICE_NOMATCH again */
92 #define DF_EXTERNALSOFTC 0x40           /* softc not allocated by us */
93 #define DF_REBID        0x80            /* Can rebid after attach */
94 #define DF_SUSPENDED    0x100           /* Device is suspended. */
95 #define DF_QUIET_CHILDREN 0x200         /* Default to quiet for all my children */
96
97 /**
98  * @brief Device request structure used for ioctl's.
99  *
100  * Used for ioctl's on /dev/devctl2.  All device ioctl's
101  * must have parameter definitions which begin with dr_name.
102  */
103 struct devreq_buffer {
104         void    *buffer;
105         size_t  length;
106 };
107
108 struct devreq {
109         char            dr_name[128];
110         int             dr_flags;               /* request-specific flags */
111         union {
112                 struct devreq_buffer dru_buffer;
113                 void    *dru_data;
114         } dr_dru;
115 #define dr_buffer       dr_dru.dru_buffer       /* variable-sized buffer */
116 #define dr_data         dr_dru.dru_data         /* fixed-size buffer */
117 };
118
119 #define DEV_ATTACH      _IOW('D', 1, struct devreq)
120 #define DEV_DETACH      _IOW('D', 2, struct devreq)
121 #define DEV_ENABLE      _IOW('D', 3, struct devreq)
122 #define DEV_DISABLE     _IOW('D', 4, struct devreq)
123 #define DEV_SUSPEND     _IOW('D', 5, struct devreq)
124 #define DEV_RESUME      _IOW('D', 6, struct devreq)
125 #define DEV_SET_DRIVER  _IOW('D', 7, struct devreq)
126 #define DEV_CLEAR_DRIVER _IOW('D', 8, struct devreq)
127 #define DEV_RESCAN      _IOW('D', 9, struct devreq)
128 #define DEV_DELETE      _IOW('D', 10, struct devreq)
129
130 /* Flags for DEV_DETACH and DEV_DISABLE. */
131 #define DEVF_FORCE_DETACH       0x0000001
132
133 /* Flags for DEV_SET_DRIVER. */
134 #define DEVF_SET_DRIVER_DETACH  0x0000001       /* Detach existing driver. */
135
136 /* Flags for DEV_CLEAR_DRIVER. */
137 #define DEVF_CLEAR_DRIVER_DETACH 0x0000001      /* Detach existing driver. */
138
139 /* Flags for DEV_DELETE. */
140 #define DEVF_FORCE_DELETE       0x0000001
141
142 #ifdef _KERNEL
143
144 #include <sys/eventhandler.h>
145 #include <sys/kobj.h>
146
147 /**
148  * devctl hooks.  Typically one should use the devctl_notify
149  * hook to send the message.  However, devctl_queue_data is also
150  * included in case devctl_notify isn't sufficiently general.
151  */
152 boolean_t devctl_process_running(void);
153 void devctl_notify_f(const char *__system, const char *__subsystem,
154     const char *__type, const char *__data, int __flags);
155 void devctl_notify(const char *__system, const char *__subsystem,
156     const char *__type, const char *__data);
157 void devctl_queue_data_f(char *__data, int __flags);
158 void devctl_queue_data(char *__data);
159 void devctl_safe_quote(char *__dst, const char *__src, size_t len);
160
161 /**
162  * Device name parsers.  Hook to allow device enumerators to map
163  * scheme-specific names to a device.
164  */
165 typedef void (*dev_lookup_fn)(void *arg, const char *name,
166     device_t *result);
167 EVENTHANDLER_DECLARE(dev_lookup, dev_lookup_fn);
168
169 /**
170  * @brief A device driver (included mainly for compatibility with
171  * FreeBSD 4.x).
172  */
173 typedef struct kobj_class       driver_t;
174
175 /**
176  * @brief A device class
177  *
178  * The devclass object has two main functions in the system. The first
179  * is to manage the allocation of unit numbers for device instances
180  * and the second is to hold the list of device drivers for a
181  * particular bus type. Each devclass has a name and there cannot be
182  * two devclasses with the same name. This ensures that unique unit
183  * numbers are allocated to device instances.
184  *
185  * Drivers that support several different bus attachments (e.g. isa,
186  * pci, pccard) should all use the same devclass to ensure that unit
187  * numbers do not conflict.
188  *
189  * Each devclass may also have a parent devclass. This is used when
190  * searching for device drivers to allow a form of inheritance. When
191  * matching drivers with devices, first the driver list of the parent
192  * device's devclass is searched. If no driver is found in that list,
193  * the search continues in the parent devclass (if any).
194  */
195 typedef struct devclass         *devclass_t;
196
197 /**
198  * @brief A device method
199  */
200 #define device_method_t         kobj_method_t
201
202 /**
203  * @brief Driver interrupt filter return values
204  *
205  * If a driver provides an interrupt filter routine it must return an
206  * integer consisting of oring together zero or more of the following
207  * flags:
208  *
209  *      FILTER_STRAY    - this device did not trigger the interrupt
210  *      FILTER_HANDLED  - the interrupt has been fully handled and can be EOId
211  *      FILTER_SCHEDULE_THREAD - the threaded interrupt handler should be
212  *                        scheduled to execute
213  *
214  * If the driver does not provide a filter, then the interrupt code will
215  * act is if the filter had returned FILTER_SCHEDULE_THREAD.  Note that it
216  * is illegal to specify any other flag with FILTER_STRAY and that it is
217  * illegal to not specify either of FILTER_HANDLED or FILTER_SCHEDULE_THREAD
218  * if FILTER_STRAY is not specified.
219  */
220 #define FILTER_STRAY            0x01
221 #define FILTER_HANDLED          0x02
222 #define FILTER_SCHEDULE_THREAD  0x04
223
224 /**
225  * @brief Driver interrupt service routines
226  *
227  * The filter routine is run in primary interrupt context and may not
228  * block or use regular mutexes.  It may only use spin mutexes for
229  * synchronization.  The filter may either completely handle the
230  * interrupt or it may perform some of the work and defer more
231  * expensive work to the regular interrupt handler.  If a filter
232  * routine is not registered by the driver, then the regular interrupt
233  * handler is always used to handle interrupts from this device.
234  *
235  * The regular interrupt handler executes in its own thread context
236  * and may use regular mutexes.  However, it is prohibited from
237  * sleeping on a sleep queue.
238  */
239 typedef int driver_filter_t(void*);
240 typedef void driver_intr_t(void*);
241
242 /**
243  * @brief Interrupt type bits.
244  * 
245  * These flags are used both by newbus interrupt
246  * registration (nexus.c) and also in struct intrec, which defines
247  * interrupt properties.
248  *
249  * XXX We should probably revisit this and remove the vestiges of the
250  * spls implicit in names like INTR_TYPE_TTY. In the meantime, don't
251  * confuse things by renaming them (Grog, 18 July 2000).
252  *
253  * Buses which do interrupt remapping will want to change their type
254  * to reflect what sort of devices are underneath.
255  */
256 enum intr_type {
257         INTR_TYPE_TTY = 1,
258         INTR_TYPE_BIO = 2,
259         INTR_TYPE_NET = 4,
260         INTR_TYPE_CAM = 8,
261         INTR_TYPE_MISC = 16,
262         INTR_TYPE_CLK = 32,
263         INTR_TYPE_AV = 64,
264         INTR_EXCL = 256,                /* exclusive interrupt */
265         INTR_MPSAFE = 512,              /* this interrupt is SMP safe */
266         INTR_ENTROPY = 1024,            /* this interrupt provides entropy */
267         INTR_MD1 = 4096,                /* flag reserved for MD use */
268         INTR_MD2 = 8192,                /* flag reserved for MD use */
269         INTR_MD3 = 16384,               /* flag reserved for MD use */
270         INTR_MD4 = 32768                /* flag reserved for MD use */
271 };
272
273 enum intr_trigger {
274         INTR_TRIGGER_INVALID = -1,
275         INTR_TRIGGER_CONFORM = 0,
276         INTR_TRIGGER_EDGE = 1,
277         INTR_TRIGGER_LEVEL = 2
278 };
279
280 enum intr_polarity {
281         INTR_POLARITY_CONFORM = 0,
282         INTR_POLARITY_HIGH = 1,
283         INTR_POLARITY_LOW = 2
284 };
285
286 /**
287  * CPU sets supported by bus_get_cpus().  Note that not all sets may be
288  * supported for a given device.  If a request is not supported by a
289  * device (or its parents), then bus_get_cpus() will fail with EINVAL.
290  */
291 enum cpu_sets {
292         LOCAL_CPUS = 0,
293         INTR_CPUS
294 };
295
296 typedef int (*devop_t)(void);
297
298 /**
299  * @brief This structure is deprecated.
300  *
301  * Use the kobj(9) macro DEFINE_CLASS to
302  * declare classes which implement device drivers.
303  */
304 struct driver {
305         KOBJ_CLASS_FIELDS;
306 };
307
308 /**
309  * @brief A resource mapping.
310  */
311 struct resource_map {
312         bus_space_tag_t r_bustag;
313         bus_space_handle_t r_bushandle;
314         bus_size_t r_size;
315         void    *r_vaddr;
316 };
317         
318 /**
319  * @brief Optional properties of a resource mapping request.
320  */
321 struct resource_map_request {
322         size_t  size;
323         rman_res_t offset;
324         rman_res_t length;
325         vm_memattr_t memattr;
326 };
327
328 void    resource_init_map_request_impl(struct resource_map_request *_args,
329             size_t _sz);
330 #define resource_init_map_request(rmr)                                  \
331         resource_init_map_request_impl((rmr), sizeof(*(rmr)))
332
333 /*
334  * Definitions for drivers which need to keep simple lists of resources
335  * for their child devices.
336  */
337 struct  resource;
338
339 /**
340  * @brief An entry for a single resource in a resource list.
341  */
342 struct resource_list_entry {
343         STAILQ_ENTRY(resource_list_entry) link;
344         int     type;                   /**< @brief type argument to alloc_resource */
345         int     rid;                    /**< @brief resource identifier */
346         int     flags;                  /**< @brief resource flags */
347         struct  resource *res;          /**< @brief the real resource when allocated */
348         rman_res_t      start;          /**< @brief start of resource range */
349         rman_res_t      end;            /**< @brief end of resource range */
350         rman_res_t      count;                  /**< @brief count within range */
351 };
352 STAILQ_HEAD(resource_list, resource_list_entry);
353
354 #define RLE_RESERVED            0x0001  /* Reserved by the parent bus. */
355 #define RLE_ALLOCATED           0x0002  /* Reserved resource is allocated. */
356 #define RLE_PREFETCH            0x0004  /* Resource is a prefetch range. */
357
358 void    resource_list_init(struct resource_list *rl);
359 void    resource_list_free(struct resource_list *rl);
360 struct resource_list_entry *
361         resource_list_add(struct resource_list *rl,
362                           int type, int rid,
363                           rman_res_t start, rman_res_t end, rman_res_t count);
364 int     resource_list_add_next(struct resource_list *rl,
365                           int type,
366                           rman_res_t start, rman_res_t end, rman_res_t count);
367 int     resource_list_busy(struct resource_list *rl,
368                            int type, int rid);
369 int     resource_list_reserved(struct resource_list *rl, int type, int rid);
370 struct resource_list_entry*
371         resource_list_find(struct resource_list *rl,
372                            int type, int rid);
373 void    resource_list_delete(struct resource_list *rl,
374                              int type, int rid);
375 struct resource *
376         resource_list_alloc(struct resource_list *rl,
377                             device_t bus, device_t child,
378                             int type, int *rid,
379                             rman_res_t start, rman_res_t end,
380                             rman_res_t count, u_int flags);
381 int     resource_list_release(struct resource_list *rl,
382                               device_t bus, device_t child,
383                               int type, int rid, struct resource *res);
384 int     resource_list_release_active(struct resource_list *rl,
385                                      device_t bus, device_t child,
386                                      int type);
387 struct resource *
388         resource_list_reserve(struct resource_list *rl,
389                               device_t bus, device_t child,
390                               int type, int *rid,
391                               rman_res_t start, rman_res_t end,
392                               rman_res_t count, u_int flags);
393 int     resource_list_unreserve(struct resource_list *rl,
394                                 device_t bus, device_t child,
395                                 int type, int rid);
396 void    resource_list_purge(struct resource_list *rl);
397 int     resource_list_print_type(struct resource_list *rl,
398                                  const char *name, int type,
399                                  const char *format);
400
401 /*
402  * The root bus, to which all top-level buses are attached.
403  */
404 extern device_t root_bus;
405 extern devclass_t root_devclass;
406 void    root_bus_configure(void);
407
408 /*
409  * Useful functions for implementing buses.
410  */
411
412 int     bus_generic_activate_resource(device_t dev, device_t child, int type,
413                                       int rid, struct resource *r);
414 device_t
415         bus_generic_add_child(device_t dev, u_int order, const char *name,
416                               int unit);
417 int     bus_generic_adjust_resource(device_t bus, device_t child, int type,
418                                     struct resource *r, rman_res_t start,
419                                     rman_res_t end);
420 struct resource *
421         bus_generic_alloc_resource(device_t bus, device_t child, int type,
422                                    int *rid, rman_res_t start, rman_res_t end,
423                                    rman_res_t count, u_int flags);
424 int     bus_generic_attach(device_t dev);
425 int     bus_generic_bind_intr(device_t dev, device_t child,
426                               struct resource *irq, int cpu);
427 int     bus_generic_child_present(device_t dev, device_t child);
428 int     bus_generic_config_intr(device_t, int, enum intr_trigger,
429                                 enum intr_polarity);
430 int     bus_generic_describe_intr(device_t dev, device_t child,
431                                   struct resource *irq, void *cookie,
432                                   const char *descr);
433 int     bus_generic_deactivate_resource(device_t dev, device_t child, int type,
434                                         int rid, struct resource *r);
435 int     bus_generic_detach(device_t dev);
436 void    bus_generic_driver_added(device_t dev, driver_t *driver);
437 int     bus_generic_get_cpus(device_t dev, device_t child, enum cpu_sets op,
438                              size_t setsize, struct _cpuset *cpuset);
439 bus_dma_tag_t
440         bus_generic_get_dma_tag(device_t dev, device_t child);
441 bus_space_tag_t
442         bus_generic_get_bus_tag(device_t dev, device_t child);
443 int     bus_generic_get_domain(device_t dev, device_t child, int *domain);
444 struct resource_list *
445         bus_generic_get_resource_list (device_t, device_t);
446 int     bus_generic_map_resource(device_t dev, device_t child, int type,
447                                  struct resource *r,
448                                  struct resource_map_request *args,
449                                  struct resource_map *map);
450 void    bus_generic_new_pass(device_t dev);
451 int     bus_print_child_header(device_t dev, device_t child);
452 int     bus_print_child_domain(device_t dev, device_t child);
453 int     bus_print_child_footer(device_t dev, device_t child);
454 int     bus_generic_print_child(device_t dev, device_t child);
455 int     bus_generic_probe(device_t dev);
456 int     bus_generic_read_ivar(device_t dev, device_t child, int which,
457                               uintptr_t *result);
458 int     bus_generic_release_resource(device_t bus, device_t child,
459                                      int type, int rid, struct resource *r);
460 int     bus_generic_resume(device_t dev);
461 int     bus_generic_resume_child(device_t dev, device_t child);
462 int     bus_generic_setup_intr(device_t dev, device_t child,
463                                struct resource *irq, int flags,
464                                driver_filter_t *filter, driver_intr_t *intr, 
465                                void *arg, void **cookiep);
466
467 struct resource *
468         bus_generic_rl_alloc_resource (device_t, device_t, int, int *,
469                                        rman_res_t, rman_res_t, rman_res_t, u_int);
470 void    bus_generic_rl_delete_resource (device_t, device_t, int, int);
471 int     bus_generic_rl_get_resource (device_t, device_t, int, int, rman_res_t *,
472                                      rman_res_t *);
473 int     bus_generic_rl_set_resource (device_t, device_t, int, int, rman_res_t,
474                                      rman_res_t);
475 int     bus_generic_rl_release_resource (device_t, device_t, int, int,
476                                          struct resource *);
477
478 int     bus_generic_shutdown(device_t dev);
479 int     bus_generic_suspend(device_t dev);
480 int     bus_generic_suspend_child(device_t dev, device_t child);
481 int     bus_generic_teardown_intr(device_t dev, device_t child,
482                                   struct resource *irq, void *cookie);
483 int     bus_generic_unmap_resource(device_t dev, device_t child, int type,
484                                    struct resource *r,
485                                    struct resource_map *map);
486 int     bus_generic_write_ivar(device_t dev, device_t child, int which,
487                                uintptr_t value);
488 int     bus_null_rescan(device_t dev);
489
490 /*
491  * Wrapper functions for the BUS_*_RESOURCE methods to make client code
492  * a little simpler.
493  */
494
495 struct resource_spec {
496         int     type;
497         int     rid;
498         int     flags;
499 };
500 #define RESOURCE_SPEC_END       {-1, 0, 0}
501
502 int     bus_alloc_resources(device_t dev, struct resource_spec *rs,
503                             struct resource **res);
504 void    bus_release_resources(device_t dev, const struct resource_spec *rs,
505                               struct resource **res);
506
507 int     bus_adjust_resource(device_t child, int type, struct resource *r,
508                             rman_res_t start, rman_res_t end);
509 struct  resource *bus_alloc_resource(device_t dev, int type, int *rid,
510                                      rman_res_t start, rman_res_t end,
511                                      rman_res_t count, u_int flags);
512 int     bus_activate_resource(device_t dev, int type, int rid,
513                               struct resource *r);
514 int     bus_deactivate_resource(device_t dev, int type, int rid,
515                                 struct resource *r);
516 int     bus_map_resource(device_t dev, int type, struct resource *r,
517                          struct resource_map_request *args,
518                          struct resource_map *map);
519 int     bus_unmap_resource(device_t dev, int type, struct resource *r,
520                            struct resource_map *map);
521 int     bus_get_cpus(device_t dev, enum cpu_sets op, size_t setsize,
522                      struct _cpuset *cpuset);
523 bus_dma_tag_t bus_get_dma_tag(device_t dev);
524 bus_space_tag_t bus_get_bus_tag(device_t dev);
525 int     bus_get_domain(device_t dev, int *domain);
526 int     bus_release_resource(device_t dev, int type, int rid,
527                              struct resource *r);
528 int     bus_free_resource(device_t dev, int type, struct resource *r);
529 int     bus_setup_intr(device_t dev, struct resource *r, int flags,
530                        driver_filter_t filter, driver_intr_t handler, 
531                        void *arg, void **cookiep);
532 int     bus_teardown_intr(device_t dev, struct resource *r, void *cookie);
533 int     bus_bind_intr(device_t dev, struct resource *r, int cpu);
534 int     bus_describe_intr(device_t dev, struct resource *irq, void *cookie,
535                           const char *fmt, ...) __printflike(4, 5);
536 int     bus_set_resource(device_t dev, int type, int rid,
537                          rman_res_t start, rman_res_t count);
538 int     bus_get_resource(device_t dev, int type, int rid,
539                          rman_res_t *startp, rman_res_t *countp);
540 rman_res_t      bus_get_resource_start(device_t dev, int type, int rid);
541 rman_res_t      bus_get_resource_count(device_t dev, int type, int rid);
542 void    bus_delete_resource(device_t dev, int type, int rid);
543 int     bus_child_present(device_t child);
544 int     bus_child_pnpinfo_str(device_t child, char *buf, size_t buflen);
545 int     bus_child_location_str(device_t child, char *buf, size_t buflen);
546 void    bus_enumerate_hinted_children(device_t bus);
547
548 static __inline struct resource *
549 bus_alloc_resource_any(device_t dev, int type, int *rid, u_int flags)
550 {
551         return (bus_alloc_resource(dev, type, rid, 0, ~0, 1, flags));
552 }
553
554 static __inline struct resource *
555 bus_alloc_resource_anywhere(device_t dev, int type, int *rid,
556     rman_res_t count, u_int flags)
557 {
558         return (bus_alloc_resource(dev, type, rid, 0, ~0, count, flags));
559 }
560
561 /*
562  * Access functions for device.
563  */
564 device_t        device_add_child(device_t dev, const char *name, int unit);
565 device_t        device_add_child_ordered(device_t dev, u_int order,
566                                          const char *name, int unit);
567 void    device_busy(device_t dev);
568 int     device_delete_child(device_t dev, device_t child);
569 int     device_delete_children(device_t dev);
570 int     device_attach(device_t dev);
571 int     device_detach(device_t dev);
572 void    device_disable(device_t dev);
573 void    device_enable(device_t dev);
574 device_t        device_find_child(device_t dev, const char *classname,
575                                   int unit);
576 const char      *device_get_desc(device_t dev);
577 devclass_t      device_get_devclass(device_t dev);
578 driver_t        *device_get_driver(device_t dev);
579 u_int32_t       device_get_flags(device_t dev);
580 device_t        device_get_parent(device_t dev);
581 int     device_get_children(device_t dev, device_t **listp, int *countp);
582 void    *device_get_ivars(device_t dev);
583 void    device_set_ivars(device_t dev, void *ivars);
584 const   char *device_get_name(device_t dev);
585 const   char *device_get_nameunit(device_t dev);
586 void    *device_get_softc(device_t dev);
587 device_state_t  device_get_state(device_t dev);
588 int     device_get_unit(device_t dev);
589 struct sysctl_ctx_list *device_get_sysctl_ctx(device_t dev);
590 struct sysctl_oid *device_get_sysctl_tree(device_t dev);
591 int     device_has_quiet_children(device_t dev);
592 int     device_is_alive(device_t dev);  /* did probe succeed? */
593 int     device_is_attached(device_t dev);       /* did attach succeed? */
594 int     device_is_enabled(device_t dev);
595 int     device_is_suspended(device_t dev);
596 int     device_is_quiet(device_t dev);
597 device_t device_lookup_by_name(const char *name);
598 int     device_print_prettyname(device_t dev);
599 int     device_printf(device_t dev, const char *, ...) __printflike(2, 3);
600 int     device_probe(device_t dev);
601 int     device_probe_and_attach(device_t dev);
602 int     device_probe_child(device_t bus, device_t dev);
603 int     device_quiesce(device_t dev);
604 void    device_quiet(device_t dev);
605 void    device_quiet_children(device_t dev);
606 void    device_set_desc(device_t dev, const char* desc);
607 void    device_set_desc_copy(device_t dev, const char* desc);
608 int     device_set_devclass(device_t dev, const char *classname);
609 int     device_set_devclass_fixed(device_t dev, const char *classname);
610 int     device_set_driver(device_t dev, driver_t *driver);
611 void    device_set_flags(device_t dev, u_int32_t flags);
612 void    device_set_softc(device_t dev, void *softc);
613 void    device_free_softc(void *softc);
614 void    device_claim_softc(device_t dev);
615 int     device_set_unit(device_t dev, int unit);        /* XXX DONT USE XXX */
616 int     device_shutdown(device_t dev);
617 void    device_unbusy(device_t dev);
618 void    device_verbose(device_t dev);
619
620 /*
621  * Access functions for devclass.
622  */
623 int             devclass_add_driver(devclass_t dc, driver_t *driver,
624                                     int pass, devclass_t *dcp);
625 devclass_t      devclass_create(const char *classname);
626 int             devclass_delete_driver(devclass_t busclass, driver_t *driver);
627 devclass_t      devclass_find(const char *classname);
628 const char      *devclass_get_name(devclass_t dc);
629 device_t        devclass_get_device(devclass_t dc, int unit);
630 void    *devclass_get_softc(devclass_t dc, int unit);
631 int     devclass_get_devices(devclass_t dc, device_t **listp, int *countp);
632 int     devclass_get_drivers(devclass_t dc, driver_t ***listp, int *countp);
633 int     devclass_get_count(devclass_t dc);
634 int     devclass_get_maxunit(devclass_t dc);
635 int     devclass_find_free_unit(devclass_t dc, int unit);
636 void    devclass_set_parent(devclass_t dc, devclass_t pdc);
637 devclass_t      devclass_get_parent(devclass_t dc);
638 struct sysctl_ctx_list *devclass_get_sysctl_ctx(devclass_t dc);
639 struct sysctl_oid *devclass_get_sysctl_tree(devclass_t dc);
640
641 /*
642  * Access functions for device resources.
643  */
644 int     resource_int_value(const char *name, int unit, const char *resname,
645                            int *result);
646 int     resource_long_value(const char *name, int unit, const char *resname,
647                             long *result);
648 int     resource_string_value(const char *name, int unit, const char *resname,
649                               const char **result);
650 int     resource_disabled(const char *name, int unit);
651 int     resource_find_match(int *anchor, const char **name, int *unit,
652                             const char *resname, const char *value);
653 int     resource_find_dev(int *anchor, const char *name, int *unit,
654                           const char *resname, const char *value);
655 int     resource_unset_value(const char *name, int unit, const char *resname);
656
657 /*
658  * Functions for maintaining and checking consistency of
659  * bus information exported to userspace.
660  */
661 int     bus_data_generation_check(int generation);
662 void    bus_data_generation_update(void);
663
664 /**
665  * Some convenience defines for probe routines to return.  These are just
666  * suggested values, and there's nothing magical about them.
667  * BUS_PROBE_SPECIFIC is for devices that cannot be reprobed, and that no
668  * possible other driver may exist (typically legacy drivers who don't follow
669  * all the rules, or special needs drivers).  BUS_PROBE_VENDOR is the
670  * suggested value that vendor supplied drivers use.  This is for source or
671  * binary drivers that are not yet integrated into the FreeBSD tree.  Its use
672  * in the base OS is prohibited.  BUS_PROBE_DEFAULT is the normal return value
673  * for drivers to use.  It is intended that nearly all of the drivers in the
674  * tree should return this value.  BUS_PROBE_LOW_PRIORITY are for drivers that
675  * have special requirements like when there are two drivers that support
676  * overlapping series of hardware devices.  In this case the one that supports
677  * the older part of the line would return this value, while the one that
678  * supports the newer ones would return BUS_PROBE_DEFAULT.  BUS_PROBE_GENERIC
679  * is for drivers that wish to have a generic form and a specialized form,
680  * like is done with the pci bus and the acpi pci bus.  BUS_PROBE_HOOVER is
681  * for those buses that implement a generic device placeholder for devices on
682  * the bus that have no more specific driver for them (aka ugen).
683  * BUS_PROBE_NOWILDCARD or lower means that the device isn't really bidding
684  * for a device node, but accepts only devices that its parent has told it
685  * use this driver.
686  */
687 #define BUS_PROBE_SPECIFIC      0       /* Only I can use this device */
688 #define BUS_PROBE_VENDOR        (-10)   /* Vendor supplied driver */
689 #define BUS_PROBE_DEFAULT       (-20)   /* Base OS default driver */
690 #define BUS_PROBE_LOW_PRIORITY  (-40)   /* Older, less desirable drivers */
691 #define BUS_PROBE_GENERIC       (-100)  /* generic driver for dev */
692 #define BUS_PROBE_HOOVER        (-1000000) /* Driver for any dev on bus */
693 #define BUS_PROBE_NOWILDCARD    (-2000000000) /* No wildcard device matches */
694
695 /**
696  * During boot, the device tree is scanned multiple times.  Each scan,
697  * or pass, drivers may be attached to devices.  Each driver
698  * attachment is assigned a pass number.  Drivers may only probe and
699  * attach to devices if their pass number is less than or equal to the
700  * current system-wide pass number.  The default pass is the last pass
701  * and is used by most drivers.  Drivers needed by the scheduler are
702  * probed in earlier passes.
703  */
704 #define BUS_PASS_ROOT           0       /* Used to attach root0. */
705 #define BUS_PASS_BUS            10      /* Buses and bridges. */
706 #define BUS_PASS_CPU            20      /* CPU devices. */
707 #define BUS_PASS_RESOURCE       30      /* Resource discovery. */
708 #define BUS_PASS_INTERRUPT      40      /* Interrupt controllers. */
709 #define BUS_PASS_TIMER          50      /* Timers and clocks. */
710 #define BUS_PASS_SCHEDULER      60      /* Start scheduler. */
711 #define BUS_PASS_SUPPORTDEV     100000  /* Drivers which support DEFAULT drivers. */
712 #define BUS_PASS_DEFAULT        __INT_MAX /* Everything else. */
713
714 #define BUS_PASS_ORDER_FIRST    0
715 #define BUS_PASS_ORDER_EARLY    2
716 #define BUS_PASS_ORDER_MIDDLE   5
717 #define BUS_PASS_ORDER_LATE     7
718 #define BUS_PASS_ORDER_LAST     9
719
720 extern int bus_current_pass;
721
722 void    bus_set_pass(int pass);
723
724 /**
725  * Shorthands for constructing method tables.
726  */
727 #define DEVMETHOD       KOBJMETHOD
728 #define DEVMETHOD_END   KOBJMETHOD_END
729
730 /*
731  * Some common device interfaces.
732  */
733 #include "device_if.h"
734 #include "bus_if.h"
735
736 struct  module;
737
738 int     driver_module_handler(struct module *, int, void *);
739
740 /**
741  * Module support for automatically adding drivers to buses.
742  */
743 struct driver_module_data {
744         int             (*dmd_chainevh)(struct module *, int, void *);
745         void            *dmd_chainarg;
746         const char      *dmd_busname;
747         kobj_class_t    dmd_driver;
748         devclass_t      *dmd_devclass;
749         int             dmd_pass;
750 };
751
752 #define EARLY_DRIVER_MODULE_ORDERED(name, busname, driver, devclass,    \
753     evh, arg, order, pass)                                              \
754                                                                         \
755 static struct driver_module_data name##_##busname##_driver_mod = {      \
756         evh, arg,                                                       \
757         #busname,                                                       \
758         (kobj_class_t) &driver,                                         \
759         &devclass,                                                      \
760         pass                                                            \
761 };                                                                      \
762                                                                         \
763 static moduledata_t name##_##busname##_mod = {                          \
764         #busname "/" #name,                                             \
765         driver_module_handler,                                          \
766         &name##_##busname##_driver_mod                                  \
767 };                                                                      \
768 DECLARE_MODULE(name##_##busname, name##_##busname##_mod,                \
769                SI_SUB_DRIVERS, order)
770
771 #define EARLY_DRIVER_MODULE(name, busname, driver, devclass, evh, arg, pass) \
772         EARLY_DRIVER_MODULE_ORDERED(name, busname, driver, devclass,    \
773             evh, arg, SI_ORDER_MIDDLE, pass)
774
775 #define DRIVER_MODULE_ORDERED(name, busname, driver, devclass, evh, arg,\
776     order)                                                              \
777         EARLY_DRIVER_MODULE_ORDERED(name, busname, driver, devclass,    \
778             evh, arg, order, BUS_PASS_DEFAULT)
779
780 #define DRIVER_MODULE(name, busname, driver, devclass, evh, arg)        \
781         EARLY_DRIVER_MODULE(name, busname, driver, devclass, evh, arg,  \
782             BUS_PASS_DEFAULT)
783
784 /**
785  * Generic ivar accessor generation macros for bus drivers
786  */
787 #define __BUS_ACCESSOR(varp, var, ivarp, ivar, type)                    \
788                                                                         \
789 static __inline type varp ## _get_ ## var(device_t dev)                 \
790 {                                                                       \
791         uintptr_t v;                                                    \
792         BUS_READ_IVAR(device_get_parent(dev), dev,                      \
793             ivarp ## _IVAR_ ## ivar, &v);                               \
794         return ((type) v);                                              \
795 }                                                                       \
796                                                                         \
797 static __inline void varp ## _set_ ## var(device_t dev, type t)         \
798 {                                                                       \
799         uintptr_t v = (uintptr_t) t;                                    \
800         BUS_WRITE_IVAR(device_get_parent(dev), dev,                     \
801             ivarp ## _IVAR_ ## ivar, v);                                \
802 }
803
804 /**
805  * Shorthand macros, taking resource argument
806  * Generated with sys/tools/bus_macro.sh
807  */
808
809 #define bus_barrier(r, o, l, f) \
810         bus_space_barrier((r)->r_bustag, (r)->r_bushandle, (o), (l), (f))
811 #define bus_read_1(r, o) \
812         bus_space_read_1((r)->r_bustag, (r)->r_bushandle, (o))
813 #define bus_read_multi_1(r, o, d, c) \
814         bus_space_read_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
815 #define bus_read_region_1(r, o, d, c) \
816         bus_space_read_region_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
817 #define bus_set_multi_1(r, o, v, c) \
818         bus_space_set_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
819 #define bus_set_region_1(r, o, v, c) \
820         bus_space_set_region_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
821 #define bus_write_1(r, o, v) \
822         bus_space_write_1((r)->r_bustag, (r)->r_bushandle, (o), (v))
823 #define bus_write_multi_1(r, o, d, c) \
824         bus_space_write_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
825 #define bus_write_region_1(r, o, d, c) \
826         bus_space_write_region_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
827 #define bus_read_stream_1(r, o) \
828         bus_space_read_stream_1((r)->r_bustag, (r)->r_bushandle, (o))
829 #define bus_read_multi_stream_1(r, o, d, c) \
830         bus_space_read_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
831 #define bus_read_region_stream_1(r, o, d, c) \
832         bus_space_read_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
833 #define bus_set_multi_stream_1(r, o, v, c) \
834         bus_space_set_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
835 #define bus_set_region_stream_1(r, o, v, c) \
836         bus_space_set_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
837 #define bus_write_stream_1(r, o, v) \
838         bus_space_write_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v))
839 #define bus_write_multi_stream_1(r, o, d, c) \
840         bus_space_write_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
841 #define bus_write_region_stream_1(r, o, d, c) \
842         bus_space_write_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
843 #define bus_read_2(r, o) \
844         bus_space_read_2((r)->r_bustag, (r)->r_bushandle, (o))
845 #define bus_read_multi_2(r, o, d, c) \
846         bus_space_read_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
847 #define bus_read_region_2(r, o, d, c) \
848         bus_space_read_region_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
849 #define bus_set_multi_2(r, o, v, c) \
850         bus_space_set_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
851 #define bus_set_region_2(r, o, v, c) \
852         bus_space_set_region_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
853 #define bus_write_2(r, o, v) \
854         bus_space_write_2((r)->r_bustag, (r)->r_bushandle, (o), (v))
855 #define bus_write_multi_2(r, o, d, c) \
856         bus_space_write_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
857 #define bus_write_region_2(r, o, d, c) \
858         bus_space_write_region_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
859 #define bus_read_stream_2(r, o) \
860         bus_space_read_stream_2((r)->r_bustag, (r)->r_bushandle, (o))
861 #define bus_read_multi_stream_2(r, o, d, c) \
862         bus_space_read_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
863 #define bus_read_region_stream_2(r, o, d, c) \
864         bus_space_read_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
865 #define bus_set_multi_stream_2(r, o, v, c) \
866         bus_space_set_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
867 #define bus_set_region_stream_2(r, o, v, c) \
868         bus_space_set_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
869 #define bus_write_stream_2(r, o, v) \
870         bus_space_write_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v))
871 #define bus_write_multi_stream_2(r, o, d, c) \
872         bus_space_write_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
873 #define bus_write_region_stream_2(r, o, d, c) \
874         bus_space_write_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
875 #define bus_read_4(r, o) \
876         bus_space_read_4((r)->r_bustag, (r)->r_bushandle, (o))
877 #define bus_read_multi_4(r, o, d, c) \
878         bus_space_read_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
879 #define bus_read_region_4(r, o, d, c) \
880         bus_space_read_region_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
881 #define bus_set_multi_4(r, o, v, c) \
882         bus_space_set_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
883 #define bus_set_region_4(r, o, v, c) \
884         bus_space_set_region_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
885 #define bus_write_4(r, o, v) \
886         bus_space_write_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
887 #define bus_write_multi_4(r, o, d, c) \
888         bus_space_write_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
889 #define bus_write_region_4(r, o, d, c) \
890         bus_space_write_region_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
891 #define bus_read_stream_4(r, o) \
892         bus_space_read_stream_4((r)->r_bustag, (r)->r_bushandle, (o))
893 #define bus_read_multi_stream_4(r, o, d, c) \
894         bus_space_read_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
895 #define bus_read_region_stream_4(r, o, d, c) \
896         bus_space_read_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
897 #define bus_set_multi_stream_4(r, o, v, c) \
898         bus_space_set_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
899 #define bus_set_region_stream_4(r, o, v, c) \
900         bus_space_set_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
901 #define bus_write_stream_4(r, o, v) \
902         bus_space_write_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
903 #define bus_write_multi_stream_4(r, o, d, c) \
904         bus_space_write_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
905 #define bus_write_region_stream_4(r, o, d, c) \
906         bus_space_write_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
907 #define bus_read_8(r, o) \
908         bus_space_read_8((r)->r_bustag, (r)->r_bushandle, (o))
909 #define bus_read_multi_8(r, o, d, c) \
910         bus_space_read_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
911 #define bus_read_region_8(r, o, d, c) \
912         bus_space_read_region_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
913 #define bus_set_multi_8(r, o, v, c) \
914         bus_space_set_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
915 #define bus_set_region_8(r, o, v, c) \
916         bus_space_set_region_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
917 #define bus_write_8(r, o, v) \
918         bus_space_write_8((r)->r_bustag, (r)->r_bushandle, (o), (v))
919 #define bus_write_multi_8(r, o, d, c) \
920         bus_space_write_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
921 #define bus_write_region_8(r, o, d, c) \
922         bus_space_write_region_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
923 #define bus_read_stream_8(r, o) \
924         bus_space_read_stream_8((r)->r_bustag, (r)->r_bushandle, (o))
925 #define bus_read_multi_stream_8(r, o, d, c) \
926         bus_space_read_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
927 #define bus_read_region_stream_8(r, o, d, c) \
928         bus_space_read_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
929 #define bus_set_multi_stream_8(r, o, v, c) \
930         bus_space_set_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
931 #define bus_set_region_stream_8(r, o, v, c) \
932         bus_space_set_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
933 #define bus_write_stream_8(r, o, v) \
934         bus_space_write_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v))
935 #define bus_write_multi_stream_8(r, o, d, c) \
936         bus_space_write_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
937 #define bus_write_region_stream_8(r, o, d, c) \
938         bus_space_write_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
939 #endif /* _KERNEL */
940
941 #endif /* !_SYS_BUS_H_ */