2
* Copyright (c) 2007 Pavel Jancik, Michal Kebrt
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions
9
* - Redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer.
11
* - Redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution.
14
* - The name of the author may not be used to endorse or promote products
15
* derived from this software without specific prior written permission.
17
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
/** @addtogroup arm32mm
33
* @brief Page fault related functions.
36
#include <arch/exception.h>
37
#include <arch/mm/page_fault.h>
39
#include <genarch/mm/page_pt.h>
41
#include <interrupt.h>
44
/** Returns value stored in fault status register.
46
* @return Value stored in CP15 fault status register (FSR).
48
static inline fault_status_t read_fault_status_register(void)
50
fault_status_union_t fsu;
52
/* fault status is stored in CP15 register 5 */
54
"mrc p15, 0, %[dummy], c5, c0, 0"
55
: [dummy] "=r" (fsu.dummy)
61
/** Returns FAR (fault address register) content.
63
* @return FAR (fault address register) content (address that caused a page
66
static inline uintptr_t read_fault_address_register(void)
70
/* fault adress is stored in CP15 register 6 */
72
"mrc p15, 0, %[ret], c6, c0, 0"
79
/** Decides whether the instruction is load/store or not.
81
* @param instr Instruction
83
* @return true when instruction is load/store, false otherwise
86
static inline bool is_load_store_instruction(instruction_t instr)
88
/* load store immediate offset */
89
if (instr.type == 0x2)
92
/* load store register offset */
93
if ((instr.type == 0x3) && (instr.bit4 == 0))
96
/* load store multiple */
97
if (instr.type == 0x4)
100
/* oprocessor load/store */
101
if (instr.type == 0x6)
107
/** Decides whether the instruction is swap or not.
109
* @param instr Instruction
111
* @return true when instruction is swap, false otherwise
113
static inline bool is_swap_instruction(instruction_t instr)
115
/* swap, swapb instruction */
116
if ((instr.type == 0x0) &&
117
((instr.opcode == 0x8) || (instr.opcode == 0xa)) &&
118
(instr.access == 0x0) && (instr.bits567 == 0x4) && (instr.bit4 == 1))
124
/** Decides whether read or write into memory is requested.
126
* @param instr_addr Address of instruction which tries to access memory.
127
* @param badvaddr Virtual address the instruction tries to access.
129
* @return Type of access into memory, PF_ACCESS_EXEC if no memory access is
132
static pf_access_t get_memory_access_type(uint32_t instr_addr,
135
instruction_union_t instr_union;
136
instr_union.pc = instr_addr;
138
instruction_t instr = *(instr_union.instr);
140
/* undefined instructions */
141
if (instr.condition == 0xf) {
142
panic("page_fault - instruction does not access memory "
143
"(instr_code: %x, badvaddr:%x).", instr, badvaddr);
144
return PF_ACCESS_EXEC;
147
/* load store instructions */
148
if (is_load_store_instruction(instr)) {
149
if (instr.access == 1) {
150
return PF_ACCESS_READ;
152
return PF_ACCESS_WRITE;
156
/* swap, swpb instruction */
157
if (is_swap_instruction(instr)) {
158
return PF_ACCESS_WRITE;
161
panic("page_fault - instruction doesn't access memory "
162
"(instr_code: %x, badvaddr:%x).", instr, badvaddr);
164
return PF_ACCESS_EXEC;
167
/** Handles "data abort" exception (load or store at invalid address).
169
* @param exc_no Exception number.
170
* @param istate CPU state when exception occured.
172
void data_abort(int exc_no, istate_t *istate)
174
fault_status_t fsr __attribute__ ((unused)) =
175
read_fault_status_register();
176
uintptr_t badvaddr = read_fault_address_register();
178
pf_access_t access = get_memory_access_type(istate->pc, badvaddr);
180
int ret = as_page_fault(badvaddr, access, istate);
182
if (ret == AS_PF_FAULT) {
183
print_istate(istate);
184
printf("page fault - pc: %x, va: %x, status: %x(%x), "
185
"access:%d\n", istate->pc, badvaddr, fsr.status, fsr,
188
fault_if_from_uspace(istate, "Page fault: %#x.", badvaddr);
189
panic("Page fault.");
193
/** Handles "prefetch abort" exception (instruction couldn't be executed).
195
* @param exc_no Exception number.
196
* @param istate CPU state when exception occured.
198
void prefetch_abort(int exc_no, istate_t *istate)
200
int ret = as_page_fault(istate->pc, PF_ACCESS_EXEC, istate);
202
if (ret == AS_PF_FAULT) {
203
printf("prefetch_abort\n");
204
print_istate(istate);
205
panic("page fault - prefetch_abort at address: %x.",