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