1/*- 2 * Copyright (c) 2014 Robin Randhawa 3 * Copyright (c) 2015 The FreeBSD Foundation 4 * All rights reserved. 5 * 6 * Portions of this software were developed by Andrew Turner 7 * under sponsorship from the FreeBSD Foundation 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 */ 31 32#include <sys/errno.h> 33#include <machine/asm.h> 34#include <machine/param.h> 35 36#include "assym.inc" 37 38__FBSDID("$FreeBSD$"); 39 40/* 41 * FIXME: 42 * Need big.LITTLE awareness at some point. 43 * Using arm64_p[id]cache_line_size may not be the best option. 44 * Need better SMP awareness. 45 */ 46 .text 47 .align 2 48 49.Lpage_mask: 50 .word PAGE_MASK 51 52/* 53 * Macro to handle the cache. This takes the start address in x0, length 54 * in x1. It will corrupt x0, x1, x2, x3, and x4. 55 */ 56.macro cache_handle_range dcop = 0, ic = 0, icop = 0 57.if \ic == 0 58 ldr x3, =dcache_line_size /* Load the D cache line size */ 59.else 60 ldr x3, =idcache_line_size /* Load the I & D cache line size */ 61.endif 62 ldr x3, [x3] 63 sub x4, x3, #1 /* Get the address mask */ 64 and x2, x0, x4 /* Get the low bits of the address */ 65 add x1, x1, x2 /* Add these to the size */ 66 bic x0, x0, x4 /* Clear the low bit of the address */ 67.if \ic != 0 68 mov x2, x0 /* Save the address */ 69 mov x4, x1 /* Save the size */ 70.endif 711: 72 dc \dcop, x0 73 add x0, x0, x3 /* Move to the next line */ 74 subs x1, x1, x3 /* Reduce the size */ 75 b.hi 1b /* Check if we are done */ 76 dsb ish 77.if \ic != 0 782: 79 ic \icop, x2 80 add x2, x2, x3 /* Move to the next line */ 81 subs x4, x4, x3 /* Reduce the size */ 82 b.hi 2b /* Check if we are done */ 83 dsb ish 84 isb 85.endif 86.endm 87 88ENTRY(arm64_nullop) 89 ret 90END(arm64_nullop) 91 92/* 93 * Generic functions to read/modify/write the internal coprocessor registers 94 */ 95 96ENTRY(arm64_tlb_flushID) 97 dsb ishst 98#ifdef SMP 99 tlbi vmalle1is 100#else 101 tlbi vmalle1 102#endif 103 dsb ish 104 isb 105 ret 106END(arm64_tlb_flushID) 107 108/* 109 * void arm64_dcache_wb_range(vm_offset_t, vm_size_t) 110 */ 111ENTRY(arm64_dcache_wb_range) 112 cache_handle_range dcop = cvac 113 ret 114END(arm64_dcache_wb_range) 115 116/* 117 * void arm64_dcache_wbinv_range(vm_offset_t, vm_size_t) 118 */ 119ENTRY(arm64_dcache_wbinv_range) 120 cache_handle_range dcop = civac 121 ret 122END(arm64_dcache_wbinv_range) 123 124/* 125 * void arm64_dcache_inv_range(vm_offset_t, vm_size_t) 126 * 127 * Note, we must not invalidate everything. If the range is too big we 128 * must use wb-inv of the entire cache. 129 */ 130ENTRY(arm64_dcache_inv_range) 131 cache_handle_range dcop = ivac 132 ret 133END(arm64_dcache_inv_range) 134 135/* 136 * void arm64_idcache_wbinv_range(vm_offset_t, vm_size_t) 137 */ 138ENTRY(arm64_idcache_wbinv_range) 139 cache_handle_range dcop = civac, ic = 1, icop = ivau 140 ret 141END(arm64_idcache_wbinv_range) 142 143/* 144 * void arm64_icache_sync_range(vm_offset_t, vm_size_t) 145 */ 146ENTRY(arm64_icache_sync_range) 147 /* 148 * XXX Temporary solution - I-cache flush should be range based for 149 * PIPT cache or IALLUIS for VIVT or VIPT caches 150 */ 151/* cache_handle_range dcop = cvau, ic = 1, icop = ivau */ 152 cache_handle_range dcop = cvau 153 ic ialluis 154 dsb ish 155 isb 156 ret 157END(arm64_icache_sync_range) 158 159/* 160 * int arm64_icache_sync_range_checked(vm_offset_t, vm_size_t) 161 */ 162ENTRY(arm64_icache_sync_range_checked) 163 adr x5, cache_maint_fault 164 SET_FAULT_HANDLER(x5, x6) 165 /* XXX: See comment in arm64_icache_sync_range */ 166 cache_handle_range dcop = cvau 167 ic ialluis 168 dsb ish 169 isb 170 SET_FAULT_HANDLER(xzr, x6) 171 mov x0, #0 172 ret 173END(arm64_icache_sync_range_checked) 174 175ENTRY(cache_maint_fault) 176 SET_FAULT_HANDLER(xzr, x1) 177 mov x0, #EFAULT 178 ret 179END(cache_maint_fault) 180