]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/aim/mmu_oea64.h
MFHead @349234
[FreeBSD/FreeBSD.git] / sys / powerpc / aim / mmu_oea64.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (C) 2010 Nathan Whitehorn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29
30 #ifndef _POWERPC_AIM_MMU_OEA64_H
31 #define _POWERPC_AIM_MMU_OEA64_H
32
33 #include <machine/mmuvar.h>
34
35 extern mmu_def_t oea64_mmu;
36
37 /*
38  * Helper routines
39  */
40
41 /* Allocate physical memory for use in moea64_bootstrap. */
42 vm_offset_t     moea64_bootstrap_alloc(vm_size_t size, vm_size_t align);
43 /* Set an LPTE structure to match the contents of a PVO */
44 void    moea64_pte_from_pvo(const struct pvo_entry *pvo, struct lpte *lpte);
45
46 /*
47  * Flags
48  */
49
50 #define MOEA64_PTE_PROT_UPDATE  1
51 #define MOEA64_PTE_INVALIDATE   2
52
53 /*
54  * Bootstrap subroutines
55  *
56  * An MMU_BOOTSTRAP() implementation looks like this:
57  *   moea64_early_bootstrap();
58  *   Allocate Page Table
59  *   moea64_mid_bootstrap();
60  *   Add mappings for MMU resources
61  *   moea64_late_bootstrap();
62  */
63
64 void            moea64_early_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
65                     vm_offset_t kernelend);
66 void            moea64_mid_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
67                     vm_offset_t kernelend);
68 void            moea64_late_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
69                     vm_offset_t kernelend);
70
71 /*
72  * Statistics
73  */
74
75 extern u_int    moea64_pte_valid;
76 extern u_int    moea64_pte_overflow;
77
78 /*
79  * State variables
80  */
81
82 extern int              moea64_large_page_shift;
83 extern uint64_t         moea64_large_page_size;
84 extern uint64_t         moea64_large_page_mask;
85 extern u_long           moea64_pteg_count;
86 extern u_long           moea64_pteg_mask;
87 extern int              n_slbs;
88
89 #endif /* _POWERPC_AIM_MMU_OEA64_H */
90