1 /*- 2 * Copyright (c) 2016-2017 Ruslan Bukin <br@bsdpad.com> 3 * All rights reserved. 4 * 5 * Portions of this software were developed by SRI International and the 6 * University of Cambridge Computer Laboratory under DARPA/AFRL contract 7 * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme. 8 * 9 * Portions of this software were developed by the University of Cambridge 10 * Computer Laboratory as part of the CTSRD Project, with support from the 11 * UK Higher Education Innovation Fund (HEIF). 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 * $FreeBSD$ 35 */ 36 37 #ifndef _MACHINE_SBI_H_ 38 #define _MACHINE_SBI_H_ 39 40 #define SBI_SET_TIMER 0 41 #define SBI_CONSOLE_PUTCHAR 1 42 #define SBI_CONSOLE_GETCHAR 2 43 #define SBI_CLEAR_IPI 3 44 #define SBI_SEND_IPI 4 45 #define SBI_REMOTE_FENCE_I 5 46 #define SBI_REMOTE_SFENCE_VMA 6 47 #define SBI_REMOTE_SFENCE_VMA_ASID 7 48 #define SBI_SHUTDOWN 8 49 50 static __inline uint64_t 51 sbi_call(uint64_t arg7, uint64_t arg0, uint64_t arg1, uint64_t arg2) 52 { 53 54 register uintptr_t a0 __asm ("a0") = (uintptr_t)(arg0); 55 register uintptr_t a1 __asm ("a1") = (uintptr_t)(arg1); 56 register uintptr_t a2 __asm ("a2") = (uintptr_t)(arg2); 57 register uintptr_t a7 __asm ("a7") = (uintptr_t)(arg7); 58 __asm __volatile( \ 59 "ecall" \ 60 :"+r"(a0) \ 61 :"r"(a1), "r"(a2), "r"(a7) \ 62 :"memory"); 63 64 return (a0); 65 } 66 67 static __inline void 68 sbi_console_putchar(int ch) 69 { 70 71 sbi_call(SBI_CONSOLE_PUTCHAR, ch, 0, 0); 72 } 73 74 static __inline int 75 sbi_console_getchar(void) 76 { 77 78 return (sbi_call(SBI_CONSOLE_GETCHAR, 0, 0, 0)); 79 } 80 81 static __inline void 82 sbi_set_timer(uint64_t val) 83 { 84 85 sbi_call(SBI_SET_TIMER, val, 0, 0); 86 } 87 88 static __inline void 89 sbi_shutdown(void) 90 { 91 92 sbi_call(SBI_SHUTDOWN, 0, 0, 0); 93 } 94 95 static __inline void 96 sbi_clear_ipi(void) 97 { 98 99 sbi_call(SBI_CLEAR_IPI, 0, 0, 0); 100 } 101 102 static __inline void 103 sbi_send_ipi(const unsigned long *hart_mask) 104 { 105 106 sbi_call(SBI_SEND_IPI, (uint64_t)hart_mask, 0, 0); 107 } 108 109 static __inline void 110 sbi_remote_fence_i(const unsigned long *hart_mask) 111 { 112 113 sbi_call(SBI_REMOTE_FENCE_I, (uint64_t)hart_mask, 0, 0); 114 } 115 116 static __inline void 117 sbi_remote_sfence_vma(const unsigned long *hart_mask, 118 unsigned long start, unsigned long size) 119 { 120 121 sbi_call(SBI_REMOTE_SFENCE_VMA, (uint64_t)hart_mask, 0, 0); 122 } 123 124 static __inline void 125 sbi_remote_sfence_vma_asid(const unsigned long *hart_mask, 126 unsigned long start, unsigned long size, 127 unsigned long asid) 128 { 129 130 sbi_call(SBI_REMOTE_SFENCE_VMA_ASID, (uint64_t)hart_mask, 0, 0); 131 } 132 133 #endif /* !_MACHINE_SBI_H_ */ 134