]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/bus.h
Import x86emu from OpenBSD as of OPENBSD_4_6.
[FreeBSD/FreeBSD.git] / sys / sys / bus.h
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  * $FreeBSD$
27  */
28
29 #ifndef _SYS_BUS_H_
30 #define _SYS_BUS_H_
31
32 #include <machine/_limits.h>
33 #include <sys/_bus_dma.h>
34
35 /**
36  * @defgroup NEWBUS newbus - a generic framework for managing devices
37  * @{
38  */
39
40 /**
41  * @brief Interface information structure.
42  */
43 struct u_businfo {
44         int     ub_version;             /**< @brief interface version */
45 #define BUS_USER_VERSION        1
46         int     ub_generation;          /**< @brief generation count */
47 };
48
49 /**
50  * @brief State of the device.
51  */
52 typedef enum device_state {
53         DS_NOTPRESENT,                  /**< @brief not probed or probe failed */
54         DS_ALIVE,                       /**< @brief probe succeeded */
55         DS_ATTACHING,                   /**< @brief attaching is in progress */
56         DS_ATTACHED,                    /**< @brief attach method called */
57         DS_BUSY,                        /**< @brief device is open */
58         DS_DETACHING                    /**< @brief detaching is in progress */
59
60 } device_state_t;
61
62 /**
63  * @brief Device information exported to userspace.
64  */
65 struct u_device {
66         uintptr_t       dv_handle;
67         uintptr_t       dv_parent;
68
69         char            dv_name[32];            /**< @brief Name of device in tree. */
70         char            dv_desc[32];            /**< @brief Driver description */
71         char            dv_drivername[32];      /**< @brief Driver name */
72         char            dv_pnpinfo[128];        /**< @brief Plug and play info */
73         char            dv_location[128];       /**< @brief Where is the device? */
74         uint32_t        dv_devflags;            /**< @brief API Flags for device */
75         uint16_t        dv_flags;               /**< @brief flags for dev date */
76         device_state_t  dv_state;               /**< @brief State of attachment */
77         /* XXX more driver info? */
78 };
79
80 #ifdef _KERNEL
81
82 #include <sys/queue.h>
83 #include <sys/kobj.h>
84
85 /**
86  * devctl hooks.  Typically one should use the devctl_notify
87  * hook to send the message.  However, devctl_queue_data is also
88  * included in case devctl_notify isn't sufficiently general.
89  */
90 boolean_t devctl_process_running(void);
91 void devctl_notify(const char *__system, const char *__subsystem,
92     const char *__type, const char *__data);
93 void devctl_queue_data(char *__data);
94
95 /**
96  * @brief A device driver (included mainly for compatibility with
97  * FreeBSD 4.x).
98  */
99 typedef struct kobj_class       driver_t;
100
101 /**
102  * @brief A device class
103  *
104  * The devclass object has two main functions in the system. The first
105  * is to manage the allocation of unit numbers for device instances
106  * and the second is to hold the list of device drivers for a
107  * particular bus type. Each devclass has a name and there cannot be
108  * two devclasses with the same name. This ensures that unique unit
109  * numbers are allocated to device instances.
110  *
111  * Drivers that support several different bus attachments (e.g. isa,
112  * pci, pccard) should all use the same devclass to ensure that unit
113  * numbers do not conflict.
114  *
115  * Each devclass may also have a parent devclass. This is used when
116  * searching for device drivers to allow a form of inheritance. When
117  * matching drivers with devices, first the driver list of the parent
118  * device's devclass is searched. If no driver is found in that list,
119  * the search continues in the parent devclass (if any).
120  */
121 typedef struct devclass         *devclass_t;
122
123 /**
124  * @brief A device method (included mainly for compatibility with
125  * FreeBSD 4.x).
126  */
127 #define device_method_t         kobj_method_t
128
129 /**
130  * @brief Driver interrupt filter return values
131  *
132  * If a driver provides an interrupt filter routine it must return an
133  * integer consisting of oring together zero or more of the following
134  * flags:
135  *
136  *      FILTER_STRAY    - this device did not trigger the interrupt
137  *      FILTER_HANDLED  - the interrupt has been fully handled and can be EOId
138  *      FILTER_SCHEDULE_THREAD - the threaded interrupt handler should be
139  *                        scheduled to execute
140  *
141  * If the driver does not provide a filter, then the interrupt code will
142  * act is if the filter had returned FILTER_SCHEDULE_THREAD.  Note that it
143  * is illegal to specify any other flag with FILTER_STRAY and that it is
144  * illegal to not specify either of FILTER_HANDLED or FILTER_SCHEDULE_THREAD
145  * if FILTER_STRAY is not specified.
146  */
147 #define FILTER_STRAY            0x01
148 #define FILTER_HANDLED          0x02
149 #define FILTER_SCHEDULE_THREAD  0x04
150
151 /**
152  * @brief Driver interrupt service routines
153  *
154  * The filter routine is run in primary interrupt context and may not
155  * block or use regular mutexes.  It may only use spin mutexes for
156  * synchronization.  The filter may either completely handle the
157  * interrupt or it may perform some of the work and defer more
158  * expensive work to the regular interrupt handler.  If a filter
159  * routine is not registered by the driver, then the regular interrupt
160  * handler is always used to handle interrupts from this device.
161  *
162  * The regular interrupt handler executes in its own thread context
163  * and may use regular mutexes.  However, it is prohibited from
164  * sleeping on a sleep queue.
165  */
166 typedef int driver_filter_t(void*);
167 typedef void driver_intr_t(void*);
168
169 /**
170  * @brief Interrupt type bits.
171  * 
172  * These flags are used both by newbus interrupt
173  * registration (nexus.c) and also in struct intrec, which defines
174  * interrupt properties.
175  *
176  * XXX We should probably revisit this and remove the vestiges of the
177  * spls implicit in names like INTR_TYPE_TTY. In the meantime, don't
178  * confuse things by renaming them (Grog, 18 July 2000).
179  *
180  * We define this in terms of bits because some devices may belong
181  * to multiple classes (and therefore need to be included in
182  * multiple interrupt masks, which is what this really serves to
183  * indicate. Buses which do interrupt remapping will want to
184  * change their type to reflect what sort of devices are underneath.
185  */
186 enum intr_type {
187         INTR_TYPE_TTY = 1,
188         INTR_TYPE_BIO = 2,
189         INTR_TYPE_NET = 4,
190         INTR_TYPE_CAM = 8,
191         INTR_TYPE_MISC = 16,
192         INTR_TYPE_CLK = 32,
193         INTR_TYPE_AV = 64,
194         INTR_FAST = 128,
195         INTR_EXCL = 256,                /* exclusive interrupt */
196         INTR_MPSAFE = 512,              /* this interrupt is SMP safe */
197         INTR_ENTROPY = 1024             /* this interrupt provides entropy */
198 };
199
200 enum intr_trigger {
201         INTR_TRIGGER_CONFORM = 0,
202         INTR_TRIGGER_EDGE = 1,
203         INTR_TRIGGER_LEVEL = 2
204 };
205
206 enum intr_polarity {
207         INTR_POLARITY_CONFORM = 0,
208         INTR_POLARITY_HIGH = 1,
209         INTR_POLARITY_LOW = 2
210 };
211
212 typedef int (*devop_t)(void);
213
214 /**
215  * @brief This structure is deprecated.
216  *
217  * Use the kobj(9) macro DEFINE_CLASS to
218  * declare classes which implement device drivers.
219  */
220 struct driver {
221         KOBJ_CLASS_FIELDS;
222 };
223
224 /*
225  * Definitions for drivers which need to keep simple lists of resources
226  * for their child devices.
227  */
228 struct  resource;
229
230 /**
231  * @brief An entry for a single resource in a resource list.
232  */
233 struct resource_list_entry {
234         STAILQ_ENTRY(resource_list_entry) link;
235         int     type;                   /**< @brief type argument to alloc_resource */
236         int     rid;                    /**< @brief resource identifier */
237         struct  resource *res;          /**< @brief the real resource when allocated */
238         u_long  start;                  /**< @brief start of resource range */
239         u_long  end;                    /**< @brief end of resource range */
240         u_long  count;                  /**< @brief count within range */
241 };
242 STAILQ_HEAD(resource_list, resource_list_entry);
243
244 void    resource_list_init(struct resource_list *rl);
245 void    resource_list_free(struct resource_list *rl);
246 struct resource_list_entry *
247         resource_list_add(struct resource_list *rl,
248                           int type, int rid,
249                           u_long start, u_long end, u_long count);
250 int     resource_list_add_next(struct resource_list *rl,
251                           int type,
252                           u_long start, u_long end, u_long count);
253 struct resource_list_entry*
254         resource_list_find(struct resource_list *rl,
255                            int type, int rid);
256 void    resource_list_delete(struct resource_list *rl,
257                              int type, int rid);
258 struct resource *
259         resource_list_alloc(struct resource_list *rl,
260                             device_t bus, device_t child,
261                             int type, int *rid,
262                             u_long start, u_long end,
263                             u_long count, u_int flags);
264 int     resource_list_release(struct resource_list *rl,
265                               device_t bus, device_t child,
266                               int type, int rid, struct resource *res);
267 void    resource_list_purge(struct resource_list *rl);
268 int     resource_list_print_type(struct resource_list *rl,
269                                  const char *name, int type,
270                                  const char *format);
271
272 /*
273  * The root bus, to which all top-level busses are attached.
274  */
275 extern device_t root_bus;
276 extern devclass_t root_devclass;
277 void    root_bus_configure(void);
278
279 /*
280  * Useful functions for implementing busses.
281  */
282
283 int     bus_generic_activate_resource(device_t dev, device_t child, int type,
284                                       int rid, struct resource *r);
285 device_t
286         bus_generic_add_child(device_t dev, int order, const char *name,
287                               int unit);
288 struct resource *
289         bus_generic_alloc_resource(device_t bus, device_t child, int type,
290                                    int *rid, u_long start, u_long end,
291                                    u_long count, u_int flags);
292 int     bus_generic_attach(device_t dev);
293 int     bus_generic_bind_intr(device_t dev, device_t child,
294                               struct resource *irq, int cpu);
295 int     bus_generic_child_present(device_t dev, device_t child);
296 int     bus_generic_config_intr(device_t, int, enum intr_trigger,
297                                 enum intr_polarity);
298 int     bus_generic_deactivate_resource(device_t dev, device_t child, int type,
299                                         int rid, struct resource *r);
300 int     bus_generic_detach(device_t dev);
301 void    bus_generic_driver_added(device_t dev, driver_t *driver);
302 bus_dma_tag_t
303         bus_generic_get_dma_tag(device_t dev, device_t child);
304 struct resource_list *
305         bus_generic_get_resource_list (device_t, device_t);
306 void    bus_generic_new_pass(device_t dev);
307 int     bus_print_child_header(device_t dev, device_t child);
308 int     bus_print_child_footer(device_t dev, device_t child);
309 int     bus_generic_print_child(device_t dev, device_t child);
310 int     bus_generic_probe(device_t dev);
311 int     bus_generic_read_ivar(device_t dev, device_t child, int which,
312                               uintptr_t *result);
313 int     bus_generic_release_resource(device_t bus, device_t child,
314                                      int type, int rid, struct resource *r);
315 int     bus_generic_resume(device_t dev);
316 int     bus_generic_setup_intr(device_t dev, device_t child,
317                                struct resource *irq, int flags,
318                                driver_filter_t *filter, driver_intr_t *intr, 
319                                void *arg, void **cookiep);
320
321 struct resource *
322         bus_generic_rl_alloc_resource (device_t, device_t, int, int *,
323                                        u_long, u_long, u_long, u_int);
324 void    bus_generic_rl_delete_resource (device_t, device_t, int, int);
325 int     bus_generic_rl_get_resource (device_t, device_t, int, int, u_long *,
326                                      u_long *);
327 int     bus_generic_rl_set_resource (device_t, device_t, int, int, u_long,
328                                      u_long);
329 int     bus_generic_rl_release_resource (device_t, device_t, int, int,
330                                          struct resource *);
331
332 int     bus_generic_shutdown(device_t dev);
333 int     bus_generic_suspend(device_t dev);
334 int     bus_generic_teardown_intr(device_t dev, device_t child,
335                                   struct resource *irq, void *cookie);
336 int     bus_generic_write_ivar(device_t dev, device_t child, int which,
337                                uintptr_t value);
338
339 /*
340  * Wrapper functions for the BUS_*_RESOURCE methods to make client code
341  * a little simpler.
342  */
343
344 struct resource_spec {
345         int     type;
346         int     rid;
347         int     flags;
348 };
349
350 int bus_alloc_resources(device_t dev, struct resource_spec *rs, struct resource **res);
351 void bus_release_resources(device_t dev, const struct resource_spec *rs, struct resource **res);
352
353 struct  resource *bus_alloc_resource(device_t dev, int type, int *rid,
354                                      u_long start, u_long end, u_long count,
355                                      u_int flags);
356 int     bus_activate_resource(device_t dev, int type, int rid,
357                               struct resource *r);
358 int     bus_deactivate_resource(device_t dev, int type, int rid,
359                                 struct resource *r);
360 bus_dma_tag_t bus_get_dma_tag(device_t dev);
361 int     bus_release_resource(device_t dev, int type, int rid,
362                              struct resource *r);
363 int     bus_free_resource(device_t dev, int type, struct resource *r);
364 int     bus_setup_intr(device_t dev, struct resource *r, int flags,
365                        driver_filter_t filter, driver_intr_t handler, 
366                        void *arg, void **cookiep);
367 int     bus_teardown_intr(device_t dev, struct resource *r, void *cookie);
368 int     bus_bind_intr(device_t dev, struct resource *r, int cpu);
369 int     bus_set_resource(device_t dev, int type, int rid,
370                          u_long start, u_long count);
371 int     bus_get_resource(device_t dev, int type, int rid,
372                          u_long *startp, u_long *countp);
373 u_long  bus_get_resource_start(device_t dev, int type, int rid);
374 u_long  bus_get_resource_count(device_t dev, int type, int rid);
375 void    bus_delete_resource(device_t dev, int type, int rid);
376 int     bus_child_present(device_t child);
377 int     bus_child_pnpinfo_str(device_t child, char *buf, size_t buflen);
378 int     bus_child_location_str(device_t child, char *buf, size_t buflen);
379 void    bus_enumerate_hinted_children(device_t bus);
380
381 static __inline struct resource *
382 bus_alloc_resource_any(device_t dev, int type, int *rid, u_int flags)
383 {
384         return (bus_alloc_resource(dev, type, rid, 0ul, ~0ul, 1, flags));
385 }
386
387 /*
388  * Access functions for device.
389  */
390 device_t        device_add_child(device_t dev, const char *name, int unit);
391 device_t        device_add_child_ordered(device_t dev, int order,
392                                          const char *name, int unit);
393 void    device_busy(device_t dev);
394 int     device_delete_child(device_t dev, device_t child);
395 int     device_attach(device_t dev);
396 int     device_detach(device_t dev);
397 void    device_disable(device_t dev);
398 void    device_enable(device_t dev);
399 device_t        device_find_child(device_t dev, const char *classname,
400                                   int unit);
401 const char      *device_get_desc(device_t dev);
402 devclass_t      device_get_devclass(device_t dev);
403 driver_t        *device_get_driver(device_t dev);
404 u_int32_t       device_get_flags(device_t dev);
405 device_t        device_get_parent(device_t dev);
406 int     device_get_children(device_t dev, device_t **listp, int *countp);
407 void    *device_get_ivars(device_t dev);
408 void    device_set_ivars(device_t dev, void *ivars);
409 const   char *device_get_name(device_t dev);
410 const   char *device_get_nameunit(device_t dev);
411 void    *device_get_softc(device_t dev);
412 device_state_t  device_get_state(device_t dev);
413 int     device_get_unit(device_t dev);
414 struct sysctl_ctx_list *device_get_sysctl_ctx(device_t dev);
415 struct sysctl_oid *device_get_sysctl_tree(device_t dev);
416 int     device_is_alive(device_t dev);  /* did probe succeed? */
417 int     device_is_attached(device_t dev);       /* did attach succeed? */
418 int     device_is_enabled(device_t dev);
419 int     device_is_quiet(device_t dev);
420 int     device_print_prettyname(device_t dev);
421 int     device_printf(device_t dev, const char *, ...) __printflike(2, 3);
422 int     device_probe(device_t dev);
423 int     device_probe_and_attach(device_t dev);
424 int     device_probe_child(device_t bus, device_t dev);
425 int     device_quiesce(device_t dev);
426 void    device_quiet(device_t dev);
427 void    device_set_desc(device_t dev, const char* desc);
428 void    device_set_desc_copy(device_t dev, const char* desc);
429 int     device_set_devclass(device_t dev, const char *classname);
430 int     device_set_driver(device_t dev, driver_t *driver);
431 void    device_set_flags(device_t dev, u_int32_t flags);
432 void    device_set_softc(device_t dev, void *softc);
433 int     device_set_unit(device_t dev, int unit);        /* XXX DONT USE XXX */
434 int     device_shutdown(device_t dev);
435 void    device_unbusy(device_t dev);
436 void    device_verbose(device_t dev);
437
438 /*
439  * Access functions for devclass.
440  */
441 devclass_t      devclass_create(const char *classname);
442 devclass_t      devclass_find(const char *classname);
443 const char      *devclass_get_name(devclass_t dc);
444 device_t        devclass_get_device(devclass_t dc, int unit);
445 void    *devclass_get_softc(devclass_t dc, int unit);
446 int     devclass_get_devices(devclass_t dc, device_t **listp, int *countp);
447 int     devclass_get_drivers(devclass_t dc, driver_t ***listp, int *countp);
448 int     devclass_get_count(devclass_t dc);
449 int     devclass_get_maxunit(devclass_t dc);
450 int     devclass_find_free_unit(devclass_t dc, int unit);
451 void    devclass_set_parent(devclass_t dc, devclass_t pdc);
452 devclass_t      devclass_get_parent(devclass_t dc);
453 struct sysctl_ctx_list *devclass_get_sysctl_ctx(devclass_t dc);
454 struct sysctl_oid *devclass_get_sysctl_tree(devclass_t dc);
455
456 /*
457  * Access functions for device resources.
458  */
459
460 int     resource_int_value(const char *name, int unit, const char *resname,
461                            int *result);
462 int     resource_long_value(const char *name, int unit, const char *resname,
463                             long *result);
464 int     resource_string_value(const char *name, int unit, const char *resname,
465                               const char **result);
466 int     resource_disabled(const char *name, int unit);
467 int     resource_find_match(int *anchor, const char **name, int *unit,
468                             const char *resname, const char *value);
469 int     resource_find_dev(int *anchor, const char *name, int *unit,
470                           const char *resname, const char *value);
471 int     resource_set_int(const char *name, int unit, const char *resname,
472                          int value);
473 int     resource_set_long(const char *name, int unit, const char *resname,
474                           long value);
475 int     resource_set_string(const char *name, int unit, const char *resname,
476                             const char *value);
477 /*
478  * Functions for maintaining and checking consistency of
479  * bus information exported to userspace.
480  */
481 int     bus_data_generation_check(int generation);
482 void    bus_data_generation_update(void);
483
484 /**
485  * Some convenience defines for probe routines to return.  These are just
486  * suggested values, and there's nothing magical about them.
487  * BUS_PROBE_SPECIFIC is for devices that cannot be reprobed, and that no
488  * possible other driver may exist (typically legacy drivers who don't fallow
489  * all the rules, or special needs drivers).  BUS_PROBE_VENDOR is the
490  * suggested value that vendor supplied drivers use.  This is for source or
491  * binary drivers that are not yet integrated into the FreeBSD tree.  Its use
492  * in the base OS is prohibited.  BUS_PROBE_DEFAULT is the normal return value
493  * for drivers to use.  It is intended that nearly all of the drivers in the
494  * tree should return this value.  BUS_PROBE_LOW_PRIORITY are for drivers that
495  * have special requirements like when there are two drivers that support
496  * overlapping series of hardware devices.  In this case the one that supports
497  * the older part of the line would return this value, while the one that
498  * supports the newer ones would return BUS_PROBE_DEFAULT.  BUS_PROBE_GENERIC
499  * is for drivers that wish to have a generic form and a specialized form,
500  * like is done with the pci bus and the acpi pci bus.  BUS_PROBE_HOOVER is
501  * for those busses that implement a generic device place-holder for devices on
502  * the bus that have no more specific river for them (aka ugen).
503  * BUS_PROBE_NOWILDCARD or lower means that the device isn't really bidding
504  * for a device node, but accepts only devices that its parent has told it
505  * use this driver.
506  */
507 #define BUS_PROBE_SPECIFIC      0       /* Only I can use this device */
508 #define BUS_PROBE_VENDOR        (-10)   /* Vendor supplied driver */
509 #define BUS_PROBE_DEFAULT       (-20)   /* Base OS default driver */
510 #define BUS_PROBE_LOW_PRIORITY  (-40)   /* Older, less desirable drivers */
511 #define BUS_PROBE_GENERIC       (-100)  /* generic driver for dev */
512 #define BUS_PROBE_HOOVER        (-500)  /* Generic dev for all devs on bus */
513 #define BUS_PROBE_NOWILDCARD    (-2000000000) /* No wildcard device matches */
514
515 /**
516  * During boot, the device tree is scanned multiple times.  Each scan,
517  * or pass, drivers may be attached to devices.  Each driver
518  * attachment is assigned a pass number.  Drivers may only probe and
519  * attach to devices if their pass number is less than or equal to the
520  * current system-wide pass number.  The default pass is the last pass
521  * and is used by most drivers.  Drivers needed by the scheduler are
522  * probed in earlier passes.
523  */
524 #define BUS_PASS_ROOT           0       /* Used to attach root0. */
525 #define BUS_PASS_BUS            10      /* Busses and bridges. */
526 #define BUS_PASS_CPU            20      /* CPU devices. */
527 #define BUS_PASS_RESOURCE       30      /* Resource discovery. */
528 #define BUS_PASS_INTERRUPT      40      /* Interrupt controllers. */
529 #define BUS_PASS_TIMER          50      /* Timers and clocks. */
530 #define BUS_PASS_SCHEDULER      60      /* Start scheduler. */
531 #define BUS_PASS_DEFAULT        __INT_MAX /* Everything else. */
532
533 extern int bus_current_pass;
534
535 void    bus_set_pass(int pass);
536
537 /**
538  * Shorthand for constructing method tables.
539  */
540 #define DEVMETHOD       KOBJMETHOD
541
542 /*
543  * Some common device interfaces.
544  */
545 #include "device_if.h"
546 #include "bus_if.h"
547
548 struct  module;
549
550 int     driver_module_handler(struct module *, int, void *);
551
552 /**
553  * Module support for automatically adding drivers to busses.
554  */
555 struct driver_module_data {
556         int             (*dmd_chainevh)(struct module *, int, void *);
557         void            *dmd_chainarg;
558         const char      *dmd_busname;
559         kobj_class_t    dmd_driver;
560         devclass_t      *dmd_devclass;
561         int             dmd_pass;
562 };
563
564 #define EARLY_DRIVER_MODULE(name, busname, driver, devclass, evh, arg, pass) \
565                                                                         \
566 static struct driver_module_data name##_##busname##_driver_mod = {      \
567         evh, arg,                                                       \
568         #busname,                                                       \
569         (kobj_class_t) &driver,                                         \
570         &devclass,                                                      \
571         pass                                                            \
572 };                                                                      \
573                                                                         \
574 static moduledata_t name##_##busname##_mod = {                          \
575         #busname "/" #name,                                             \
576         driver_module_handler,                                          \
577         &name##_##busname##_driver_mod                                  \
578 };                                                                      \
579 DECLARE_MODULE(name##_##busname, name##_##busname##_mod,                \
580                SI_SUB_DRIVERS, SI_ORDER_MIDDLE)
581
582 #define DRIVER_MODULE(name, busname, driver, devclass, evh, arg)        \
583         EARLY_DRIVER_MODULE(name, busname, driver, devclass, evh, arg,  \
584             BUS_PASS_DEFAULT)
585
586 /**
587  * Generic ivar accessor generation macros for bus drivers
588  */
589 #define __BUS_ACCESSOR(varp, var, ivarp, ivar, type)                    \
590                                                                         \
591 static __inline type varp ## _get_ ## var(device_t dev)                 \
592 {                                                                       \
593         uintptr_t v;                                                    \
594         BUS_READ_IVAR(device_get_parent(dev), dev,                      \
595             ivarp ## _IVAR_ ## ivar, &v);                               \
596         return ((type) v);                                              \
597 }                                                                       \
598                                                                         \
599 static __inline void varp ## _set_ ## var(device_t dev, type t)         \
600 {                                                                       \
601         uintptr_t v = (uintptr_t) t;                                    \
602         BUS_WRITE_IVAR(device_get_parent(dev), dev,                     \
603             ivarp ## _IVAR_ ## ivar, v);                                \
604 }
605
606 /**
607  * Shorthand macros, taking resource argument
608  * Generated with sys/tools/bus_macro.sh
609  */
610
611 #define bus_barrier(r, o, l, f) \
612         bus_space_barrier((r)->r_bustag, (r)->r_bushandle, (o), (l), (f))
613 #define bus_read_1(r, o) \
614         bus_space_read_1((r)->r_bustag, (r)->r_bushandle, (o))
615 #define bus_read_multi_1(r, o, d, c) \
616         bus_space_read_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
617 #define bus_read_region_1(r, o, d, c) \
618         bus_space_read_region_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
619 #define bus_set_multi_1(r, o, v, c) \
620         bus_space_set_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
621 #define bus_set_region_1(r, o, v, c) \
622         bus_space_set_region_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
623 #define bus_write_1(r, o, v) \
624         bus_space_write_1((r)->r_bustag, (r)->r_bushandle, (o), (v))
625 #define bus_write_multi_1(r, o, d, c) \
626         bus_space_write_multi_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
627 #define bus_write_region_1(r, o, d, c) \
628         bus_space_write_region_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
629 #define bus_read_stream_1(r, o) \
630         bus_space_read_stream_1((r)->r_bustag, (r)->r_bushandle, (o))
631 #define bus_read_multi_stream_1(r, o, d, c) \
632         bus_space_read_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
633 #define bus_read_region_stream_1(r, o, d, c) \
634         bus_space_read_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
635 #define bus_set_multi_stream_1(r, o, v, c) \
636         bus_space_set_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
637 #define bus_set_region_stream_1(r, o, v, c) \
638         bus_space_set_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
639 #define bus_write_stream_1(r, o, v) \
640         bus_space_write_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (v))
641 #define bus_write_multi_stream_1(r, o, d, c) \
642         bus_space_write_multi_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
643 #define bus_write_region_stream_1(r, o, d, c) \
644         bus_space_write_region_stream_1((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
645 #define bus_read_2(r, o) \
646         bus_space_read_2((r)->r_bustag, (r)->r_bushandle, (o))
647 #define bus_read_multi_2(r, o, d, c) \
648         bus_space_read_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
649 #define bus_read_region_2(r, o, d, c) \
650         bus_space_read_region_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
651 #define bus_set_multi_2(r, o, v, c) \
652         bus_space_set_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
653 #define bus_set_region_2(r, o, v, c) \
654         bus_space_set_region_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
655 #define bus_write_2(r, o, v) \
656         bus_space_write_2((r)->r_bustag, (r)->r_bushandle, (o), (v))
657 #define bus_write_multi_2(r, o, d, c) \
658         bus_space_write_multi_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
659 #define bus_write_region_2(r, o, d, c) \
660         bus_space_write_region_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
661 #define bus_read_stream_2(r, o) \
662         bus_space_read_stream_2((r)->r_bustag, (r)->r_bushandle, (o))
663 #define bus_read_multi_stream_2(r, o, d, c) \
664         bus_space_read_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
665 #define bus_read_region_stream_2(r, o, d, c) \
666         bus_space_read_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
667 #define bus_set_multi_stream_2(r, o, v, c) \
668         bus_space_set_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
669 #define bus_set_region_stream_2(r, o, v, c) \
670         bus_space_set_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
671 #define bus_write_stream_2(r, o, v) \
672         bus_space_write_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (v))
673 #define bus_write_multi_stream_2(r, o, d, c) \
674         bus_space_write_multi_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
675 #define bus_write_region_stream_2(r, o, d, c) \
676         bus_space_write_region_stream_2((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
677 #define bus_read_4(r, o) \
678         bus_space_read_4((r)->r_bustag, (r)->r_bushandle, (o))
679 #define bus_read_multi_4(r, o, d, c) \
680         bus_space_read_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
681 #define bus_read_region_4(r, o, d, c) \
682         bus_space_read_region_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
683 #define bus_set_multi_4(r, o, v, c) \
684         bus_space_set_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
685 #define bus_set_region_4(r, o, v, c) \
686         bus_space_set_region_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
687 #define bus_write_4(r, o, v) \
688         bus_space_write_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
689 #define bus_write_multi_4(r, o, d, c) \
690         bus_space_write_multi_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
691 #define bus_write_region_4(r, o, d, c) \
692         bus_space_write_region_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
693 #define bus_read_stream_4(r, o) \
694         bus_space_read_stream_4((r)->r_bustag, (r)->r_bushandle, (o))
695 #define bus_read_multi_stream_4(r, o, d, c) \
696         bus_space_read_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
697 #define bus_read_region_stream_4(r, o, d, c) \
698         bus_space_read_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
699 #define bus_set_multi_stream_4(r, o, v, c) \
700         bus_space_set_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
701 #define bus_set_region_stream_4(r, o, v, c) \
702         bus_space_set_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
703 #define bus_write_stream_4(r, o, v) \
704         bus_space_write_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (v))
705 #define bus_write_multi_stream_4(r, o, d, c) \
706         bus_space_write_multi_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
707 #define bus_write_region_stream_4(r, o, d, c) \
708         bus_space_write_region_stream_4((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
709 #define bus_read_8(r, o) \
710         bus_space_read_8((r)->r_bustag, (r)->r_bushandle, (o))
711 #define bus_read_multi_8(r, o, d, c) \
712         bus_space_read_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
713 #define bus_read_region_8(r, o, d, c) \
714         bus_space_read_region_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
715 #define bus_set_multi_8(r, o, v, c) \
716         bus_space_set_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
717 #define bus_set_region_8(r, o, v, c) \
718         bus_space_set_region_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
719 #define bus_write_8(r, o, v) \
720         bus_space_write_8((r)->r_bustag, (r)->r_bushandle, (o), (v))
721 #define bus_write_multi_8(r, o, d, c) \
722         bus_space_write_multi_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
723 #define bus_write_region_8(r, o, d, c) \
724         bus_space_write_region_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
725 #define bus_read_stream_8(r, o) \
726         bus_space_read_stream_8((r)->r_bustag, (r)->r_bushandle, (o))
727 #define bus_read_multi_stream_8(r, o, d, c) \
728         bus_space_read_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
729 #define bus_read_region_stream_8(r, o, d, c) \
730         bus_space_read_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
731 #define bus_set_multi_stream_8(r, o, v, c) \
732         bus_space_set_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
733 #define bus_set_region_stream_8(r, o, v, c) \
734         bus_space_set_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v), (c))
735 #define bus_write_stream_8(r, o, v) \
736         bus_space_write_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (v))
737 #define bus_write_multi_stream_8(r, o, d, c) \
738         bus_space_write_multi_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
739 #define bus_write_region_stream_8(r, o, d, c) \
740         bus_space_write_region_stream_8((r)->r_bustag, (r)->r_bushandle, (o), (d), (c))
741 #endif /* _KERNEL */
742
743 #endif /* !_SYS_BUS_H_ */