[6b781c0] | 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>
|
---|
[009474f] | 42 | #include <print.h>
|
---|
[6b781c0] | 43 |
|
---|
[ecd1a0a] | 44 | /** Returns value stored in comnbined/data fault status register.
|
---|
[6b781c0] | 45 | *
|
---|
| 46 | * @return Value stored in CP15 fault status register (FSR).
|
---|
[ecd1a0a] | 47 | *
|
---|
| 48 | * "VMSAv6 added a fifth fault status bit (bit[10]) to both the IFSR and DFSR.
|
---|
| 49 | * It is IMPLEMENTATION DEFINED how this bit is encoded in earlier versions of
|
---|
| 50 | * the architecture. A write flag (bit[11] of the DFSR) has also been
|
---|
| 51 | * introduced."
|
---|
| 52 | * ARM Architecture Reference Manual version i ch. B4.6 (PDF p. 719)
|
---|
| 53 | *
|
---|
| 54 | * See ch. B4.9.6 for location of data/instruction FSR.
|
---|
| 55 | *
|
---|
[6b781c0] | 56 | */
|
---|
[ecd1a0a] | 57 | static inline fault_status_t read_data_fault_status_register(void)
|
---|
[6b781c0] | 58 | {
|
---|
[ecd1a0a] | 59 | fault_status_t fsu;
|
---|
[e762b43] | 60 |
|
---|
[ecd1a0a] | 61 | /* Combined/Data fault status is stored in CP15 register 5, c0. */
|
---|
[6b781c0] | 62 | asm volatile (
|
---|
[e762b43] | 63 | "mrc p15, 0, %[dummy], c5, c0, 0"
|
---|
[ecd1a0a] | 64 | : [dummy] "=r" (fsu.raw)
|
---|
[6b781c0] | 65 | );
|
---|
[e762b43] | 66 |
|
---|
[ecd1a0a] | 67 | return fsu;
|
---|
[6b781c0] | 68 | }
|
---|
| 69 |
|
---|
[ecd1a0a] | 70 | /** Returns DFAR (fault address register) content.
|
---|
[6b781c0] | 71 | *
|
---|
[ecd1a0a] | 72 | * This register is equivalent to FAR on pre armv6 machines.
|
---|
| 73 | *
|
---|
| 74 | * @return DFAR (fault address register) content (address that caused a page
|
---|
[e762b43] | 75 | * fault)
|
---|
[6b781c0] | 76 | */
|
---|
[ecd1a0a] | 77 | static inline uintptr_t read_data_fault_address_register(void)
|
---|
[6b781c0] | 78 | {
|
---|
| 79 | uintptr_t ret;
|
---|
[e762b43] | 80 |
|
---|
[6b781c0] | 81 | /* fault adress is stored in CP15 register 6 */
|
---|
| 82 | asm volatile (
|
---|
[e762b43] | 83 | "mrc p15, 0, %[ret], c6, c0, 0"
|
---|
| 84 | : [ret] "=r" (ret)
|
---|
[6b781c0] | 85 | );
|
---|
[e762b43] | 86 |
|
---|
[6b781c0] | 87 | return ret;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
[ecd1a0a] | 90 | #if defined(PROCESSOR_armv4) | defined(PROCESSOR_armv5)
|
---|
[6b781c0] | 91 | /** Decides whether read or write into memory is requested.
|
---|
| 92 | *
|
---|
| 93 | * @param instr_addr Address of instruction which tries to access memory.
|
---|
| 94 | * @param badvaddr Virtual address the instruction tries to access.
|
---|
| 95 | *
|
---|
| 96 | * @return Type of access into memory, PF_ACCESS_EXEC if no memory access is
|
---|
[60d931d] | 97 | * requested.
|
---|
[6b781c0] | 98 | */
|
---|
| 99 | static pf_access_t get_memory_access_type(uint32_t instr_addr,
|
---|
| 100 | uintptr_t badvaddr)
|
---|
| 101 | {
|
---|
| 102 | instruction_union_t instr_union;
|
---|
| 103 | instr_union.pc = instr_addr;
|
---|
| 104 |
|
---|
| 105 | instruction_t instr = *(instr_union.instr);
|
---|
| 106 |
|
---|
| 107 | /* undefined instructions */
|
---|
| 108 | if (instr.condition == 0xf) {
|
---|
[f651e80] | 109 | panic("page_fault - instruction does not access memory "
|
---|
[7e752b2] | 110 | "(instr_code: %#0" PRIx32 ", badvaddr:%p).",
|
---|
[774c143] | 111 | *(uint32_t*)instr_union.instr, (void *) badvaddr);
|
---|
[6b781c0] | 112 | return PF_ACCESS_EXEC;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[2ddb3c5] | 115 | /* See ARM Architecture reference manual ARMv7-A and ARMV7-R edition
|
---|
| 116 | * A5.3 (PDF p. 206) */
|
---|
| 117 | static const struct {
|
---|
| 118 | uint32_t mask;
|
---|
| 119 | uint32_t value;
|
---|
| 120 | pf_access_t access;
|
---|
| 121 | } ls_inst[] = {
|
---|
[d126d3e] | 122 | /* Store word/byte */
|
---|
| 123 | { 0x0e100000, 0x04000000, PF_ACCESS_WRITE }, /*STR(B) imm*/
|
---|
| 124 | { 0x0e100010, 0x06000000, PF_ACCESS_WRITE }, /*STR(B) reg*/
|
---|
| 125 | /* Load word/byte */
|
---|
[1ef7fb2] | 126 | { 0x0e100000, 0x04100000, PF_ACCESS_READ }, /*LDR(B) imm*/
|
---|
| 127 | { 0x0e100010, 0x06100000, PF_ACCESS_READ }, /*LDR(B) reg*/
|
---|
[2ddb3c5] | 128 | /* Store half-word/dual A5.2.8 */
|
---|
[bbb0a400] | 129 | { 0x0e1000b0, 0x000000b0, PF_ACCESS_WRITE }, /*STRH imm reg*/
|
---|
[2ddb3c5] | 130 | /* Load half-word/dual A5.2.8 */
|
---|
| 131 | { 0x0e0000f0, 0x000000d0, PF_ACCESS_READ }, /*LDRH imm reg*/
|
---|
[bbb0a400] | 132 | { 0x0e1000b0, 0x001000b0, PF_ACCESS_READ }, /*LDRH imm reg*/
|
---|
[2ddb3c5] | 133 | /* Block data transfer, Store */
|
---|
| 134 | { 0x0e100000, 0x08000000, PF_ACCESS_WRITE }, /* STM variants */
|
---|
| 135 | { 0x0e100000, 0x08100000, PF_ACCESS_READ }, /* LDM variants */
|
---|
[f13f5d60] | 136 | /* Swap */
|
---|
| 137 | { 0x0fb00000, 0x01000000, PF_ACCESS_WRITE },
|
---|
[2ddb3c5] | 138 | };
|
---|
[60d931d] | 139 | const uint32_t inst = *(uint32_t*)instr_addr;
|
---|
[2ddb3c5] | 140 | for (unsigned i = 0; i < sizeof(ls_inst) / sizeof(ls_inst[0]); ++i) {
|
---|
| 141 | if ((inst & ls_inst[i].mask) == ls_inst[i].value) {
|
---|
[87e5b526] | 142 | return ls_inst[i].access;
|
---|
[6b781c0] | 143 | }
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | panic("page_fault - instruction doesn't access memory "
|
---|
[7e752b2] | 147 | "(instr_code: %#0" PRIx32 ", badvaddr:%p).",
|
---|
[60d931d] | 148 | inst, (void *) badvaddr);
|
---|
[6b781c0] | 149 | }
|
---|
[ecd1a0a] | 150 | #endif
|
---|
[6b781c0] | 151 |
|
---|
| 152 | /** Handles "data abort" exception (load or store at invalid address).
|
---|
| 153 | *
|
---|
[214ec25c] | 154 | * @param exc_no Exception number.
|
---|
| 155 | * @param istate CPU state when exception occured.
|
---|
| 156 | *
|
---|
[6b781c0] | 157 | */
|
---|
[214ec25c] | 158 | void data_abort(unsigned int exc_no, istate_t *istate)
|
---|
[6b781c0] | 159 | {
|
---|
[ecd1a0a] | 160 | uintptr_t badvaddr = read_data_fault_address_register();
|
---|
| 161 |
|
---|
| 162 | #if defined(PROCESSOR_armv6) | defined(PROCESSOR_armv7_a)
|
---|
| 163 | fault_status_t fsr = read_data_fault_status_register();
|
---|
| 164 | const pf_access_t access =
|
---|
| 165 | fsr.data.wr ? PF_ACCESS_WRITE : PF_ACCESS_READ;
|
---|
| 166 | #elif defined(PROCESSOR_armv4) | defined(PROCESSOR_armv5)
|
---|
| 167 | const pf_access_t access = get_memory_access_type(istate->pc, badvaddr);
|
---|
| 168 | #else
|
---|
| 169 | #error "Unsupported architecture"
|
---|
| 170 | #endif
|
---|
[6b781c0] | 171 | int ret = as_page_fault(badvaddr, access, istate);
|
---|
| 172 |
|
---|
| 173 | if (ret == AS_PF_FAULT) {
|
---|
[c94841e] | 174 | fault_if_from_uspace(istate, "Page fault: %#x.", badvaddr);
|
---|
[c15b374] | 175 | panic_memtrap(istate, access, badvaddr, NULL);
|
---|
[6b781c0] | 176 | }
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | /** Handles "prefetch abort" exception (instruction couldn't be executed).
|
---|
| 180 | *
|
---|
[214ec25c] | 181 | * @param exc_no Exception number.
|
---|
| 182 | * @param istate CPU state when exception occured.
|
---|
| 183 | *
|
---|
[6b781c0] | 184 | */
|
---|
[214ec25c] | 185 | void prefetch_abort(unsigned int exc_no, istate_t *istate)
|
---|
[6b781c0] | 186 | {
|
---|
[ecd1a0a] | 187 | /* NOTE: We should use IFAR and IFSR here. */
|
---|
[6b781c0] | 188 | int ret = as_page_fault(istate->pc, PF_ACCESS_EXEC, istate);
|
---|
| 189 |
|
---|
| 190 | if (ret == AS_PF_FAULT) {
|
---|
[144185b] | 191 | fault_if_from_uspace(istate,
|
---|
| 192 | "Page fault - prefetch_abort: %#x.", istate->pc);
|
---|
[c15b374] | 193 | panic_memtrap(istate, PF_ACCESS_EXEC, istate->pc, NULL);
|
---|
[6b781c0] | 194 | }
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | /** @}
|
---|
| 198 | */
|
---|