/*-1* SPDX-License-Identifier: BSD-3-Clause2*3* Copyright (c) 1990 The Regents of the University of California.4* All rights reserved.5*6* This code is derived from software contributed to Berkeley by7* William Jolitz.8*9* Redistribution and use in source and binary forms, with or without10* modification, are permitted provided that the following conditions11* are met:12* 1. Redistributions of source code must retain the above copyright13* notice, this list of conditions and the following disclaimer.14* 2. Redistributions in binary form must reproduce the above copyright15* notice, this list of conditions and the following disclaimer in the16* documentation and/or other materials provided with the distribution.17* 3. Neither the name of the University nor the names of its contributors18* may be used to endorse or promote products derived from this software19* without specific prior written permission.20*21* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND22* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE23* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE24* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL26* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS27* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)28* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT29* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY30* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF31* SUCH DAMAGE.32*/3334#ifndef _I386_INCLUDE_PARAM_H_35#define _I386_INCLUDE_PARAM_H_3637#include <machine/_align.h>3839/*40* Machine dependent constants for Intel 386.41*/4243#define __HAVE_PIR4445#ifndef MACHINE46#define MACHINE "i386"47#endif48#ifndef MACHINE_ARCH49#define MACHINE_ARCH "i386"50#endif51#define MID_MACHINE MID_I3865253#ifdef SMP54#ifndef MAXCPU55#define MAXCPU 3256#endif57#else58#define MAXCPU 159#endif6061#ifndef MAXMEMDOM62#define MAXMEMDOM 163#endif6465#define ALIGNBYTES _ALIGNBYTES66#define ALIGN(p) _ALIGN(p)67/*68* ALIGNED_POINTER is a boolean macro that checks whether an address69* is valid to fetch data elements of type t from on this architecture.70* This does not reflect the optimal alignment, just the possibility71* (within reasonable limits).72*/73#define ALIGNED_POINTER(p, t) 17475/*76* CACHE_LINE_SIZE is the compile-time maximum cache line size for an77* architecture. It should be used with appropriate caution.78*/79#define CACHE_LINE_SHIFT 680#define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT)8182#define PAGE_SHIFT 12 /* LOG2(PAGE_SIZE) */83#define PAGE_SIZE (1 << PAGE_SHIFT) /* bytes/page */84#define PAGE_MASK (PAGE_SIZE - 1)85#define NPTEPG (PAGE_SIZE / sizeof(pt_entry_t))8687/* Size in bytes of the page directory */88#define NBPTD (NPGPTD << PAGE_SHIFT)89/* Number of PDEs in page directory, 2048 for PAE, 1024 for non-PAE */90#define NPDEPTD (NBPTD / sizeof(pd_entry_t))91/* Number of PDEs in one page of the page directory, 512 vs. 1024 */92#define NPDEPG (PAGE_SIZE / sizeof(pd_entry_t))93#define PDRMASK (NBPDR - 1)94#ifndef PDRSHIFT95#define PDRSHIFT i386_pmap_PDRSHIFT96#endif97#ifndef NBPDR98#define NBPDR (1 << PDRSHIFT) /* bytes/page dir */99#endif100101#define MAXPAGESIZES 2 /* maximum number of supported page sizes */102103#define IOPAGES 2 /* pages of i/o permission bitmap */104105#ifndef KSTACK_PAGES106#define KSTACK_PAGES 4 /* Includes pcb! */107#endif108#define KSTACK_GUARD_PAGES 1 /* pages of kstack guard; 0 disables */109#if KSTACK_PAGES < 4110#define TD0_KSTACK_PAGES 4111#else112#define TD0_KSTACK_PAGES KSTACK_PAGES113#endif114115/*116* Ceiling on amount of swblock kva space, can be changed via117* the kern.maxswzone /boot/loader.conf variable.118*119* 276 is sizeof(struct swblock), but we do not always have a definition120* in scope for struct swblock, so we have to hardcode it. Each struct121* swblock holds metadata for 32 pages, so in theory, this is enough for122* 16 GB of swap. In practice, however, the usable amount is considerably123* lower due to fragmentation.124*/125#ifndef VM_SWZONE_SIZE_MAX126#define VM_SWZONE_SIZE_MAX (276 * 128 * 1024)127#endif128129/*130* Ceiling on size of buffer cache (really only effects write queueing,131* the VM page cache is not effected), can be changed via132* the kern.maxbcache /boot/loader.conf variable.133*134* The value is equal to the size of the auto-tuned buffer map for135* the machine with 4GB of RAM, see vfs_bio.c:kern_vfs_bio_buffer_alloc().136*/137#ifndef VM_BCACHE_SIZE_MAX138#define VM_BCACHE_SIZE_MAX (7224 * 16 * 1024)139#endif140141/*142* Mach derived conversion macros143*/144#define trunc_4mpage(x) ((x) & ~PDRMASK)145#define round_4mpage(x) ((((x)) + PDRMASK) & ~PDRMASK)146147#define i386_btop(x) ((x) >> PAGE_SHIFT)148#define i386_ptob(x) ((x) << PAGE_SHIFT)149150#define INKERNEL(va) (TRUE)151152#endif /* !_I386_INCLUDE_PARAM_H_ */153154155