| 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 | * @brief Page fault related functions.
|
|---|
| 34 | */
|
|---|
| 35 | #include <panic.h>
|
|---|
| 36 | #include <arch/exception.h>
|
|---|
| 37 | #include <arch/mm/page_fault.h>
|
|---|
| 38 | #include <mm/as.h>
|
|---|
| 39 | #include <genarch/mm/page_pt.h>
|
|---|
| 40 | #include <arch.h>
|
|---|
| 41 | #include <interrupt.h>
|
|---|
| 42 | #include <print.h>
|
|---|
| 43 |
|
|---|
| 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;
|
|---|
| 51 |
|
|---|
| 52 | /* fault status is stored in CP15 register 5 */
|
|---|
| 53 | asm volatile (
|
|---|
| 54 | "mrc p15, 0, %[dummy], c5, c0, 0"
|
|---|
| 55 | : [dummy] "=r" (fsu.dummy)
|
|---|
| 56 | );
|
|---|
| 57 |
|
|---|
| 58 | return fsu.fs;
|
|---|
| 59 | }
|
|---|
| 60 |
|
|---|
| 61 | /** Returns FAR (fault address register) content.
|
|---|
| 62 | *
|
|---|
| 63 | * @return FAR (fault address register) content (address that caused a page
|
|---|
| 64 | * fault)
|
|---|
| 65 | */
|
|---|
| 66 | static inline uintptr_t read_fault_address_register(void)
|
|---|
| 67 | {
|
|---|
| 68 | uintptr_t ret;
|
|---|
| 69 |
|
|---|
| 70 | /* fault adress is stored in CP15 register 6 */
|
|---|
| 71 | asm volatile (
|
|---|
| 72 | "mrc p15, 0, %[ret], c6, c0, 0"
|
|---|
| 73 | : [ret] "=r" (ret)
|
|---|
| 74 | );
|
|---|
| 75 |
|
|---|
| 76 | return ret;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | /** Decides whether read or write into memory is requested.
|
|---|
| 80 | *
|
|---|
| 81 | * @param instr_addr Address of instruction which tries to access memory.
|
|---|
| 82 | * @param badvaddr Virtual address the instruction tries to access.
|
|---|
| 83 | *
|
|---|
| 84 | * @return Type of access into memory, PF_ACCESS_EXEC if no memory access is
|
|---|
| 85 | * requested.
|
|---|
| 86 | */
|
|---|
| 87 | static pf_access_t get_memory_access_type(uint32_t instr_addr,
|
|---|
| 88 | uintptr_t badvaddr)
|
|---|
| 89 | {
|
|---|
| 90 | instruction_union_t instr_union;
|
|---|
| 91 | instr_union.pc = instr_addr;
|
|---|
| 92 |
|
|---|
| 93 | instruction_t instr = *(instr_union.instr);
|
|---|
| 94 |
|
|---|
| 95 | /* undefined instructions */
|
|---|
| 96 | if (instr.condition == 0xf) {
|
|---|
| 97 | panic("page_fault - instruction does not access memory "
|
|---|
| 98 | "(instr_code: %#0" PRIx32 ", badvaddr:%p).",
|
|---|
| 99 | instr_union.pc, (void *) badvaddr);
|
|---|
| 100 | return PF_ACCESS_EXEC;
|
|---|
| 101 | }
|
|---|
| 102 |
|
|---|
| 103 | /* See ARM Architecture reference manual ARMv7-A and ARMV7-R edition
|
|---|
| 104 | * A5.3 (PDF p. 206) */
|
|---|
| 105 | static const struct {
|
|---|
| 106 | uint32_t mask;
|
|---|
| 107 | uint32_t value;
|
|---|
| 108 | pf_access_t access;
|
|---|
| 109 | } ls_inst[] = {
|
|---|
| 110 | /* Store word/byte */
|
|---|
| 111 | { 0x0e100000, 0x04000000, PF_ACCESS_WRITE }, /*STR(B) imm*/
|
|---|
| 112 | { 0x0e100010, 0x06000000, PF_ACCESS_WRITE }, /*STR(B) reg*/
|
|---|
| 113 | /* Load word/byte */
|
|---|
| 114 | { 0x0e100000, 0x04100000, PF_ACCESS_READ }, /*LDR(B) imm*/
|
|---|
| 115 | { 0x0e100010, 0x06100000, PF_ACCESS_READ }, /*LDR(B) reg*/
|
|---|
| 116 | /* Store half-word/dual A5.2.8 */
|
|---|
| 117 | { 0x0e1000b0, 0x000000b0, PF_ACCESS_WRITE }, /*STRH imm reg*/
|
|---|
| 118 | /* Load half-word/dual A5.2.8 */
|
|---|
| 119 | { 0x0e0000f0, 0x000000d0, PF_ACCESS_READ }, /*LDRH imm reg*/
|
|---|
| 120 | { 0x0e1000b0, 0x001000b0, PF_ACCESS_READ }, /*LDRH imm reg*/
|
|---|
| 121 | /* Block data transfer, Store */
|
|---|
| 122 | { 0x0e100000, 0x08000000, PF_ACCESS_WRITE }, /* STM variants */
|
|---|
| 123 | { 0x0e100000, 0x08100000, PF_ACCESS_READ }, /* LDM variants */
|
|---|
| 124 | /* Swap */
|
|---|
| 125 | { 0x0fb00000, 0x01000000, PF_ACCESS_WRITE },
|
|---|
| 126 | };
|
|---|
| 127 | const uint32_t inst = *(uint32_t*)instr_addr;
|
|---|
| 128 | for (unsigned i = 0; i < sizeof(ls_inst) / sizeof(ls_inst[0]); ++i) {
|
|---|
| 129 | if ((inst & ls_inst[i].mask) == ls_inst[i].value) {
|
|---|
| 130 | return ls_inst[i].access;
|
|---|
| 131 | }
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | panic("page_fault - instruction doesn't access memory "
|
|---|
| 135 | "(instr_code: %#0" PRIx32 ", badvaddr:%p).",
|
|---|
| 136 | inst, (void *) badvaddr);
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | /** Handles "data abort" exception (load or store at invalid address).
|
|---|
| 140 | *
|
|---|
| 141 | * @param exc_no Exception number.
|
|---|
| 142 | * @param istate CPU state when exception occured.
|
|---|
| 143 | *
|
|---|
| 144 | */
|
|---|
| 145 | void data_abort(unsigned int exc_no, istate_t *istate)
|
|---|
| 146 | {
|
|---|
| 147 | fault_status_t fsr __attribute__ ((unused)) =
|
|---|
| 148 | read_fault_status_register();
|
|---|
| 149 | uintptr_t badvaddr = read_fault_address_register();
|
|---|
| 150 |
|
|---|
| 151 | pf_access_t access = get_memory_access_type(istate->pc, badvaddr);
|
|---|
| 152 |
|
|---|
| 153 | int ret = as_page_fault(badvaddr, access, istate);
|
|---|
| 154 |
|
|---|
| 155 | if (ret == AS_PF_FAULT) {
|
|---|
| 156 | fault_if_from_uspace(istate, "Page fault: %#x.", badvaddr);
|
|---|
| 157 | panic_memtrap(istate, access, badvaddr, NULL);
|
|---|
| 158 | }
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| 161 | /** Handles "prefetch abort" exception (instruction couldn't be executed).
|
|---|
| 162 | *
|
|---|
| 163 | * @param exc_no Exception number.
|
|---|
| 164 | * @param istate CPU state when exception occured.
|
|---|
| 165 | *
|
|---|
| 166 | */
|
|---|
| 167 | void prefetch_abort(unsigned int exc_no, istate_t *istate)
|
|---|
| 168 | {
|
|---|
| 169 | int ret = as_page_fault(istate->pc, PF_ACCESS_EXEC, istate);
|
|---|
| 170 |
|
|---|
| 171 | if (ret == AS_PF_FAULT) {
|
|---|
| 172 | fault_if_from_uspace(istate,
|
|---|
| 173 | "Page fault - prefetch_abort: %#x.", istate->pc);
|
|---|
| 174 | panic_memtrap(istate, PF_ACCESS_EXEC, istate->pc, NULL);
|
|---|
| 175 | }
|
|---|
| 176 | }
|
|---|
| 177 |
|
|---|
| 178 | /** @}
|
|---|
| 179 | */
|
|---|