target/tricore: Replace magic value by MMU_DATA_LOAD definition
[qemu/ar7.git] / target / tricore / helper.c
blob81171db833bb8d16660505209fa8f4c686ee849c
1 /*
2 * Copyright (c) 2012-2014 Bastian Koppelmann C-Lab/University Paderborn
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.
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.
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/>.
18 #include "qemu/osdep.h"
20 #include "cpu.h"
21 #include "exec/exec-all.h"
22 #include "fpu/softfloat-helpers.h"
23 #include "qemu/qemu-print.h"
25 enum {
26 TLBRET_DIRTY = -4,
27 TLBRET_INVALID = -3,
28 TLBRET_NOMATCH = -2,
29 TLBRET_BADADDR = -1,
30 TLBRET_MATCH = 0
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)
38 int ret = TLBRET_MATCH;
40 *physical = address & 0xFFFFFFFF;
41 *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
43 return ret;
46 hwaddr tricore_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
48 TriCoreCPU *cpu = TRICORE_CPU(cs);
49 hwaddr phys_addr;
50 int prot;
51 int mmu_idx = cpu_mmu_index(&cpu->env, false);
53 if (get_physical_address(&cpu->env, &phys_addr, &prot, addr,
54 MMU_DATA_LOAD, mmu_idx)) {
55 return -1;
57 return phys_addr;
59 #endif
61 /* TODO: Add exeption support*/
62 static void raise_mmu_exception(CPUTriCoreState *env, target_ulong address,
63 int rw, int tlb_error)
67 bool tricore_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
68 MMUAccessType rw, int mmu_idx,
69 bool probe, uintptr_t retaddr)
71 TriCoreCPU *cpu = TRICORE_CPU(cs);
72 CPUTriCoreState *env = &cpu->env;
73 hwaddr physical;
74 int prot;
75 int access_type;
76 int ret = 0;
78 rw &= 1;
79 access_type = ACCESS_INT;
80 ret = get_physical_address(env, &physical, &prot,
81 address, rw, access_type);
83 qemu_log_mask(CPU_LOG_MMU, "%s address=" TARGET_FMT_lx " ret %d physical "
84 TARGET_FMT_plx " prot %d\n",
85 __func__, (target_ulong)address, ret, physical, prot);
87 if (ret == TLBRET_MATCH) {
88 tlb_set_page(cs, address & TARGET_PAGE_MASK,
89 physical & TARGET_PAGE_MASK, prot | PAGE_EXEC,
90 mmu_idx, TARGET_PAGE_SIZE);
91 return true;
92 } else {
93 assert(ret < 0);
94 if (probe) {
95 return false;
97 raise_mmu_exception(env, address, rw, ret);
98 cpu_loop_exit_restore(cs, retaddr);
102 static void tricore_cpu_list_entry(gpointer data, gpointer user_data)
104 ObjectClass *oc = data;
105 const char *typename;
106 char *name;
108 typename = object_class_get_name(oc);
109 name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_TRICORE_CPU));
110 qemu_printf(" %s\n", name);
111 g_free(name);
114 void tricore_cpu_list(void)
116 GSList *list;
118 list = object_class_get_list_sorted(TYPE_TRICORE_CPU, false);
119 qemu_printf("Available CPUs:\n");
120 g_slist_foreach(list, tricore_cpu_list_entry, NULL);
121 g_slist_free(list);
124 void fpu_set_state(CPUTriCoreState *env)
126 set_float_rounding_mode(env->PSW & MASK_PSW_FPU_RM, &env->fp_status);
127 set_flush_inputs_to_zero(1, &env->fp_status);
128 set_flush_to_zero(1, &env->fp_status);
129 set_default_nan_mode(1, &env->fp_status);
132 uint32_t psw_read(CPUTriCoreState *env)
134 /* clear all USB bits */
135 env->PSW &= 0x6ffffff;
136 /* now set them from the cache */
137 env->PSW |= ((env->PSW_USB_C != 0) << 31);
138 env->PSW |= ((env->PSW_USB_V & (1 << 31)) >> 1);
139 env->PSW |= ((env->PSW_USB_SV & (1 << 31)) >> 2);
140 env->PSW |= ((env->PSW_USB_AV & (1 << 31)) >> 3);
141 env->PSW |= ((env->PSW_USB_SAV & (1 << 31)) >> 4);
143 return env->PSW;
146 void psw_write(CPUTriCoreState *env, uint32_t val)
148 env->PSW_USB_C = (val & MASK_USB_C);
149 env->PSW_USB_V = (val & MASK_USB_V) << 1;
150 env->PSW_USB_SV = (val & MASK_USB_SV) << 2;
151 env->PSW_USB_AV = (val & MASK_USB_AV) << 3;
152 env->PSW_USB_SAV = (val & MASK_USB_SAV) << 4;
153 env->PSW = val;
155 fpu_set_state(env);