Subversion Repositories HelenOS

Rev

Rev 2362 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2278 jancik 1
/*
2
 * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
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.
16
 *
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.
27
 */
28
 
29
/** @addtogroup arm32mm
30
 * @{
31
 */
32
/** @file
2410 stepan 33
 *  @brief Page fault related functions.
2278 jancik 34
 */
35
#include <panic.h>
36
#include <arch/exception.h>
2326 kebrt 37
#include <arch/debug/print.h>
2278 jancik 38
#include <arch/mm/page_fault.h>
39
#include <mm/as.h>
40
#include <genarch/mm/page_pt.h>
41
#include <arch.h>
2284 stepan 42
#include <interrupt.h>
2278 jancik 43
 
44
 
2304 kebrt 45
/** Returns value stored in fault status register.
2361 jancik 46
 *      FSR contain reason of page fault
2304 kebrt 47
 *
2362 jancik 48
 *  @return Value stored in CP15 fault status register (FSR).
2304 kebrt 49
 */
50
static inline fault_status_t read_fault_status_register(void)
51
{
52
    fault_status_union_t fsu;
2278 jancik 53
 
2304 kebrt 54
    // fault adress is stored in CP15 register 5
55
    asm volatile (
2278 jancik 56
        "mrc p15, 0, %0, c5, c0, 0"
2304 kebrt 57
        : "=r"(fsu.dummy)
2278 jancik 58
    );
2304 kebrt 59
    return fsu.fs;
2278 jancik 60
}
61
 
2304 kebrt 62
 
63
/** Returns FAR (fault address register) content.
64
 *
2362 jancik 65
 *  @return FAR (fault address register) content (address that caused a page fault)
2278 jancik 66
 */
2304 kebrt 67
static inline uintptr_t read_fault_address_register(void)
68
{
69
    uintptr_t ret;
70
 
71
    // fault adress is stored in CP15 register 6
2278 jancik 72
    asm volatile (
73
        "mrc p15, 0, %0, c6, c0, 0"
2304 kebrt 74
        : "=r"(ret)
2278 jancik 75
    );
2304 kebrt 76
    return ret;
77
}
2278 jancik 78
 
2304 kebrt 79
 
80
/** Decides whether the instructions is load/store or not.
81
 *
2362 jancik 82
 * @param instr Instruction
2304 kebrt 83
 *
2362 jancik 84
 * @return true when instruction is load/store, false otherwise
2278 jancik 85
 */
2304 kebrt 86
static inline bool is_load_store_instruction(instruction_t instr)
87
{
88
    // load store immediate offset
89
    if (instr.type == 0x2) {
2278 jancik 90
        return true;
2304 kebrt 91
    }
2278 jancik 92
 
2304 kebrt 93
    // load store register offset
94
    if (instr.type == 0x3 && instr.bit4 == 0) {
2278 jancik 95
        return true;
2304 kebrt 96
    }
2278 jancik 97
 
2304 kebrt 98
    // load store multiple
99
    if (instr.type == 0x4) {
2278 jancik 100
        return true;
2304 kebrt 101
    }
2278 jancik 102
 
2304 kebrt 103
    // coprocessor load/store
104
    if (instr.type == 0x6) {
2278 jancik 105
        return true;
2304 kebrt 106
    }
2278 jancik 107
 
108
    return false;
109
}
110
 
2304 kebrt 111
 
112
/** Decides whether the instructions is swap or not.
113
 *
2362 jancik 114
 * @param instr Instruction
2304 kebrt 115
 *
2362 jancik 116
 * @return true when instruction is swap, false otherwise
2278 jancik 117
 */
2304 kebrt 118
static inline bool is_swap_instruction(instruction_t instr)
119
{
2278 jancik 120
    // swap, swapb instruction
2304 kebrt 121
    if (instr.type == 0x0 &&
122
        (instr.opcode == 0x8 || instr.opcode == 0xa) &&
123
        instr.access == 0x0 && instr.bits567 == 0x4 && instr.bit4 == 1) {
2278 jancik 124
        return true;
2304 kebrt 125
    }
2278 jancik 126
 
127
    return false;
128
}
129
 
130
 
2304 kebrt 131
/** Decides whether read or write into memory is requested.
2278 jancik 132
 *
2362 jancik 133
 * @param instr_addr   Address of instruction which tries to access memory
134
 * @param badvaddr     Virtual address the instruction tries to access
2304 kebrt 135
 *
2362 jancik 136
 * @return Type of access into memmory
137
 * Note:   Returns #PF_ACCESS_EXEC if no memory access is requested
2278 jancik 138
 */
2304 kebrt 139
static pf_access_t get_memory_access_type(uint32_t instr_addr, uintptr_t badvaddr)
140
{  
141
    instruction_union_t instr_union;
142
    instr_union.pc = instr_addr;
2278 jancik 143
 
2304 kebrt 144
    instruction_t instr = *(instr_union.instr);
2278 jancik 145
 
2304 kebrt 146
    // undefined instructions
147
    if (instr.condition == 0xf) {
148
        panic("page_fault - instruction not access memmory (instr_code: %x, badvaddr:%x)",
149
            instr, badvaddr);
2278 jancik 150
        return PF_ACCESS_EXEC;
2304 kebrt 151
    }
2278 jancik 152
 
153
    // load store instructions
2304 kebrt 154
    if (is_load_store_instruction(instr)) {
155
        if (instr.access == 1) {
2278 jancik 156
            return PF_ACCESS_READ;
157
        } else {
158
            return PF_ACCESS_WRITE;
159
        }
2304 kebrt 160
    }
2278 jancik 161
 
162
    // swap, swpb instruction
2304 kebrt 163
    if (is_swap_instruction(instr)) {
2278 jancik 164
        /* Swap instructions make read and write in one step.
165
         * Type of access that caused exception have to page tables
166
         *  and access rights.
167
         */
2304 kebrt 168
 
169
        pte_level1_t* pte = (pte_level1_t*)
170
        pt_mapping_operations.mapping_find(AS, badvaddr);
2278 jancik 171
 
2318 jancik 172
        if ( pte == NULL ) {
173
            return PF_ACCESS_READ;
174
        }
2278 jancik 175
 
2304 kebrt 176
        /* check if read possible
177
        * Note: Don't check PTE_READABLE because it returns 1 everytimes */
2278 jancik 178
        if ( !PTE_PRESENT(pte) ) {
2304 kebrt 179
            return PF_ACCESS_READ;
2278 jancik 180
        }
2304 kebrt 181
 
2278 jancik 182
        if ( !PTE_WRITABLE(pte) ) {
183
            return PF_ACCESS_WRITE;
2304 kebrt 184
        } else {
185
            // badvaddr is present readable and writeable but error occured ... why?
186
            panic("page_fault - swap instruction, but address readable and writeable"
187
                "(instr_code:%X, badvaddr:%X)", instr, badvaddr);
2278 jancik 188
        }
189
    }
2304 kebrt 190
 
191
    panic("page_fault - instruction not access memory (instr_code: %x, badvaddr:%x)",
192
        instr, badvaddr);
193
 
2278 jancik 194
    return PF_ACCESS_EXEC;
195
}
196
 
2304 kebrt 197
/** Handles "data abort" exception (load or store at invalid address).
198
 *
2362 jancik 199
 * @param exc_no    exception number
200
 * @param istate    CPU state when exception occured
2278 jancik 201
 */
2304 kebrt 202
void data_abort(int exc_no, istate_t *istate)
203
{
204
    fault_status_t fsr = read_fault_status_register();
205
    uintptr_t badvaddr = read_fault_address_register();
2278 jancik 206
 
2304 kebrt 207
    pf_access_t access = get_memory_access_type(istate->pc, badvaddr);
208
 
209
    int ret = as_page_fault(badvaddr, access, istate);
2278 jancik 210
 
2304 kebrt 211
    if (ret == AS_PF_FAULT) {
212
        print_istate(istate);
213
        dprintf("page fault - pc: %x, va: %x, status: %x(%x), access:%d\n",
214
            istate->pc, badvaddr, fsr.status, fsr, access);
2278 jancik 215
 
2304 kebrt 216
        fault_if_from_uspace(istate, "Page fault: %#x", badvaddr);
2298 stepan 217
        panic("page fault\n");
2304 kebrt 218
    }
2278 jancik 219
}
220
 
2304 kebrt 221
/** Handles "prefetch abort" exception (instruction couldn't be executed).
222
 *
2362 jancik 223
 * @param exc_no    exception number
224
 * @param istate    CPU state when exception occured
2278 jancik 225
 */
2304 kebrt 226
void prefetch_abort(int exc_no, istate_t *istate)
227
{
2298 stepan 228
    int ret = as_page_fault(istate->pc, PF_ACCESS_EXEC, istate);
2278 jancik 229
 
2304 kebrt 230
    if (ret == AS_PF_FAULT) {
231
        dprintf("prefetch_abort\n");
232
        print_istate(istate);
233
        panic("page fault - prefetch_abort at address: %x\n", istate->pc);
234
    }
2278 jancik 235
}
236
 
237
/** @}
238
 */
239