2 * Copyright (c) 2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <vm/vm_page.h>
31 #include <kern/ledger.h>
32 #include <kern/thread.h>
33 #if defined(__arm64__)
34 #include <pexpert/arm64/board_config.h>
37 extern ledger_template_t task_ledger_template
;
39 extern boolean_t
arm_force_fast_fault(ppnum_t
, vm_prot_t
, int, void*);
40 extern kern_return_t
arm_fast_fault(pmap_t
, vm_map_address_t
, vm_prot_t
, bool, bool);
42 kern_return_t
test_pmap_enter_disconnect(unsigned int num_loops
);
43 kern_return_t
test_pmap_iommu_disconnect(void);
44 kern_return_t
test_pmap_extended(void);
46 #define PMAP_TEST_VA (0xDEAD << PAGE_SHIFT)
50 volatile boolean_t stop
;
52 } pmap_test_thread_args
;
55 pmap_create_wrapper(unsigned int flags
)
57 pmap_t new_pmap
= NULL
;
59 assert(task_ledger_template
!= NULL
);
60 if ((ledger
= ledger_instantiate(task_ledger_template
, LEDGER_CREATE_ACTIVE_ENTRIES
)) == NULL
) {
63 new_pmap
= pmap_create_options(ledger
, 0, flags
);
64 ledger_dereference(ledger
);
69 pmap_disconnect_thread(void *arg
, wait_result_t __unused wres
)
71 pmap_test_thread_args
*args
= arg
;
73 pmap_disconnect(args
->pn
);
74 } while (!args
->stop
);
75 thread_wakeup((event_t
)args
);
79 test_pmap_enter_disconnect(unsigned int num_loops
)
81 kern_return_t kr
= KERN_SUCCESS
;
82 thread_t disconnect_thread
;
83 pmap_t new_pmap
= pmap_create_wrapper(0);
84 if (new_pmap
== NULL
) {
87 vm_page_t m
= vm_page_grab();
88 if (m
== VM_PAGE_NULL
) {
89 pmap_destroy(new_pmap
);
92 ppnum_t phys_page
= VM_PAGE_GET_PHYS_PAGE(m
);
93 pmap_test_thread_args args
= {new_pmap
, FALSE
, phys_page
};
94 kern_return_t res
= kernel_thread_start(pmap_disconnect_thread
, &args
, &disconnect_thread
);
96 pmap_destroy(new_pmap
);
97 vm_page_lock_queues();
99 vm_page_unlock_queues();
102 thread_deallocate(disconnect_thread
);
104 while (num_loops
-- != 0) {
105 kr
= pmap_enter(new_pmap
, PMAP_TEST_VA
, phys_page
,
106 VM_PROT_READ
| VM_PROT_WRITE
, VM_PROT_NONE
, VM_WIMG_USE_DEFAULT
, FALSE
);
107 assert(kr
== KERN_SUCCESS
);
110 assert_wait((event_t
)&args
, THREAD_UNINT
);
112 thread_block(THREAD_CONTINUE_NULL
);
114 pmap_remove(new_pmap
, PMAP_TEST_VA
, PMAP_TEST_VA
+ PAGE_SIZE
);
115 vm_page_lock_queues();
117 vm_page_unlock_queues();
118 pmap_destroy(new_pmap
);
123 test_pmap_iommu_disconnect(void)
130 test_pmap_extended(void)