2 * Altera Nios II helper routines.
4 * Copyright (c) 2012 Chris Wulff <crwulff@gmail.com>
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>
26 #include "qemu/osdep.h"
27 #include "qemu/host-utils.h"
28 #include "qapi/error.h"
29 #include "exec/exec-all.h"
31 #include "exec/helper-proto.h"
33 #if defined(CONFIG_USER_ONLY)
35 void nios2_cpu_do_interrupt(CPUState
*cs
)
37 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
38 CPUNios2State
*env
= &cpu
->env
;
39 cs
->exception_index
= -1;
40 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
43 int nios2_cpu_handle_mmu_fault(CPUState
*cs
, vaddr address
, int rw
, int mmu_idx
)
45 cs
->exception_index
= 0xaa;
46 /* Page 0x1000 is kuser helper */
47 if (address
< 0x1000 || address
>= 0x2000) {
48 cpu_dump_state(cs
, stderr
, fprintf
, 0);
53 #else /* !CONFIG_USER_ONLY */
55 void nios2_cpu_do_interrupt(CPUState
*cs
)
57 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
58 CPUNios2State
*env
= &cpu
->env
;
60 switch (cs
->exception_index
) {
62 assert(env
->regs
[CR_STATUS
] & CR_STATUS_PIE
);
64 qemu_log_mask(CPU_LOG_INT
, "interrupt at pc=%x\n", env
->regs
[R_PC
]);
66 env
->regs
[CR_ESTATUS
] = env
->regs
[CR_STATUS
];
67 env
->regs
[CR_STATUS
] |= CR_STATUS_IH
;
68 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
70 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
71 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
73 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
74 env
->regs
[R_PC
] = cpu
->exception_addr
;
78 if ((env
->regs
[CR_STATUS
] & CR_STATUS_EH
) == 0) {
79 qemu_log_mask(CPU_LOG_INT
, "TLB MISS (fast) at pc=%x\n",
83 /* Variation from the spec. Table 3-35 of the cpu reference shows
84 * estatus not being changed for TLB miss but this appears to
86 env
->regs
[CR_ESTATUS
] = env
->regs
[CR_STATUS
];
87 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
88 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
90 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
91 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
93 env
->regs
[CR_TLBMISC
] &= ~CR_TLBMISC_DBL
;
94 env
->regs
[CR_TLBMISC
] |= CR_TLBMISC_WR
;
96 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
97 env
->regs
[R_PC
] = cpu
->fast_tlb_miss_addr
;
99 qemu_log_mask(CPU_LOG_INT
, "TLB MISS (double) at pc=%x\n",
102 /* Double TLB miss */
103 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
104 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
106 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
107 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
109 env
->regs
[CR_TLBMISC
] |= CR_TLBMISC_DBL
;
111 env
->regs
[R_PC
] = cpu
->exception_addr
;
118 qemu_log_mask(CPU_LOG_INT
, "TLB PERM at pc=%x\n", env
->regs
[R_PC
]);
120 env
->regs
[CR_ESTATUS
] = env
->regs
[CR_STATUS
];
121 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
122 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
124 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
125 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
127 if ((env
->regs
[CR_STATUS
] & CR_STATUS_EH
) == 0) {
128 env
->regs
[CR_TLBMISC
] |= CR_TLBMISC_WR
;
131 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
132 env
->regs
[R_PC
] = cpu
->exception_addr
;
138 qemu_log_mask(CPU_LOG_INT
, "SUPERVISOR exception at pc=%x\n",
141 if ((env
->regs
[CR_STATUS
] & CR_STATUS_EH
) == 0) {
142 env
->regs
[CR_ESTATUS
] = env
->regs
[CR_STATUS
];
143 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
146 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
147 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
149 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
150 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
152 env
->regs
[R_PC
] = cpu
->exception_addr
;
157 qemu_log_mask(CPU_LOG_INT
, "TRAP exception at pc=%x\n",
160 if ((env
->regs
[CR_STATUS
] & CR_STATUS_EH
) == 0) {
161 env
->regs
[CR_ESTATUS
] = env
->regs
[CR_STATUS
];
162 env
->regs
[R_EA
] = env
->regs
[R_PC
] + 4;
165 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
166 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
168 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
169 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
171 env
->regs
[R_PC
] = cpu
->exception_addr
;
175 if ((env
->regs
[CR_STATUS
] & CR_STATUS_EH
) == 0) {
176 env
->regs
[CR_BSTATUS
] = env
->regs
[CR_STATUS
];
177 env
->regs
[R_BA
] = env
->regs
[R_PC
] + 4;
180 env
->regs
[CR_STATUS
] |= CR_STATUS_EH
;
181 env
->regs
[CR_STATUS
] &= ~(CR_STATUS_PIE
| CR_STATUS_U
);
183 env
->regs
[CR_EXCEPTION
] &= ~(0x1F << 2);
184 env
->regs
[CR_EXCEPTION
] |= (cs
->exception_index
& 0x1F) << 2;
186 env
->regs
[R_PC
] = cpu
->exception_addr
;
190 cpu_abort(cs
, "unhandled exception type=%d\n",
191 cs
->exception_index
);
196 static int cpu_nios2_handle_virtual_page(
197 CPUState
*cs
, target_ulong address
, int rw
, int mmu_idx
)
199 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
200 CPUNios2State
*env
= &cpu
->env
;
201 target_ulong vaddr
, paddr
;
204 hit
= mmu_translate(env
, &lu
, address
, rw
, mmu_idx
);
206 vaddr
= address
& TARGET_PAGE_MASK
;
207 paddr
= lu
.paddr
+ vaddr
- lu
.vaddr
;
209 if (((rw
== 0) && (lu
.prot
& PAGE_READ
)) ||
210 ((rw
== 1) && (lu
.prot
& PAGE_WRITE
)) ||
211 ((rw
== 2) && (lu
.prot
& PAGE_EXEC
))) {
213 tlb_set_page(cs
, vaddr
, paddr
, lu
.prot
,
214 mmu_idx
, TARGET_PAGE_SIZE
);
217 /* Permission violation */
218 cs
->exception_index
= (rw
== 0) ? EXCP_TLBR
:
219 ((rw
== 1) ? EXCP_TLBW
:
223 cs
->exception_index
= EXCP_TLBD
;
227 env
->regs
[CR_TLBMISC
] &= ~CR_TLBMISC_D
;
229 env
->regs
[CR_TLBMISC
] |= CR_TLBMISC_D
;
231 env
->regs
[CR_PTEADDR
] &= CR_PTEADDR_PTBASE_MASK
;
232 env
->regs
[CR_PTEADDR
] |= (address
>> 10) & CR_PTEADDR_VPN_MASK
;
233 env
->mmu
.pteaddr_wr
= env
->regs
[CR_PTEADDR
];
234 env
->regs
[CR_BADADDR
] = address
;
238 int nios2_cpu_handle_mmu_fault(CPUState
*cs
, vaddr address
, int rw
, int mmu_idx
)
240 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
241 CPUNios2State
*env
= &cpu
->env
;
243 if (cpu
->mmu_present
) {
244 if (MMU_SUPERVISOR_IDX
== mmu_idx
) {
245 if (address
>= 0xC0000000) {
246 /* Kernel physical page - TLB bypassed */
247 address
&= TARGET_PAGE_MASK
;
248 tlb_set_page(cs
, address
, address
, PAGE_BITS
,
249 mmu_idx
, TARGET_PAGE_SIZE
);
250 } else if (address
>= 0x80000000) {
251 /* Kernel virtual page */
252 return cpu_nios2_handle_virtual_page(cs
, address
, rw
, mmu_idx
);
254 /* User virtual page */
255 return cpu_nios2_handle_virtual_page(cs
, address
, rw
, mmu_idx
);
258 if (address
>= 0x80000000) {
259 /* Illegal access from user mode */
260 cs
->exception_index
= EXCP_SUPERA
;
261 env
->regs
[CR_BADADDR
] = address
;
264 /* User virtual page */
265 return cpu_nios2_handle_virtual_page(cs
, address
, rw
, mmu_idx
);
270 address
&= TARGET_PAGE_MASK
;
271 tlb_set_page(cs
, address
, address
, PAGE_BITS
,
272 mmu_idx
, TARGET_PAGE_SIZE
);
278 hwaddr
nios2_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
280 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
281 CPUNios2State
*env
= &cpu
->env
;
282 target_ulong vaddr
, paddr
= 0;
286 if (cpu
->mmu_present
&& (addr
< 0xC0000000)) {
287 hit
= mmu_translate(env
, &lu
, addr
, 0, 0);
289 vaddr
= addr
& TARGET_PAGE_MASK
;
290 paddr
= lu
.paddr
+ vaddr
- lu
.vaddr
;
293 qemu_log("cpu_get_phys_page debug MISS: %#" PRIx64
"\n", addr
);
296 paddr
= addr
& TARGET_PAGE_MASK
;
302 void nios2_cpu_do_unaligned_access(CPUState
*cs
, vaddr addr
,
303 MMUAccessType access_type
,
304 int mmu_idx
, uintptr_t retaddr
)
306 Nios2CPU
*cpu
= NIOS2_CPU(cs
);
307 CPUNios2State
*env
= &cpu
->env
;
309 env
->regs
[CR_BADADDR
] = addr
;
310 env
->regs
[CR_EXCEPTION
] = EXCP_UNALIGN
<< 2;
311 helper_raise_exception(env
, EXCP_UNALIGN
);
313 #endif /* !CONFIG_USER_ONLY */