Subversion Repositories HelenOS

Rev

Rev 3125 | Rev 4377 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (c) 2007 Petr Stepan
  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 arm32
  30.  * @{
  31.  */
  32. /** @file
  33.  *  @brief Exception handlers and exception initialization routines.
  34.  */
  35.  
  36. #include <arch/exception.h>
  37. #include <arch/debug/print.h>
  38. #include <arch/memstr.h>
  39. #include <arch/regutils.h>
  40. #include <interrupt.h>
  41. #include <arch/machine.h>
  42. #include <arch/mm/page_fault.h>
  43. #include <arch/barrier.h>
  44. #include <print.h>
  45. #include <syscall/syscall.h>
  46. #include <udebug/udebug.h>
  47.  
  48. /** Offset used in calculation of exception handler's relative address.
  49.  *
  50.  * @see install_handler()
  51.  */
  52. #define PREFETCH_OFFSET      0x8
  53.  
  54. /** LDR instruction's code */
  55. #define LDR_OPCODE           0xe59ff000
  56.  
  57. /** Number of exception vectors. */
  58. #define EXC_VECTORS          8
  59.  
  60. /** Size of memory block occupied by exception vectors. */
  61. #define EXC_VECTORS_SIZE     (EXC_VECTORS * 4)
  62.  
  63. /** Switches to kernel stack and saves all registers there.
  64.  *
  65.  * Temporary exception stack is used to save a few registers
  66.  * before stack switch takes place.
  67.  */
  68. inline static void setup_stack_and_save_regs()
  69. {
  70.     asm volatile(
  71.         "ldr r13, =exc_stack        \n"
  72.         "stmfd r13!, {r0}       \n"
  73.         "mrs r0, spsr           \n"
  74.         "and r0, r0, #0x1f      \n"
  75.         "cmp r0, #0x10          \n"
  76.         "bne 1f             \n"
  77.  
  78.         /* prev mode was usermode */
  79.         "ldmfd r13!, {r0}       \n"
  80.         "ldr r13, =supervisor_sp    \n"
  81.         "ldr r13, [r13]         \n"
  82.         "stmfd r13!, {lr}       \n"
  83.         "stmfd r13!, {r0-r12}       \n"
  84.         "stmfd r13!, {r13, lr}^     \n"
  85.         "mrs r0, spsr           \n"
  86.         "stmfd r13!, {r0}       \n"
  87.         "b 2f               \n"
  88.  
  89.         /* mode was not usermode */
  90.     "1:\n"
  91.         "stmfd r13!, {r1, r2, r3}   \n"
  92.         "mrs r1, cpsr           \n"
  93.         "mov r2, lr         \n"
  94.         "bic r1, r1, #0x1f      \n"
  95.         "orr r1, r1, r0         \n"
  96.         "mrs r0, cpsr           \n"
  97.         "msr cpsr_c, r1         \n"
  98.  
  99.         "mov r3, r13            \n"
  100.         "stmfd r13!, {r2}       \n"
  101.         "mov r2, lr         \n"
  102.         "stmfd r13!, {r4-r12}       \n"
  103.         "mov r1, r13            \n"
  104.         /* the following two lines are for debugging */
  105.         "mov sp, #0         \n"
  106.         "mov lr, #0         \n"
  107.         "msr cpsr_c, r0         \n"
  108.  
  109.         "ldmfd r13!, {r4, r5, r6, r7}   \n"
  110.         "stmfd r1!, {r4, r5, r6}    \n"
  111.         "stmfd r1!, {r7}        \n"
  112.         "stmfd r1!, {r2}        \n"
  113.         "stmfd r1!, {r3}        \n"
  114.         "mrs r0, spsr           \n"
  115.         "stmfd r1!, {r0}        \n"
  116.         "mov r13, r1            \n"
  117.     "2:\n"
  118.     );
  119. }
  120.  
  121. /** Returns from exception mode.
  122.  *
  123.  * Previously saved state of registers (including control register)
  124.  * is restored from the stack.
  125.  */
  126. inline static void load_regs()
  127. {
  128.     asm volatile(
  129.         "ldmfd r13!, {r0}       \n"
  130.         "msr spsr, r0           \n"
  131.         "and r0, r0, #0x1f      \n"
  132.         "cmp r0, #0x10          \n"
  133.         "bne 1f             \n"
  134.  
  135.         /* return to user mode */
  136.         "ldmfd r13!, {r13, lr}^     \n"
  137.         "b 2f               \n"
  138.  
  139.         /* return to non-user mode */
  140.     "1:\n"
  141.         "ldmfd r13!, {r1, r2}       \n"
  142.         "mrs r3, cpsr           \n"
  143.         "bic r3, r3, #0x1f      \n"
  144.         "orr r3, r3, r0         \n"
  145.         "mrs r0, cpsr           \n"
  146.         "msr cpsr_c, r3         \n"
  147.  
  148.         "mov r13, r1            \n"
  149.         "mov lr, r2         \n"
  150.         "msr cpsr_c, r0         \n"
  151.  
  152.         /* actual return */
  153.     "2:\n"
  154.         "ldmfd r13, {r0-r12, pc}^\n"
  155.     );
  156. }
  157.  
  158.  
  159. /** Switch CPU to mode in which interrupts are serviced (currently it
  160.  * is Undefined mode).
  161.  *
  162.  * The default mode for interrupt servicing (Interrupt Mode)
  163.  * can not be used because of nested interrupts (which can occur
  164.  * because interrupts are enabled in higher levels of interrupt handler).
  165.  */
  166. inline static void switch_to_irq_servicing_mode()
  167. {
  168.     /* switch to Undefined mode */
  169.     asm volatile(
  170.         /* save regs used during switching */
  171.         "stmfd sp!, {r0-r3}     \n"
  172.  
  173.         /* save stack pointer and link register to r1, r2 */
  174.         "mov r1, sp         \n"
  175.         "mov r2, lr         \n"
  176.  
  177.         /* mode switch */
  178.         "mrs r0, cpsr           \n"
  179.         "bic r0, r0, #0x1f      \n"
  180.         "orr r0, r0, #0x1b      \n"
  181.         "msr cpsr_c, r0         \n"
  182.  
  183.         /* restore saved sp and lr */
  184.         "mov sp, r1         \n"
  185.         "mov lr, r2         \n"
  186.  
  187.         /* restore original regs */
  188.         "ldmfd sp!, {r0-r3}     \n"
  189.     );
  190. }
  191.  
  192. /** Calls exception dispatch routine. */
  193. #define CALL_EXC_DISPATCH(exception)        \
  194.     asm("mov r0, %0" : : "i" (exception));  \
  195.     asm("mov r1, r13");         \
  196.     asm("bl exc_dispatch");    
  197.  
  198. /** General exception handler.
  199.  *
  200.  *  Stores registers, dispatches the exception,
  201.  *  and finally restores registers and returns from exception processing.
  202.  *
  203.  *  @param exception Exception number.
  204.  */
  205. #define PROCESS_EXCEPTION(exception)        \
  206.     setup_stack_and_save_regs();        \
  207.     CALL_EXC_DISPATCH(exception)        \
  208.     load_regs();
  209.  
  210. /** Updates specified exception vector to jump to given handler.
  211.  *
  212.  *  Addresses of handlers are stored in memory following exception vectors.
  213.  */
  214. static void install_handler(unsigned handler_addr, unsigned *vector)
  215. {
  216.     /* relative address (related to exc. vector) of the word
  217.      * where handler's address is stored
  218.     */
  219.     volatile uint32_t handler_address_ptr = EXC_VECTORS_SIZE -
  220.         PREFETCH_OFFSET;
  221.    
  222.     /* make it LDR instruction and store at exception vector */
  223.     *vector = handler_address_ptr | LDR_OPCODE;
  224.     smc_coherence(*vector);
  225.    
  226.     /* store handler's address */
  227.     *(vector + EXC_VECTORS) = handler_addr;
  228.  
  229. }
  230.  
  231. /** Low-level Reset Exception handler. */
  232. static void reset_exception_entry(void)
  233. {
  234.     PROCESS_EXCEPTION(EXC_RESET);
  235. }
  236.  
  237. /** Low-level Software Interrupt Exception handler. */
  238. static void swi_exception_entry(void)
  239. {
  240.     PROCESS_EXCEPTION(EXC_SWI);
  241. }
  242.  
  243. /** Low-level Undefined Instruction Exception handler. */
  244. static void undef_instr_exception_entry(void)
  245. {
  246.     PROCESS_EXCEPTION(EXC_UNDEF_INSTR);
  247. }
  248.  
  249. /** Low-level Fast Interrupt Exception handler. */
  250. static void fiq_exception_entry(void)
  251. {
  252.     PROCESS_EXCEPTION(EXC_FIQ);
  253. }
  254.  
  255. /** Low-level Prefetch Abort Exception handler. */
  256. static void prefetch_abort_exception_entry(void)
  257. {
  258.     asm("sub lr, lr, #4");
  259.     PROCESS_EXCEPTION(EXC_PREFETCH_ABORT);
  260. }
  261.  
  262. /** Low-level Data Abort Exception handler. */
  263. static void data_abort_exception_entry(void)
  264. {
  265.     asm("sub lr, lr, #8");
  266.     PROCESS_EXCEPTION(EXC_DATA_ABORT);
  267. }
  268.  
  269. /** Low-level Interrupt Exception handler.
  270.  *
  271.  * CPU is switched to Undefined mode before further interrupt processing
  272.  * because of possible occurence of nested interrupt exception, which
  273.  * would overwrite (and thus spoil) stack pointer.
  274.  */
  275. static void irq_exception_entry(void)
  276. {
  277.     asm("sub lr, lr, #4");
  278.     setup_stack_and_save_regs();
  279.    
  280.     switch_to_irq_servicing_mode();
  281.    
  282.     CALL_EXC_DISPATCH(EXC_IRQ)
  283.  
  284.     load_regs();
  285. }
  286.  
  287. /** Software Interrupt handler.
  288.  *
  289.  * Dispatches the syscall.
  290.  */
  291. static void swi_exception(int exc_no, istate_t *istate)
  292. {
  293.     istate->r0 = syscall_handler(istate->r0, istate->r1, istate->r2,
  294.         istate->r3, istate->r4, istate->r5, istate->r6);
  295. }
  296.  
  297. /** Interrupt Exception handler.
  298.  *
  299.  * Determines the sources of interrupt and calls their handlers.
  300.  */
  301. static void irq_exception(int exc_no, istate_t *istate)
  302. {
  303.     machine_irq_exception(exc_no, istate);
  304. }
  305.  
  306. /** Fills exception vectors with appropriate exception handlers. */
  307. void install_exception_handlers(void)
  308. {
  309.     install_handler((unsigned) reset_exception_entry,
  310.         (unsigned *) EXC_RESET_VEC);
  311.    
  312.     install_handler((unsigned) undef_instr_exception_entry,
  313.         (unsigned *) EXC_UNDEF_INSTR_VEC);
  314.    
  315.     install_handler((unsigned) swi_exception_entry,
  316.         (unsigned *) EXC_SWI_VEC);
  317.    
  318.     install_handler((unsigned) prefetch_abort_exception_entry,
  319.         (unsigned *) EXC_PREFETCH_ABORT_VEC);
  320.    
  321.     install_handler((unsigned) data_abort_exception_entry,
  322.         (unsigned *) EXC_DATA_ABORT_VEC);
  323.    
  324.     install_handler((unsigned) irq_exception_entry,
  325.         (unsigned *) EXC_IRQ_VEC);
  326.    
  327.     install_handler((unsigned)fiq_exception_entry,
  328.         (unsigned *) EXC_FIQ_VEC);
  329. }
  330.  
  331. #ifdef HIGH_EXCEPTION_VECTORS
  332. /** Activates use of high exception vectors addresses. */
  333. static void high_vectors(void)
  334. {
  335.     uint32_t control_reg;
  336.    
  337.     asm volatile("mrc p15, 0, %0, c1, c1" : "=r" (control_reg));
  338.    
  339.     /* switch on the high vectors bit */
  340.     control_reg |= CP15_R1_HIGH_VECTORS_BIT;
  341.    
  342.     asm volatile("mcr p15, 0, %0, c1, c1" : : "r" (control_reg));
  343. }
  344. #endif
  345.  
  346. /** Initializes exception handling.
  347.  *
  348.  * Installs low-level exception handlers and then registers
  349.  * exceptions and their handlers to kernel exception dispatcher.
  350.  */
  351. void exception_init(void)
  352. {
  353. #ifdef HIGH_EXCEPTION_VECTORS
  354.     high_vectors();
  355. #endif
  356.     install_exception_handlers();
  357.    
  358.     exc_register(EXC_IRQ, "interrupt", (iroutine) irq_exception);
  359.     exc_register(EXC_PREFETCH_ABORT, "prefetch abort",
  360.         (iroutine) prefetch_abort);
  361.     exc_register(EXC_DATA_ABORT, "data abort", (iroutine) data_abort);
  362.     exc_register(EXC_SWI, "software interrupt", (iroutine) swi_exception);
  363. }
  364.  
  365. /** Prints #istate_t structure content.
  366.  *
  367.  * @param istate Structure to be printed.
  368.  */
  369. void print_istate(istate_t *istate)
  370. {
  371.     dprintf("istate dump:\n");
  372.  
  373.     dprintf(" r0: %x    r1: %x    r2: %x    r3: %x\n",
  374.         istate->r0, istate->r1, istate->r2, istate->r3);
  375.     dprintf(" r4: %x    r5: %x    r6: %x    r7: %x\n",
  376.         istate->r4, istate->r5, istate->r6, istate->r7);
  377.     dprintf(" r8: %x    r8: %x   r10: %x   r11: %x\n",
  378.         istate->r8, istate->r9, istate->r10, istate->r11);
  379.     dprintf(" r12: %x    sp: %x    lr: %x  spsr: %x\n",
  380.         istate->r12, istate->sp, istate->lr, istate->spsr);
  381.  
  382.     dprintf(" pc: %x\n", istate->pc);
  383. }
  384.  
  385. /** @}
  386.  */
  387.