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