xref: /freebsd/sys/arm/include/pmap.h (revision 7ef62cebc2f965b0f640263e179276928885e33d)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2014,2016 Svatopluk Kraus <onwahe@gmail.com>
5  * Copyright (c) 2014,2016 Michal Meloun <meloun@miracle.cz>
6  * Copyright (c) 1991 Regents of the University of California.
7  * All rights reserved.
8  *
9  * This code is derived from software contributed to Berkeley by
10  * the Systems Programming Group of the University of Utah Computer
11  * Science Department and William Jolitz of UUNET Technologies Inc.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * The ARM version of this file was more or less based on the i386 version,
35  * which has the following provenance...
36  *
37  * Derived from hp300 version by Mike Hibler, this version by William
38  * Jolitz uses a recursive map [a pde points to the page directory] to
39  * map the page tables using the pagetables themselves. This is done to
40  * reduce the impact on kernel virtual memory for lots of sparse address
41  * space, and to reduce the cost of memory to each process.
42  *
43  *      from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90
44  *      from: @(#)pmap.h        7.4 (Berkeley) 5/12/91
45  * 	from: FreeBSD: src/sys/i386/include/pmap.h,v 1.70 2000/11/30
46  *
47  * $FreeBSD$
48  */
49 
50 #ifndef _MACHINE_PMAP_H_
51 #define _MACHINE_PMAP_H_
52 
53 #include <sys/systm.h>
54 #include <sys/queue.h>
55 #include <sys/_cpuset.h>
56 #include <sys/_lock.h>
57 #include <sys/_mutex.h>
58 #include <sys/_pv_entry.h>
59 
60 typedef	uint32_t	pt1_entry_t;		/* L1 table entry */
61 typedef	uint32_t	pt2_entry_t;		/* L2 table entry */
62 typedef uint32_t	ttb_entry_t;		/* TTB entry */
63 
64 #ifdef _KERNEL
65 
66 #if 0
67 #define PMAP_PTE_NOCACHE // Use uncached page tables
68 #endif
69 
70 /*
71  *  (1) During pmap bootstrap, physical pages for L2 page tables are
72  *      allocated in advance which are used for KVA continuous mapping
73  *      starting from KERNBASE. This makes things more simple.
74  *  (2) During vm subsystem initialization, only vm subsystem itself can
75  *      allocate physical memory safely. As pmap_map() is called during
76  *      this initialization, we must be prepared for that and have some
77  *      preallocated physical pages for L2 page tables.
78  *
79  *  Note that some more pages for L2 page tables are preallocated too
80  *  for mappings laying above VM_MAX_KERNEL_ADDRESS.
81  */
82 #ifndef NKPT2PG
83 /*
84  *  The optimal way is to define this in board configuration as
85  *  definition here must be safe enough. It means really big.
86  *
87  *  1 GB KVA <=> 256 kernel L2 page table pages
88  *
89  *  From real platforms:
90  *	1 GB physical memory <=> 10 pages is enough
91  *	2 GB physical memory <=> 21 pages is enough
92  */
93 #define NKPT2PG		32
94 #endif
95 #endif	/* _KERNEL */
96 
97 /*
98  * Pmap stuff
99  */
100 struct	md_page {
101 	TAILQ_HEAD(,pv_entry)	pv_list;
102 	uint16_t		pt2_wirecount[4];
103 	vm_memattr_t		pat_mode;
104 };
105 
106 struct	pmap {
107 	struct mtx		pm_mtx;
108 	pt1_entry_t		*pm_pt1;	/* KVA of pt1 */
109 	pt2_entry_t		*pm_pt2tab;	/* KVA of pt2 pages table */
110 	TAILQ_HEAD(,pv_chunk)	pm_pvchunk;	/* list of mappings in pmap */
111 	cpuset_t		pm_active;	/* active on cpus */
112 	struct pmap_statistics	pm_stats;	/* pmap statictics */
113 	LIST_ENTRY(pmap) 	pm_list;	/* List of all pmaps */
114 };
115 
116 typedef struct pmap *pmap_t;
117 
118 #ifdef _KERNEL
119 extern struct pmap	        kernel_pmap_store;
120 #define kernel_pmap	        (&kernel_pmap_store)
121 
122 #define	PMAP_LOCK(pmap)		mtx_lock(&(pmap)->pm_mtx)
123 #define	PMAP_LOCK_ASSERT(pmap, type) \
124 				mtx_assert(&(pmap)->pm_mtx, (type))
125 #define	PMAP_LOCK_DESTROY(pmap)	mtx_destroy(&(pmap)->pm_mtx)
126 #define	PMAP_LOCK_INIT(pmap)	mtx_init(&(pmap)->pm_mtx, "pmap", \
127 				    NULL, MTX_DEF | MTX_DUPOK)
128 #define	PMAP_LOCKED(pmap)	mtx_owned(&(pmap)->pm_mtx)
129 #define	PMAP_MTX(pmap)		(&(pmap)->pm_mtx)
130 #define	PMAP_TRYLOCK(pmap)	mtx_trylock(&(pmap)->pm_mtx)
131 #define	PMAP_UNLOCK(pmap)	mtx_unlock(&(pmap)->pm_mtx)
132 
133 extern ttb_entry_t pmap_kern_ttb; 	/* TTB for kernel pmap */
134 
135 #define	pmap_page_get_memattr(m)	((m)->md.pat_mode)
136 
137 /*
138  * Only the following functions or macros may be used before pmap_bootstrap()
139  * is called: pmap_kenter(), pmap_kextract(), pmap_kremove(), vtophys(), and
140  * vtopte2().
141  */
142 void pmap_bootstrap(vm_offset_t);
143 void pmap_kenter(vm_offset_t, vm_paddr_t);
144 void pmap_kremove(vm_offset_t);
145 boolean_t pmap_page_is_mapped(vm_page_t);
146 bool	pmap_ps_enabled(pmap_t pmap);
147 
148 void pmap_tlb_flush(pmap_t, vm_offset_t);
149 void pmap_tlb_flush_range(pmap_t, vm_offset_t, vm_size_t);
150 
151 vm_paddr_t pmap_dump_kextract(vm_offset_t, pt2_entry_t *);
152 
153 int pmap_fault(pmap_t, vm_offset_t, uint32_t, int, bool);
154 
155 void pmap_set_tex(void);
156 
157 /*
158  * Pre-bootstrap epoch functions set.
159  */
160 void pmap_bootstrap_prepare(vm_paddr_t);
161 vm_paddr_t pmap_preboot_get_pages(u_int);
162 void pmap_preboot_map_pages(vm_paddr_t, vm_offset_t, u_int);
163 vm_offset_t pmap_preboot_reserve_pages(u_int);
164 vm_offset_t pmap_preboot_get_vpages(u_int);
165 void pmap_preboot_map_attr(vm_paddr_t, vm_offset_t, vm_size_t, vm_prot_t,
166     vm_memattr_t);
167 void pmap_remap_vm_attr(vm_memattr_t old_attr, vm_memattr_t new_attr);
168 
169 extern char *_tmppt;	/* poor name! */
170 
171 extern vm_offset_t virtual_avail;
172 extern vm_offset_t virtual_end;
173 
174 void *pmap_kenter_temporary(vm_paddr_t, int);
175 #define	pmap_page_is_write_mapped(m)	(((m)->a.flags & PGA_WRITEABLE) != 0)
176 void pmap_page_set_memattr(vm_page_t, vm_memattr_t);
177 #define	pmap_map_delete(pmap, sva, eva)	pmap_remove(pmap, sva, eva)
178 
179 void *pmap_mapdev(vm_paddr_t, vm_size_t);
180 void pmap_unmapdev(void *, vm_size_t);
181 
182 static inline void *
183 pmap_mapdev_attr(vm_paddr_t addr __unused, vm_size_t size __unused,
184     int attr __unused)
185 {
186 	panic("%s is not implemented yet!\n", __func__);
187 }
188 
189 struct pcb;
190 void pmap_set_pcb_pagedir(pmap_t, struct pcb *);
191 
192 void pmap_kenter_device(vm_offset_t, vm_size_t, vm_paddr_t);
193 void pmap_kremove_device(vm_offset_t, vm_size_t);
194 
195 vm_paddr_t pmap_kextract(vm_offset_t);
196 #define vtophys(va)	pmap_kextract((vm_offset_t)(va))
197 
198 static inline int
199 pmap_vmspace_copy(pmap_t dst_pmap __unused, pmap_t src_pmap __unused)
200 {
201 
202 	return (0);
203 }
204 
205 #define	PMAP_ENTER_QUICK_LOCKED	0x10000000
206 
207 #define	pmap_vm_page_alloc_check(m)
208 
209 #endif	/* _KERNEL */
210 #endif	/* !_MACHINE_PMAP_H_ */
211