]> Git Repo - qemu.git/blame - target/tricore/helper.c
target/tricore: Convert to CPUClass::tlb_fill
[qemu.git] / target / tricore / helper.c
CommitLineData
48e06fe0
BK
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
02754acd 7 * version 2.1 of the License, or (at your option) any later version.
48e06fe0
BK
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
61d9f32b 18#include "qemu/osdep.h"
48e06fe0
BK
19
20#include "cpu.h"
63c91552 21#include "exec/exec-all.h"
24f91e81 22#include "fpu/softfloat.h"
0442428a 23#include "qemu/qemu-print.h"
48e06fe0 24
2d30267e
BK
25enum {
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)
34static 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#endif
46
47/* TODO: Add exeption support*/
48static void raise_mmu_exception(CPUTriCoreState *env, target_ulong address,
49 int rw, int tlb_error)
50{
51}
52
68d6eee7
RH
53bool tricore_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
54 MMUAccessType rw, int mmu_idx,
55 bool probe, uintptr_t retaddr)
48e06fe0 56{
2d30267e
BK
57 TriCoreCPU *cpu = TRICORE_CPU(cs);
58 CPUTriCoreState *env = &cpu->env;
59 hwaddr physical;
60 int prot;
61 int access_type;
62 int ret = 0;
63
64 rw &= 1;
65 access_type = ACCESS_INT;
66 ret = get_physical_address(env, &physical, &prot,
67 address, rw, access_type);
68d6eee7
RH
68
69 qemu_log_mask(CPU_LOG_MMU, "%s address=" TARGET_FMT_lx " ret %d physical "
70 TARGET_FMT_plx " prot %d\n",
71 __func__, (target_ulong)address, ret, physical, prot);
2d30267e
BK
72
73 if (ret == TLBRET_MATCH) {
74 tlb_set_page(cs, address & TARGET_PAGE_MASK,
75 physical & TARGET_PAGE_MASK, prot | PAGE_EXEC,
76 mmu_idx, TARGET_PAGE_SIZE);
68d6eee7
RH
77 return true;
78 } else {
79 assert(ret < 0);
80 if (probe) {
81 return false;
82 }
2d30267e 83 raise_mmu_exception(env, address, rw, ret);
68d6eee7 84 cpu_loop_exit_restore(cs, retaddr);
2d30267e 85 }
68d6eee7 86}
2d30267e 87
68d6eee7
RH
88void tlb_fill(CPUState *cs, target_ulong addr, int size,
89 MMUAccessType access_type, int mmu_idx, uintptr_t retaddr)
90{
91 tricore_cpu_tlb_fill(cs, addr, size, access_type, mmu_idx, false, retaddr);
48e06fe0
BK
92}
93
48e06fe0
BK
94static void tricore_cpu_list_entry(gpointer data, gpointer user_data)
95{
96 ObjectClass *oc = data;
48e06fe0
BK
97 const char *typename;
98 char *name;
99
100 typename = object_class_get_name(oc);
101 name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_TRICORE_CPU));
0442428a 102 qemu_printf(" %s\n", name);
48e06fe0
BK
103 g_free(name);
104}
105
0442428a 106void tricore_cpu_list(void)
48e06fe0 107{
48e06fe0
BK
108 GSList *list;
109
47c66009 110 list = object_class_get_list_sorted(TYPE_TRICORE_CPU, false);
0442428a
MA
111 qemu_printf("Available CPUs:\n");
112 g_slist_foreach(list, tricore_cpu_list_entry, NULL);
48e06fe0
BK
113 g_slist_free(list);
114}
115
996a729f
BK
116void fpu_set_state(CPUTriCoreState *env)
117{
118 set_float_rounding_mode(env->PSW & MASK_PSW_FPU_RM, &env->fp_status);
119 set_flush_inputs_to_zero(1, &env->fp_status);
120 set_flush_to_zero(1, &env->fp_status);
121 set_default_nan_mode(1, &env->fp_status);
122}
123
48e06fe0
BK
124uint32_t psw_read(CPUTriCoreState *env)
125{
126 /* clear all USB bits */
1bd3e2fc 127 env->PSW &= 0x6ffffff;
48e06fe0
BK
128 /* now set them from the cache */
129 env->PSW |= ((env->PSW_USB_C != 0) << 31);
130 env->PSW |= ((env->PSW_USB_V & (1 << 31)) >> 1);
131 env->PSW |= ((env->PSW_USB_SV & (1 << 31)) >> 2);
132 env->PSW |= ((env->PSW_USB_AV & (1 << 31)) >> 3);
133 env->PSW |= ((env->PSW_USB_SAV & (1 << 31)) >> 4);
134
135 return env->PSW;
136}
137
138void psw_write(CPUTriCoreState *env, uint32_t val)
139{
140 env->PSW_USB_C = (val & MASK_USB_C);
5dc1fbae
BK
141 env->PSW_USB_V = (val & MASK_USB_V) << 1;
142 env->PSW_USB_SV = (val & MASK_USB_SV) << 2;
143 env->PSW_USB_AV = (val & MASK_USB_AV) << 3;
144 env->PSW_USB_SAV = (val & MASK_USB_SAV) << 4;
48e06fe0 145 env->PSW = val;
996a729f
BK
146
147 fpu_set_state(env);
48e06fe0 148}
This page took 0.25948 seconds and 4 git commands to generate.