Subversion Repositories HelenOS

Rev

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