2005-01-05 20:17:21 +00:00
|
|
|
/*-
|
2017-11-18 14:26:50 +00:00
|
|
|
* SPDX-License-Identifier: BSD-4-Clause
|
|
|
|
*
|
2002-06-30 07:42:36 +00:00
|
|
|
* Copyright (c) 2002 David E. O'Brien. All rights reserved.
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department and Ralph Campbell.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)param.h 8.1 (Berkeley) 6/10/93
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
2009-09-08 20:45:40 +00:00
|
|
|
|
2009-09-08 12:59:56 +00:00
|
|
|
#ifndef _AMD64_INCLUDE_PARAM_H_
|
|
|
|
#define _AMD64_INCLUDE_PARAM_H_
|
|
|
|
|
2009-09-08 20:45:40 +00:00
|
|
|
#include <machine/_align.h>
|
2002-06-30 07:42:36 +00:00
|
|
|
|
|
|
|
/*
|
2009-09-08 20:45:40 +00:00
|
|
|
* Machine dependent constants for AMD64.
|
2002-06-30 07:42:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-01-09 06:05:57 +00:00
|
|
|
#define __HAVE_ACPI
|
|
|
|
#define __PCI_REROUTE_INTERRUPT
|
|
|
|
|
2002-06-30 07:42:36 +00:00
|
|
|
#ifndef MACHINE
|
2003-04-30 22:51:59 +00:00
|
|
|
#define MACHINE "amd64"
|
2002-06-30 07:42:36 +00:00
|
|
|
#endif
|
|
|
|
#ifndef MACHINE_ARCH
|
2003-04-30 22:51:59 +00:00
|
|
|
#define MACHINE_ARCH "amd64"
|
2002-06-30 07:42:36 +00:00
|
|
|
#endif
|
2010-07-22 09:13:49 +00:00
|
|
|
#ifndef MACHINE_ARCH32
|
|
|
|
#define MACHINE_ARCH32 "i386"
|
|
|
|
#endif
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2008-03-27 05:03:26 +00:00
|
|
|
#if defined(SMP) || defined(KLD_MODULE)
|
2011-07-19 00:37:24 +00:00
|
|
|
#ifndef MAXCPU
|
2014-08-20 16:06:24 +00:00
|
|
|
#define MAXCPU 256
|
2011-07-19 00:37:24 +00:00
|
|
|
#endif
|
2003-11-17 08:58:16 +00:00
|
|
|
#else
|
2002-06-30 07:42:36 +00:00
|
|
|
#define MAXCPU 1
|
2003-11-17 08:58:16 +00:00
|
|
|
#endif
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2013-05-07 22:46:24 +00:00
|
|
|
#ifndef MAXMEMDOM
|
2016-04-12 21:23:44 +00:00
|
|
|
#define MAXMEMDOM 8
|
2013-05-07 22:46:24 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-30 07:42:36 +00:00
|
|
|
#define ALIGNBYTES _ALIGNBYTES
|
|
|
|
#define ALIGN(p) _ALIGN(p)
|
2009-07-05 17:45:48 +00:00
|
|
|
/*
|
|
|
|
* ALIGNED_POINTER is a boolean macro that checks whether an address
|
|
|
|
* is valid to fetch data elements of type t from on this architecture.
|
|
|
|
* This does not reflect the optimal alignment, just the possibility
|
|
|
|
* (within reasonable limits).
|
|
|
|
*/
|
|
|
|
#define ALIGNED_POINTER(p, t) 1
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2009-04-19 21:26:36 +00:00
|
|
|
/*
|
|
|
|
* CACHE_LINE_SIZE is the compile-time maximum cache line size for an
|
|
|
|
* architecture. It should be used with appropriate caution.
|
|
|
|
*/
|
2017-08-28 22:28:41 +00:00
|
|
|
#define CACHE_LINE_SHIFT 6
|
2009-04-19 20:19:13 +00:00
|
|
|
#define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT)
|
2003-05-23 05:04:54 +00:00
|
|
|
|
2003-05-01 01:05:25 +00:00
|
|
|
/* Size of the level 1 page table units */
|
|
|
|
#define NPTEPG (PAGE_SIZE/(sizeof (pt_entry_t)))
|
2003-05-23 05:04:54 +00:00
|
|
|
#define NPTEPGSHIFT 9 /* LOG2(NPTEPG) */
|
2002-06-30 07:42:36 +00:00
|
|
|
#define PAGE_SHIFT 12 /* LOG2(PAGE_SIZE) */
|
|
|
|
#define PAGE_SIZE (1<<PAGE_SHIFT) /* bytes/page */
|
|
|
|
#define PAGE_MASK (PAGE_SIZE-1)
|
2003-05-01 01:05:25 +00:00
|
|
|
/* Size of the level 2 page directory units */
|
|
|
|
#define NPDEPG (PAGE_SIZE/(sizeof (pd_entry_t)))
|
2003-05-23 05:04:54 +00:00
|
|
|
#define NPDEPGSHIFT 9 /* LOG2(NPDEPG) */
|
2003-05-01 01:05:25 +00:00
|
|
|
#define PDRSHIFT 21 /* LOG2(NBPDR) */
|
|
|
|
#define NBPDR (1<<PDRSHIFT) /* bytes/page dir */
|
|
|
|
#define PDRMASK (NBPDR-1)
|
|
|
|
/* Size of the level 3 page directory pointer table units */
|
|
|
|
#define NPDPEPG (PAGE_SIZE/(sizeof (pdp_entry_t)))
|
2003-05-23 05:04:54 +00:00
|
|
|
#define NPDPEPGSHIFT 9 /* LOG2(NPDPEPG) */
|
2003-05-01 01:05:25 +00:00
|
|
|
#define PDPSHIFT 30 /* LOG2(NBPDP) */
|
|
|
|
#define NBPDP (1<<PDPSHIFT) /* bytes/page dir ptr table */
|
|
|
|
#define PDPMASK (NBPDP-1)
|
|
|
|
/* Size of the level 4 page-map level-4 table units */
|
|
|
|
#define NPML4EPG (PAGE_SIZE/(sizeof (pml4_entry_t)))
|
2003-05-23 05:04:54 +00:00
|
|
|
#define NPML4EPGSHIFT 9 /* LOG2(NPML4EPG) */
|
2004-06-07 23:47:59 +00:00
|
|
|
#define PML4SHIFT 39 /* LOG2(NBPML4) */
|
2009-11-16 10:53:04 +00:00
|
|
|
#define NBPML4 (1UL<<PML4SHIFT)/* bytes/page map lev4 table */
|
2004-06-07 23:47:59 +00:00
|
|
|
#define PML4MASK (NBPML4-1)
|
2003-05-01 01:05:25 +00:00
|
|
|
|
2009-09-18 17:04:57 +00:00
|
|
|
#define MAXPAGESIZES 3 /* maximum number of supported page sizes */
|
|
|
|
|
2002-06-30 07:42:36 +00:00
|
|
|
#define IOPAGES 2 /* pages of i/o permission bitmap */
|
2014-05-14 22:24:09 +00:00
|
|
|
/*
|
|
|
|
* I/O permission bitmap has a bit for each I/O port plus an additional
|
|
|
|
* byte at the end with all bits set. See section "I/O Permission Bit Map"
|
|
|
|
* in the Intel SDM for more details.
|
|
|
|
*/
|
|
|
|
#define IOPERM_BITMAP_SIZE (IOPAGES * PAGE_SIZE + 1)
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2003-07-31 01:27:18 +00:00
|
|
|
#ifndef KSTACK_PAGES
|
2003-05-01 01:05:25 +00:00
|
|
|
#define KSTACK_PAGES 4 /* pages of kstack (with pcb) */
|
2003-07-31 01:27:18 +00:00
|
|
|
#endif
|
2003-06-14 23:23:55 +00:00
|
|
|
#define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */
|
2002-06-30 07:42:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mach derived conversion macros
|
|
|
|
*/
|
|
|
|
#define round_page(x) ((((unsigned long)(x)) + PAGE_MASK) & ~(PAGE_MASK))
|
|
|
|
#define trunc_page(x) ((unsigned long)(x) & ~(PAGE_MASK))
|
2003-05-01 01:05:25 +00:00
|
|
|
#define trunc_2mpage(x) ((unsigned long)(x) & ~PDRMASK)
|
|
|
|
#define round_2mpage(x) ((((unsigned long)(x)) + PDRMASK) & ~PDRMASK)
|
2008-08-01 04:55:38 +00:00
|
|
|
#define trunc_1gpage(x) ((unsigned long)(x) & ~PDPMASK)
|
2002-06-30 07:42:36 +00:00
|
|
|
|
|
|
|
#define atop(x) ((unsigned long)(x) >> PAGE_SHIFT)
|
|
|
|
#define ptoa(x) ((unsigned long)(x) << PAGE_SHIFT)
|
|
|
|
|
2003-04-30 22:51:59 +00:00
|
|
|
#define amd64_btop(x) ((unsigned long)(x) >> PAGE_SHIFT)
|
|
|
|
#define amd64_ptob(x) ((unsigned long)(x) << PAGE_SHIFT)
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2003-05-01 01:05:25 +00:00
|
|
|
#define pgtok(x) ((unsigned long)(x) * (PAGE_SIZE / 1024))
|
2002-06-30 07:42:36 +00:00
|
|
|
|
2015-07-02 14:37:21 +00:00
|
|
|
#define INKERNEL(va) (((va) >= DMAP_MIN_ADDRESS && (va) < DMAP_MAX_ADDRESS) \
|
|
|
|
|| ((va) >= VM_MIN_KERNEL_ADDRESS && (va) < VM_MAX_KERNEL_ADDRESS))
|
|
|
|
|
2017-10-22 20:43:50 +00:00
|
|
|
#ifdef SMP
|
|
|
|
#define SC_TABLESIZE 1024 /* Must be power of 2. */
|
|
|
|
#endif
|
|
|
|
|
2009-09-08 12:59:56 +00:00
|
|
|
#endif /* !_AMD64_INCLUDE_PARAM_H_ */
|