4 * Copyright (c) 2016-2020 Michael Rolnik
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.1 of the License, or (at your option) any later version.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/lgpl-2.1.html>
21 #include "qemu/osdep.h"
24 #include "hw/core/tcg-cpu-ops.h"
25 #include "exec/exec-all.h"
26 #include "exec/address-spaces.h"
27 #include "exec/helper-proto.h"
29 bool avr_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
31 AVRCPU *cpu = AVR_CPU(cs);
32 CPUAVRState *env = &cpu->env;
35 * We cannot separate a skip from the next instruction,
36 * as the skip would not be preserved across the interrupt.
37 * Separating the two insn normally only happens at page boundaries.
43 if (interrupt_request & CPU_INTERRUPT_RESET) {
44 if (cpu_interrupts_enabled(env)) {
45 cs->exception_index = EXCP_RESET;
46 avr_cpu_do_interrupt(cs);
48 cs->interrupt_request &= ~CPU_INTERRUPT_RESET;
52 if (interrupt_request & CPU_INTERRUPT_HARD) {
53 if (cpu_interrupts_enabled(env) && env->intsrc != 0) {
54 int index = ctz32(env->intsrc);
55 cs->exception_index = EXCP_INT(index);
56 avr_cpu_do_interrupt(cs);
58 env->intsrc &= env->intsrc - 1; /* clear the interrupt */
60 cs->interrupt_request &= ~CPU_INTERRUPT_HARD;
68 void avr_cpu_do_interrupt(CPUState *cs)
70 AVRCPU *cpu = AVR_CPU(cs);
71 CPUAVRState *env = &cpu->env;
73 uint32_t ret = env->pc_w;
75 int size = avr_feature(env, AVR_FEATURE_JMP_CALL) ? 2 : 1;
78 if (cs->exception_index == EXCP_RESET) {
80 } else if (env->intsrc != 0) {
81 vector = ctz32(env->intsrc) + 1;
84 if (avr_feature(env, AVR_FEATURE_3_BYTE_PC)) {
85 cpu_stb_data(env, env->sp--, (ret & 0x0000ff));
86 cpu_stb_data(env, env->sp--, (ret & 0x00ff00) >> 8);
87 cpu_stb_data(env, env->sp--, (ret & 0xff0000) >> 16);
88 } else if (avr_feature(env, AVR_FEATURE_2_BYTE_PC)) {
89 cpu_stb_data(env, env->sp--, (ret & 0x0000ff));
90 cpu_stb_data(env, env->sp--, (ret & 0x00ff00) >> 8);
92 cpu_stb_data(env, env->sp--, (ret & 0x0000ff));
95 env->pc_w = base + vector * size;
96 env->sregI = 0; /* clear Global Interrupt Flag */
98 cs->exception_index = -1;
101 hwaddr avr_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
103 return addr; /* I assume 1:1 address correspondence */
106 bool avr_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
107 MMUAccessType access_type, int mmu_idx,
108 bool probe, uintptr_t retaddr)
110 int prot, page_size = TARGET_PAGE_SIZE;
113 address &= TARGET_PAGE_MASK;
115 if (mmu_idx == MMU_CODE_IDX) {
116 /* Access to code in flash. */
117 paddr = OFFSET_CODE + address;
118 prot = PAGE_READ | PAGE_EXEC;
119 if (paddr >= OFFSET_DATA) {
121 * This should not be possible via any architectural operations.
122 * There is certainly not an exception that we can deliver.
123 * Accept probing that might come from generic code.
128 error_report("execution left flash memory");
132 /* Access to memory. */
133 paddr = OFFSET_DATA + address;
134 prot = PAGE_READ | PAGE_WRITE;
135 if (address < NUMBER_OF_CPU_REGISTERS + NUMBER_OF_IO_REGISTERS) {
137 * Access to CPU registers, exit and rebuilt this TB to use
138 * full access in case it touches specially handled registers
139 * like SREG or SP. For probing, set page_size = 1, in order
140 * to force tlb_fill to be called for the next access.
145 AVRCPU *cpu = AVR_CPU(cs);
146 CPUAVRState *env = &cpu->env;
148 cpu_loop_exit_restore(cs, retaddr);
153 tlb_set_page(cs, address, paddr, prot, mmu_idx, page_size);
161 void helper_sleep(CPUAVRState *env)
163 CPUState *cs = env_cpu(env);
165 cs->exception_index = EXCP_HLT;
169 void helper_unsupported(CPUAVRState *env)
171 CPUState *cs = env_cpu(env);
174 * I count not find what happens on the real platform, so
175 * it's EXCP_DEBUG for meanwhile
177 cs->exception_index = EXCP_DEBUG;
178 if (qemu_loglevel_mask(LOG_UNIMP)) {
179 qemu_log("UNSUPPORTED\n");
180 cpu_dump_state(cs, stderr, 0);
185 void helper_debug(CPUAVRState *env)
187 CPUState *cs = env_cpu(env);
189 cs->exception_index = EXCP_DEBUG;
193 void helper_break(CPUAVRState *env)
195 CPUState *cs = env_cpu(env);
197 cs->exception_index = EXCP_DEBUG;
201 void helper_wdr(CPUAVRState *env)
203 qemu_log_mask(LOG_UNIMP, "WDG reset (not implemented)\n");
207 * This function implements IN instruction
209 * It does the following
210 * a. if an IO register belongs to CPU, its value is read and returned
211 * b. otherwise io address is translated to mem address and physical memory
213 * c. it caches the value for sake of SBI, SBIC, SBIS & CBI implementation
216 target_ulong helper_inb(CPUAVRState *env, uint32_t port)
218 target_ulong data = 0;
221 case 0x38: /* RAMPD */
222 data = 0xff & (env->rampD >> 16);
224 case 0x39: /* RAMPX */
225 data = 0xff & (env->rampX >> 16);
227 case 0x3a: /* RAMPY */
228 data = 0xff & (env->rampY >> 16);
230 case 0x3b: /* RAMPZ */
231 data = 0xff & (env->rampZ >> 16);
233 case 0x3c: /* EIND */
234 data = 0xff & (env->eind >> 16);
237 data = env->sp & 0x00ff;
242 case 0x3f: /* SREG */
243 data = cpu_get_sreg(env);
246 /* not a special register, pass to normal memory access */
247 data = address_space_ldub(&address_space_memory,
248 OFFSET_IO_REGISTERS + port,
249 MEMTXATTRS_UNSPECIFIED, NULL);
256 * This function implements OUT instruction
258 * It does the following
259 * a. if an IO register belongs to CPU, its value is written into the register
260 * b. otherwise io address is translated to mem address and physical memory
262 * c. it caches the value for sake of SBI, SBIC, SBIS & CBI implementation
265 void helper_outb(CPUAVRState *env, uint32_t port, uint32_t data)
270 case 0x38: /* RAMPD */
271 if (avr_feature(env, AVR_FEATURE_RAMPD)) {
272 env->rampD = (data & 0xff) << 16;
275 case 0x39: /* RAMPX */
276 if (avr_feature(env, AVR_FEATURE_RAMPX)) {
277 env->rampX = (data & 0xff) << 16;
280 case 0x3a: /* RAMPY */
281 if (avr_feature(env, AVR_FEATURE_RAMPY)) {
282 env->rampY = (data & 0xff) << 16;
285 case 0x3b: /* RAMPZ */
286 if (avr_feature(env, AVR_FEATURE_RAMPZ)) {
287 env->rampZ = (data & 0xff) << 16;
290 case 0x3c: /* EIDN */
291 env->eind = (data & 0xff) << 16;
294 env->sp = (env->sp & 0xff00) | (data);
297 if (avr_feature(env, AVR_FEATURE_2_BYTE_SP)) {
298 env->sp = (env->sp & 0x00ff) | (data << 8);
301 case 0x3f: /* SREG */
302 cpu_set_sreg(env, data);
305 /* not a special register, pass to normal memory access */
306 address_space_stb(&address_space_memory, OFFSET_IO_REGISTERS + port,
307 data, MEMTXATTRS_UNSPECIFIED, NULL);
312 * this function implements LD instruction when there is a possibility to read
313 * from a CPU register
315 target_ulong helper_fullrd(CPUAVRState *env, uint32_t addr)
319 env->fullacc = false;
321 if (addr < NUMBER_OF_CPU_REGISTERS) {
324 } else if (addr < NUMBER_OF_CPU_REGISTERS + NUMBER_OF_IO_REGISTERS) {
326 data = helper_inb(env, addr - NUMBER_OF_CPU_REGISTERS);
329 data = address_space_ldub(&address_space_memory, OFFSET_DATA + addr,
330 MEMTXATTRS_UNSPECIFIED, NULL);
336 * this function implements ST instruction when there is a possibility to write
337 * into a CPU register
339 void helper_fullwr(CPUAVRState *env, uint32_t data, uint32_t addr)
341 env->fullacc = false;
343 /* Following logic assumes this: */
344 assert(OFFSET_CPU_REGISTERS == OFFSET_DATA);
345 assert(OFFSET_IO_REGISTERS == OFFSET_CPU_REGISTERS +
346 NUMBER_OF_CPU_REGISTERS);
348 if (addr < NUMBER_OF_CPU_REGISTERS) {
351 } else if (addr < NUMBER_OF_CPU_REGISTERS + NUMBER_OF_IO_REGISTERS) {
353 helper_outb(env, addr - NUMBER_OF_CPU_REGISTERS, data);
356 address_space_stb(&address_space_memory, OFFSET_DATA + addr, data,
357 MEMTXATTRS_UNSPECIFIED, NULL);