The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/rman.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * Copyright 1998 Massachusetts Institute of Technology
    3  *
    4  * Permission to use, copy, modify, and distribute this software and
    5  * its documentation for any purpose and without fee is hereby
    6  * granted, provided that both the above copyright notice and this
    7  * permission notice appear in all copies, that both the above
    8  * copyright notice and this permission notice appear in all
    9  * supporting documentation, and that the name of M.I.T. not be used
   10  * in advertising or publicity pertaining to distribution of the
   11  * software without specific, written prior permission.  M.I.T. makes
   12  * no representations about the suitability of this software for any
   13  * purpose.  It is provided "as is" without express or implied
   14  * warranty.
   15  * 
   16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
   17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
   18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
   19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
   20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27  * SUCH DAMAGE.
   28  *
   29  * $FreeBSD$
   30  */
   31 
   32 #ifndef _SYS_RMAN_H_
   33 #define _SYS_RMAN_H_    1
   34 
   35 #ifndef _KERNEL
   36 #include <sys/queue.h>
   37 #endif
   38 
   39 /*
   40  * We use a linked list rather than a bitmap because we need to be able to
   41  * represent potentially huge objects (like all of a processor's physical
   42  * address space).  That is also why the indices are defined to have type
   43  * `unsigned long' -- that being the largest integral type in Standard C.
   44  */
   45 CIRCLEQ_HEAD(resource_head, resource);
   46 struct  resource {
   47         CIRCLEQ_ENTRY(resource) r_link;
   48         LIST_ENTRY(resource)    r_sharelink;
   49         LIST_HEAD(, resource)   *r_sharehead;
   50         u_long  r_start;        /* index of the first entry in this resource */
   51         u_long  r_end;          /* index of the last entry (inclusive) */
   52         u_int   r_flags;
   53         void    *r_virtual;     /* virtual address of this resource */
   54         bus_space_tag_t r_bustag; /* bus_space tag */
   55         bus_space_handle_t r_bushandle; /* bus_space handle */
   56         struct  device *r_dev;  /* device which has allocated this resource */
   57         struct  rman *r_rm;     /* resource manager from whence this came */
   58 };
   59 
   60 #define RF_ALLOCATED    0x0001  /* resource has been reserved */
   61 #define RF_ACTIVE       0x0002  /* resource allocation has been activated */
   62 #define RF_SHAREABLE    0x0004  /* resource permits contemporaneous sharing */
   63 #define RF_TIMESHARE    0x0008  /* resource permits time-division sharing */
   64 #define RF_WANTED       0x0010  /* somebody is waiting for this resource */
   65 #define RF_FIRSTSHARE   0x0020  /* first in sharing list */
   66 
   67 #define RF_ALIGNMENT_SHIFT      10 /* alignment size bit starts bit 10 */
   68 #define RF_ALIGNMENT_MASK       (0x003F << RF_ALIGNMENT_SHIFT)
   69                                 /* resource address alignemnt size bit mask */
   70 #define RF_ALIGNMENT_LOG2(x)    ((x) << RF_ALIGNMENT_SHIFT)
   71 #define RF_ALIGNMENT(x)         (((x) & RF_ALIGNMENT_MASK) >> RF_ALIGNMENT_SHIFT)
   72 
   73 enum    rman_type { RMAN_UNINIT = 0, RMAN_GAUGE, RMAN_ARRAY };
   74 
   75 struct  rman {
   76         struct  resource_head   rm_list;
   77         struct  simplelock *rm_slock; /* mutex used to protect rm_list */
   78         TAILQ_ENTRY(rman)       rm_link; /* link in list of all rmans */
   79         u_long  rm_start;       /* index of globally first entry */
   80         u_long  rm_end;         /* index of globally last entry */
   81         enum    rman_type rm_type; /* what type of resource this is */
   82         const   char *rm_descr; /* text descripion of this resource */
   83 };
   84 TAILQ_HEAD(rman_head, rman);
   85 
   86 #ifdef _KERNEL
   87 
   88 int     rman_activate_resource(struct resource *r);
   89 int     rman_await_resource(struct resource *r, int pri, int timo);
   90 int     rman_deactivate_resource(struct resource *r);
   91 int     rman_fini(struct rman *rm);
   92 int     rman_init(struct rman *rm);
   93 int     rman_manage_region(struct rman *rm, u_long start, u_long end);
   94 int     rman_release_resource(struct resource *r);
   95 struct  resource *rman_reserve_resource(struct rman *rm, u_long start,
   96                                         u_long end, u_long count,
   97                                         u_int flags, struct device *dev);
   98 uint32_t rman_make_alignment_flags(uint32_t size);
   99 
  100 #define rman_get_start(r)       ((r)->r_start)
  101 #define rman_get_end(r)         ((r)->r_end)
  102 #define rman_get_flags(r)       ((r)->r_flags)
  103 #define rman_set_virtual(r,v)   ((r)->r_virtual = (v))
  104 #define rman_get_virtual(r)     ((r)->r_virtual)
  105 #define rman_set_bustag(r,t)    ((r)->r_bustag = (t))
  106 #define rman_get_bustag(r)      ((r)->r_bustag)
  107 #define rman_set_bushandle(r,h) ((r)->r_bushandle = (h))
  108 #define rman_get_bushandle(r)   ((r)->r_bushandle)
  109 
  110 extern  struct rman_head rman_head;
  111 #endif /* _KERNEL */
  112 
  113 #endif /* !_SYS_RMAN_H_ */

Cache object: 21318c2804a6d091382428d9955faa80


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.