]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/aim/mmu_oea64.h
Merge clang trunk r366426, resolve conflicts, and update FREEBSD-Xlist.
[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 "opt_pmap.h"
34
35 #include <machine/mmuvar.h>
36
37 extern mmu_def_t oea64_mmu;
38
39 /*
40  * Helper routines
41  */
42
43 /* Allocate physical memory for use in moea64_bootstrap. */
44 vm_offset_t     moea64_bootstrap_alloc(vm_size_t size, vm_size_t align);
45 /* Set an LPTE structure to match the contents of a PVO */
46 void    moea64_pte_from_pvo(const struct pvo_entry *pvo, struct lpte *lpte);
47
48 /*
49  * Flags
50  */
51
52 #define MOEA64_PTE_PROT_UPDATE  1
53 #define MOEA64_PTE_INVALIDATE   2
54
55 /*
56  * Bootstrap subroutines
57  *
58  * An MMU_BOOTSTRAP() implementation looks like this:
59  *   moea64_early_bootstrap();
60  *   Allocate Page Table
61  *   moea64_mid_bootstrap();
62  *   Add mappings for MMU resources
63  *   moea64_late_bootstrap();
64  */
65
66 void            moea64_early_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
67                     vm_offset_t kernelend);
68 void            moea64_mid_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
69                     vm_offset_t kernelend);
70 void            moea64_late_bootstrap(mmu_t mmup, vm_offset_t kernelstart,
71                     vm_offset_t kernelend);
72
73 /*
74  * Statistics
75  */
76
77 #ifdef MOEA64_STATS
78 extern u_int    moea64_pte_valid;
79 extern u_int    moea64_pte_overflow;
80 #define STAT_MOEA64(x)  x
81 #else
82 #define STAT_MOEA64(x) ((void)0)
83 #endif
84
85 /*
86  * State variables
87  */
88
89 extern int              moea64_large_page_shift;
90 extern uint64_t         moea64_large_page_size;
91 extern uint64_t         moea64_large_page_mask;
92 extern u_long           moea64_pteg_count;
93 extern u_long           moea64_pteg_mask;
94 extern int              n_slbs;
95
96 #endif /* _POWERPC_AIM_MMU_OEA64_H */
97