home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Portable Patmos / usr / include / vm / vm_param.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-08  |  5.4 KB  |  153 lines  |  [TEXT/R*ch]

  1. /* 
  2.  * Copyright (c) 1991 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * The Mach Operating System project at Carnegie-Mellon University.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  *
  36.  *    from: @(#)vm_param.h    7.2 (Berkeley) 4/21/91
  37.  *    $Id: vm_param.h,v 1.4 1993/07/29 21:45:42 jtc Exp $
  38.  *
  39.  *
  40.  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
  41.  * All rights reserved.
  42.  *
  43.  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
  44.  * 
  45.  * Permission to use, copy, modify and distribute this software and
  46.  * its documentation is hereby granted, provided that both the copyright
  47.  * notice and this permission notice appear in all copies of the
  48.  * software, derivative works or modified versions, and any portions
  49.  * thereof, and that both notices appear in supporting documentation.
  50.  * 
  51.  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 
  52.  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 
  53.  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  54.  * 
  55.  * Carnegie Mellon requests users of this software to return to
  56.  *
  57.  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
  58.  *  School of Computer Science
  59.  *  Carnegie Mellon University
  60.  *  Pittsburgh PA 15213-3890
  61.  *
  62.  * any improvements or extensions that they make and grant Carnegie the
  63.  * rights to redistribute these changes.
  64.  */
  65.  
  66. #ifndef _VM_VM_PARAM_H_
  67. #define _VM_VM_PARAM_H_
  68.  
  69. /*
  70.  *    Machine independent virtual memory parameters.
  71.  */
  72.  
  73. #ifdef KERNEL
  74. #include "machine/vmparam.h"
  75. #else
  76. #include <machine/vmparam.h>
  77. #endif
  78.  
  79. /*
  80.  * This belongs in types.h, but breaks too many existing programs.
  81.  */
  82. typedef int    boolean_t;
  83. #define    TRUE    1
  84. #define    FALSE    0
  85.  
  86. /*
  87.  *    The machine independent pages are refered to as PAGES.  A page
  88.  *    is some number of hardware pages, depending on the target machine.
  89.  */
  90.  
  91. /*
  92.  *    All references to the size of a page should be done with PAGE_SIZE
  93.  *    or PAGE_SHIFT.  The fact they are variables is hidden here so that
  94.  *    we can easily make them constant if we so desire.
  95.  */
  96.  
  97. #define    PAGE_SIZE    page_size    /* size of page in addressible units */
  98. #define PAGE_SHIFT    page_shift    /* number of bits to shift for pages */
  99.  
  100. /* 
  101.  *    Return values from the VM routines.
  102.  */
  103. #define    KERN_SUCCESS        0
  104. #define    KERN_INVALID_ADDRESS    1
  105. #define    KERN_PROTECTION_FAILURE    2
  106. #define    KERN_NO_SPACE        3
  107. #define    KERN_INVALID_ARGUMENT    4
  108. #define    KERN_FAILURE        5
  109. #define    KERN_RESOURCE_SHORTAGE    6
  110. #define    KERN_NOT_RECEIVER    7
  111. #define    KERN_NO_ACCESS        8
  112.  
  113. #ifdef    ASSEMBLER
  114. #else    /* ASSEMBLER */
  115. /*
  116.  *    Convert addresses to pages and vice versa.
  117.  *    No rounding is used.
  118.  */
  119.  
  120. #ifdef    KERNEL
  121. #define    atop(x)        (((unsigned)(x)) >> page_shift)
  122. #define    ptoa(x)        ((vm_offset_t)((x) << page_shift))
  123. #endif    /* KERNEL */
  124.  
  125. /*
  126.  *    Round off or truncate to the nearest page.  These will work
  127.  *    for either addresses or counts.  (i.e. 1 byte rounds to 1 page
  128.  *    bytes.
  129.  */
  130.  
  131. #ifdef    KERNEL
  132. #define round_page(x)    ((vm_offset_t)((((vm_offset_t)(x)) + page_mask) & ~page_mask))
  133. #define trunc_page(x)    ((vm_offset_t)(((vm_offset_t)(x)) & ~page_mask))
  134. #else    /* KERNEL */
  135. #define    round_page(x)    ((((vm_offset_t)(x) + (vm_page_size - 1)) / vm_page_size) * vm_page_size)
  136. #define    trunc_page(x)    ((((vm_offset_t)(x)) / vm_page_size) * vm_page_size)
  137. #endif    /* KERNEL */
  138.  
  139. #ifdef    KERNEL
  140. extern vm_size_t    page_size;    /* machine independent page size */
  141. extern vm_size_t    page_mask;    /* page_size - 1; mask for
  142.                            offset within page */
  143. extern int        page_shift;    /* shift to use for page size */
  144.  
  145. extern vm_size_t    mem_size;    /* size of physical memory (bytes) */
  146. extern vm_offset_t    first_addr;    /* first physical page */
  147. extern vm_offset_t    last_addr;    /* last physical page */
  148. #endif    /* KERNEL */
  149.  
  150. #endif    /* ASSEMBLER */
  151.  
  152. #endif /* !_VM_VM_PARAM_H_ */
  153.