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/arm64/include/param.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 (c) 1990 The Regents of the University of California.
    3  * All rights reserved.
    4  *
    5  * This code is derived from software contributed to Berkeley by
    6  * William Jolitz.
    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  *
   17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27  * SUCH DAMAGE.
   28  *
   29  *      from: @(#)param.h       5.8 (Berkeley) 6/28/91
   30  * $FreeBSD$
   31  */
   32 
   33 #ifndef _MACHINE_PARAM_H_
   34 #define _MACHINE_PARAM_H_
   35 
   36 /*
   37  * Machine dependent constants for arm64.
   38  */
   39 
   40 #include <machine/_align.h>
   41 
   42 #define STACKALIGNBYTES (16 - 1)
   43 #define STACKALIGN(p)   ((uint64_t)(p) & ~STACKALIGNBYTES)
   44 
   45 #define __PCI_REROUTE_INTERRUPT
   46 
   47 #ifndef MACHINE
   48 #define MACHINE         "arm64"
   49 #endif
   50 #ifndef MACHINE_ARCH
   51 #define MACHINE_ARCH    "aarch64"
   52 #endif
   53 #ifndef MACHINE_ARCH32
   54 #define MACHINE_ARCH32  "armv7"
   55 #endif
   56 
   57 #ifdef SMP
   58 #ifndef MAXCPU
   59 #define MAXCPU          256
   60 #endif
   61 #else
   62 #define MAXCPU          1
   63 #endif
   64 
   65 #ifndef MAXMEMDOM
   66 #define MAXMEMDOM       8
   67 #endif
   68 
   69 #define ALIGNBYTES      _ALIGNBYTES
   70 #define ALIGN(p)        _ALIGN(p)
   71 /*
   72  * ALIGNED_POINTER is a boolean macro that checks whether an address
   73  * is valid to fetch data elements of type t from on this architecture.
   74  * This does not reflect the optimal alignment, just the possibility
   75  * (within reasonable limits).
   76  */
   77 #define ALIGNED_POINTER(p, t)   ((((u_long)(p)) & (sizeof(t) - 1)) == 0)
   78 
   79 /*
   80  * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
   81  * architecture.  It should be used with appropriate caution.
   82  */
   83 #define CACHE_LINE_SHIFT        7
   84 #define CACHE_LINE_SIZE         (1 << CACHE_LINE_SHIFT)
   85 
   86 #define PAGE_SHIFT_4K   12
   87 #define PAGE_SIZE_4K    (1 << PAGE_SHIFT_4K)
   88 
   89 #define PAGE_SHIFT_16K  14
   90 #define PAGE_SIZE_16K   (1 << PAGE_SHIFT_16K)
   91 
   92 #define PAGE_SHIFT_64K  16
   93 #define PAGE_SIZE_64K   (1 << PAGE_SHIFT_64K)
   94 
   95 #define PAGE_SHIFT      PAGE_SHIFT_4K
   96 #define PAGE_SIZE       (1 << PAGE_SHIFT)
   97 #define PAGE_MASK       (PAGE_SIZE - 1)
   98 
   99 #define MAXPAGESIZES    3               /* maximum number of supported page sizes */
  100 
  101 #ifndef KSTACK_PAGES
  102 #define KSTACK_PAGES    4       /* pages of kernel stack (with pcb) */
  103 #endif
  104 
  105 #define KSTACK_GUARD_PAGES      1       /* pages of kstack guard; 0 disables */
  106 #define PCPU_PAGES              1
  107 
  108 #ifdef PERTHREAD_SSP
  109 #define NO_PERTHREAD_SSP        __nostackprotector
  110 #else
  111 #define NO_PERTHREAD_SSP
  112 #endif
  113 
  114 /*
  115  * Mach derived conversion macros
  116  */
  117 #define round_page(x)           (((unsigned long)(x) + PAGE_MASK) & ~PAGE_MASK)
  118 #define trunc_page(x)           ((unsigned long)(x) & ~PAGE_MASK)
  119 
  120 #define atop(x)                 ((unsigned long)(x) >> PAGE_SHIFT)
  121 #define ptoa(x)                 ((unsigned long)(x) << PAGE_SHIFT)
  122 
  123 #define arm64_btop(x)           ((unsigned long)(x) >> PAGE_SHIFT)
  124 #define arm64_ptob(x)           ((unsigned long)(x) << PAGE_SHIFT)
  125 
  126 #define pgtok(x)                ((unsigned long)(x) * (PAGE_SIZE / 1024))
  127 
  128 #endif /* !_MACHINE_PARAM_H_ */

Cache object: e5837a85b42f103f94f4533fd92134db


[ 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.