]>
Commit | Line | Data |
---|---|---|
17c0fa3d MW |
1 | /* |
2 | * LatticeMico32 helper routines. | |
3 | * | |
4 | * Copyright (c) 2010 Michael Walle <[email protected]> | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
17c0fa3d | 20 | #include "cpu.h" |
1de7afc9 | 21 | #include "qemu/host-utils.h" |
17c0fa3d | 22 | |
7510454e | 23 | int lm32_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw, |
97b348e7 | 24 | int mmu_idx) |
17c0fa3d | 25 | { |
7510454e AF |
26 | LM32CPU *cpu = LM32_CPU(cs); |
27 | CPULM32State *env = &cpu->env; | |
17c0fa3d MW |
28 | int prot; |
29 | ||
30 | address &= TARGET_PAGE_MASK; | |
31 | prot = PAGE_BITS; | |
32 | if (env->flags & LM32_FLAG_IGNORE_MSB) { | |
33 | tlb_set_page(env, address, address & 0x7fffffff, prot, mmu_idx, | |
34 | TARGET_PAGE_SIZE); | |
35 | } else { | |
36 | tlb_set_page(env, address, address, prot, mmu_idx, TARGET_PAGE_SIZE); | |
37 | } | |
38 | ||
39 | return 0; | |
40 | } | |
41 | ||
00b941e5 | 42 | hwaddr lm32_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) |
17c0fa3d | 43 | { |
00b941e5 AF |
44 | LM32CPU *cpu = LM32_CPU(cs); |
45 | ||
b92e062a | 46 | addr &= TARGET_PAGE_MASK; |
00b941e5 | 47 | if (cpu->env.flags & LM32_FLAG_IGNORE_MSB) { |
b92e062a MW |
48 | return addr & 0x7fffffff; |
49 | } else { | |
50 | return addr; | |
51 | } | |
17c0fa3d MW |
52 | } |
53 | ||
3dd3a2b9 MW |
54 | void lm32_breakpoint_insert(CPULM32State *env, int idx, target_ulong address) |
55 | { | |
56 | cpu_breakpoint_insert(env, address, BP_CPU, &env->cpu_breakpoint[idx]); | |
57 | } | |
58 | ||
59 | void lm32_breakpoint_remove(CPULM32State *env, int idx) | |
60 | { | |
61 | if (!env->cpu_breakpoint[idx]) { | |
62 | return; | |
63 | } | |
64 | ||
65 | cpu_breakpoint_remove_by_ref(env, env->cpu_breakpoint[idx]); | |
66 | env->cpu_breakpoint[idx] = NULL; | |
67 | } | |
68 | ||
69 | void lm32_watchpoint_insert(CPULM32State *env, int idx, target_ulong address, | |
70 | lm32_wp_t wp_type) | |
71 | { | |
75a34036 | 72 | LM32CPU *cpu = lm32_env_get_cpu(env); |
3dd3a2b9 MW |
73 | int flags = 0; |
74 | ||
75 | switch (wp_type) { | |
76 | case LM32_WP_DISABLED: | |
77 | /* nothing to to */ | |
78 | break; | |
79 | case LM32_WP_READ: | |
80 | flags = BP_CPU | BP_STOP_BEFORE_ACCESS | BP_MEM_READ; | |
81 | break; | |
82 | case LM32_WP_WRITE: | |
83 | flags = BP_CPU | BP_STOP_BEFORE_ACCESS | BP_MEM_WRITE; | |
84 | break; | |
85 | case LM32_WP_READ_WRITE: | |
86 | flags = BP_CPU | BP_STOP_BEFORE_ACCESS | BP_MEM_ACCESS; | |
87 | break; | |
88 | } | |
89 | ||
90 | if (flags != 0) { | |
75a34036 | 91 | cpu_watchpoint_insert(CPU(cpu), address, 1, flags, |
3dd3a2b9 MW |
92 | &env->cpu_watchpoint[idx]); |
93 | } | |
94 | } | |
95 | ||
96 | void lm32_watchpoint_remove(CPULM32State *env, int idx) | |
97 | { | |
75a34036 AF |
98 | LM32CPU *cpu = lm32_env_get_cpu(env); |
99 | ||
3dd3a2b9 MW |
100 | if (!env->cpu_watchpoint[idx]) { |
101 | return; | |
102 | } | |
103 | ||
75a34036 | 104 | cpu_watchpoint_remove_by_ref(CPU(cpu), env->cpu_watchpoint[idx]); |
3dd3a2b9 MW |
105 | env->cpu_watchpoint[idx] = NULL; |
106 | } | |
107 | ||
108 | static bool check_watchpoints(CPULM32State *env) | |
109 | { | |
110 | LM32CPU *cpu = lm32_env_get_cpu(env); | |
111 | int i; | |
112 | ||
113 | for (i = 0; i < cpu->num_watchpoints; i++) { | |
114 | if (env->cpu_watchpoint[i] && | |
115 | env->cpu_watchpoint[i]->flags & BP_WATCHPOINT_HIT) { | |
116 | return true; | |
117 | } | |
118 | } | |
119 | return false; | |
120 | } | |
121 | ||
122 | void lm32_debug_excp_handler(CPULM32State *env) | |
123 | { | |
ff4700b0 | 124 | CPUState *cs = CPU(lm32_env_get_cpu(env)); |
3dd3a2b9 MW |
125 | CPUBreakpoint *bp; |
126 | ||
ff4700b0 AF |
127 | if (cs->watchpoint_hit) { |
128 | if (cs->watchpoint_hit->flags & BP_CPU) { | |
129 | cs->watchpoint_hit = NULL; | |
3dd3a2b9 MW |
130 | if (check_watchpoints(env)) { |
131 | raise_exception(env, EXCP_WATCHPOINT); | |
132 | } else { | |
133 | cpu_resume_from_signal(env, NULL); | |
134 | } | |
135 | } | |
136 | } else { | |
f0c3c505 | 137 | QTAILQ_FOREACH(bp, &cs->breakpoints, entry) { |
3dd3a2b9 MW |
138 | if (bp->pc == env->pc) { |
139 | if (bp->flags & BP_CPU) { | |
140 | raise_exception(env, EXCP_BREAKPOINT); | |
141 | } | |
142 | break; | |
143 | } | |
144 | } | |
145 | } | |
146 | } | |
147 | ||
97a8ea5a | 148 | void lm32_cpu_do_interrupt(CPUState *cs) |
17c0fa3d | 149 | { |
97a8ea5a AF |
150 | LM32CPU *cpu = LM32_CPU(cs); |
151 | CPULM32State *env = &cpu->env; | |
152 | ||
17c0fa3d | 153 | qemu_log_mask(CPU_LOG_INT, |
27103424 | 154 | "exception at pc=%x type=%x\n", env->pc, cs->exception_index); |
17c0fa3d | 155 | |
27103424 | 156 | switch (cs->exception_index) { |
17c0fa3d MW |
157 | case EXCP_INSN_BUS_ERROR: |
158 | case EXCP_DATA_BUS_ERROR: | |
159 | case EXCP_DIVIDE_BY_ZERO: | |
160 | case EXCP_IRQ: | |
161 | case EXCP_SYSTEMCALL: | |
162 | /* non-debug exceptions */ | |
163 | env->regs[R_EA] = env->pc; | |
164 | env->ie |= (env->ie & IE_IE) ? IE_EIE : 0; | |
165 | env->ie &= ~IE_IE; | |
166 | if (env->dc & DC_RE) { | |
27103424 | 167 | env->pc = env->deba + (cs->exception_index * 32); |
17c0fa3d | 168 | } else { |
27103424 | 169 | env->pc = env->eba + (cs->exception_index * 32); |
17c0fa3d | 170 | } |
a0762859 | 171 | log_cpu_state_mask(CPU_LOG_INT, cs, 0); |
17c0fa3d MW |
172 | break; |
173 | case EXCP_BREAKPOINT: | |
174 | case EXCP_WATCHPOINT: | |
175 | /* debug exceptions */ | |
176 | env->regs[R_BA] = env->pc; | |
177 | env->ie |= (env->ie & IE_IE) ? IE_BIE : 0; | |
178 | env->ie &= ~IE_IE; | |
27103424 | 179 | env->pc = env->deba + (cs->exception_index * 32); |
a0762859 | 180 | log_cpu_state_mask(CPU_LOG_INT, cs, 0); |
17c0fa3d MW |
181 | break; |
182 | default: | |
183 | cpu_abort(env, "unhandled exception type=%d\n", | |
27103424 | 184 | cs->exception_index); |
17c0fa3d MW |
185 | break; |
186 | } | |
187 | } | |
188 | ||
0347d689 | 189 | LM32CPU *cpu_lm32_init(const char *cpu_model) |
17c0fa3d | 190 | { |
9262685b | 191 | return LM32_CPU(cpu_generic_init(TYPE_LM32_CPU, cpu_model)); |
17c0fa3d MW |
192 | } |
193 | ||
194 | /* Some soc ignores the MSB on the address bus. Thus creating a shadow memory | |
195 | * area. As a general rule, 0x00000000-0x7fffffff is cached, whereas | |
196 | * 0x80000000-0xffffffff is not cached and used to access IO devices. */ | |
6393c08d | 197 | void cpu_lm32_set_phys_msb_ignore(CPULM32State *env, int value) |
17c0fa3d MW |
198 | { |
199 | if (value) { | |
200 | env->flags |= LM32_FLAG_IGNORE_MSB; | |
201 | } else { | |
202 | env->flags &= ~LM32_FLAG_IGNORE_MSB; | |
203 | } | |
204 | } |