1 /* 2 * Copyright (c) 2012-2014 Bastian Koppelmann C-Lab/University Paderborn 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 #include "qemu/osdep.h" 19 20 #include "cpu.h" 21 #include "exec/exec-all.h" 22 #include "fpu/softfloat-helpers.h" 23 #include "qemu/qemu-print.h" 24 25 enum { 26 TLBRET_DIRTY = -4, 27 TLBRET_INVALID = -3, 28 TLBRET_NOMATCH = -2, 29 TLBRET_BADADDR = -1, 30 TLBRET_MATCH = 0 31 }; 32 33 #if defined(CONFIG_SOFTMMU) 34 static int get_physical_address(CPUTriCoreState *env, hwaddr *physical, 35 int *prot, target_ulong address, 36 int rw, int access_type) 37 { 38 int ret = TLBRET_MATCH; 39 40 *physical = address & 0xFFFFFFFF; 41 *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC; 42 43 return ret; 44 } 45 46 hwaddr tricore_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) 47 { 48 TriCoreCPU *cpu = TRICORE_CPU(cs); 49 hwaddr phys_addr; 50 int prot; 51 int mmu_idx = cpu_mmu_index(&cpu->env, false); 52 53 if (get_physical_address(&cpu->env, &phys_addr, &prot, addr, 0, mmu_idx)) { 54 return -1; 55 } 56 return phys_addr; 57 } 58 #endif 59 60 /* TODO: Add exeption support*/ 61 static void raise_mmu_exception(CPUTriCoreState *env, target_ulong address, 62 int rw, int tlb_error) 63 { 64 } 65 66 bool tricore_cpu_tlb_fill(CPUState *cs, vaddr address, int size, 67 MMUAccessType rw, int mmu_idx, 68 bool probe, uintptr_t retaddr) 69 { 70 TriCoreCPU *cpu = TRICORE_CPU(cs); 71 CPUTriCoreState *env = &cpu->env; 72 hwaddr physical; 73 int prot; 74 int access_type; 75 int ret = 0; 76 77 rw &= 1; 78 access_type = ACCESS_INT; 79 ret = get_physical_address(env, &physical, &prot, 80 address, rw, access_type); 81 82 qemu_log_mask(CPU_LOG_MMU, "%s address=" TARGET_FMT_lx " ret %d physical " 83 TARGET_FMT_plx " prot %d\n", 84 __func__, (target_ulong)address, ret, physical, prot); 85 86 if (ret == TLBRET_MATCH) { 87 tlb_set_page(cs, address & TARGET_PAGE_MASK, 88 physical & TARGET_PAGE_MASK, prot | PAGE_EXEC, 89 mmu_idx, TARGET_PAGE_SIZE); 90 return true; 91 } else { 92 assert(ret < 0); 93 if (probe) { 94 return false; 95 } 96 raise_mmu_exception(env, address, rw, ret); 97 cpu_loop_exit_restore(cs, retaddr); 98 } 99 } 100 101 static void tricore_cpu_list_entry(gpointer data, gpointer user_data) 102 { 103 ObjectClass *oc = data; 104 const char *typename; 105 char *name; 106 107 typename = object_class_get_name(oc); 108 name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_TRICORE_CPU)); 109 qemu_printf(" %s\n", name); 110 g_free(name); 111 } 112 113 void tricore_cpu_list(void) 114 { 115 GSList *list; 116 117 list = object_class_get_list_sorted(TYPE_TRICORE_CPU, false); 118 qemu_printf("Available CPUs:\n"); 119 g_slist_foreach(list, tricore_cpu_list_entry, NULL); 120 g_slist_free(list); 121 } 122 123 void fpu_set_state(CPUTriCoreState *env) 124 { 125 set_float_rounding_mode(env->PSW & MASK_PSW_FPU_RM, &env->fp_status); 126 set_flush_inputs_to_zero(1, &env->fp_status); 127 set_flush_to_zero(1, &env->fp_status); 128 set_default_nan_mode(1, &env->fp_status); 129 } 130 131 uint32_t psw_read(CPUTriCoreState *env) 132 { 133 /* clear all USB bits */ 134 env->PSW &= 0x6ffffff; 135 /* now set them from the cache */ 136 env->PSW |= ((env->PSW_USB_C != 0) << 31); 137 env->PSW |= ((env->PSW_USB_V & (1 << 31)) >> 1); 138 env->PSW |= ((env->PSW_USB_SV & (1 << 31)) >> 2); 139 env->PSW |= ((env->PSW_USB_AV & (1 << 31)) >> 3); 140 env->PSW |= ((env->PSW_USB_SAV & (1 << 31)) >> 4); 141 142 return env->PSW; 143 } 144 145 void psw_write(CPUTriCoreState *env, uint32_t val) 146 { 147 env->PSW_USB_C = (val & MASK_USB_C); 148 env->PSW_USB_V = (val & MASK_USB_V) << 1; 149 env->PSW_USB_SV = (val & MASK_USB_SV) << 2; 150 env->PSW_USB_AV = (val & MASK_USB_AV) << 3; 151 env->PSW_USB_SAV = (val & MASK_USB_SAV) << 4; 152 env->PSW = val; 153 154 fpu_set_state(env); 155 } 156