Subversion Repositories HelenOS

Rev

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

  1. /*
  2.  * Copyright (c) 2005 Jakub Jermar
  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 sparc64interrupt
  30.  * @{
  31.  */
  32. /** @file
  33.  *
  34.  */
  35.  
  36. #include <arch/trap/exception.h>
  37. #include <arch/mm/tlb.h>
  38. #include <arch/interrupt.h>
  39. #include <interrupt.h>
  40. #include <arch/asm.h>
  41. #include <arch/register.h>
  42. #include <debug.h>
  43. #include <print.h>
  44.  
  45. #ifdef CONFIG_SYMTAB
  46. #include <symtab.h>
  47. #endif
  48.  
  49. void dump_istate(istate_t *istate)
  50. {
  51.     char *tpcs, *tnpcs;
  52.  
  53. #ifdef CONFIG_SYMTAB
  54.     tpcs = get_symtab_entry(istate->tpc);
  55.     tnpcs = get_symtab_entry(istate->tnpc);
  56. #else
  57.     tpcs = tnpcs = "n/a";
  58. #endif
  59.     printf("TSTATE=%#" PRIx64 "\n", istate->tstate);
  60.     printf("TPC=%#" PRIx64 " (%s)\n", istate->tpc, tpcs);
  61.     printf("TNPC=%#" PRIx64 " (%s)\n", istate->tnpc, tnpcs);
  62. }
  63.  
  64. /** Handle instruction_access_exception. (0x8) */
  65. void instruction_access_exception(int n, istate_t *istate)
  66. {
  67.     fault_if_from_uspace(istate, "%s.", __func__);
  68.     dump_istate(istate);
  69.     panic("%s.", __func__);
  70. }
  71.  
  72. /** Handle instruction_access_error. (0xa) */
  73. void instruction_access_error(int n, istate_t *istate)
  74. {
  75.     fault_if_from_uspace(istate, "%s.", __func__);
  76.     dump_istate(istate);
  77.     panic("%s.", __func__);
  78. }
  79.  
  80. /** Handle illegal_instruction. (0x10) */
  81. void illegal_instruction(int n, istate_t *istate)
  82. {
  83.     fault_if_from_uspace(istate, "%s.", __func__);
  84.     dump_istate(istate);
  85.     panic("%s.", __func__);
  86. }
  87.  
  88. /** Handle privileged_opcode. (0x11) */
  89. void privileged_opcode(int n, istate_t *istate)
  90. {
  91.     fault_if_from_uspace(istate, "%s.", __func__);
  92.     dump_istate(istate);
  93.     panic("%s.", __func__);
  94. }
  95.  
  96. /** Handle unimplemented_LDD. (0x12) */
  97. void unimplemented_LDD(int n, istate_t *istate)
  98. {
  99.     fault_if_from_uspace(istate, "%s.", __func__);
  100.     dump_istate(istate);
  101.     panic("%s.", __func__);
  102. }
  103.  
  104. /** Handle unimplemented_STD. (0x13) */
  105. void unimplemented_STD(int n, istate_t *istate)
  106. {
  107.     fault_if_from_uspace(istate, "%s.", __func__);
  108.     dump_istate(istate);
  109.     panic("%s.", __func__);
  110. }
  111.  
  112. /** Handle fp_disabled. (0x20) */
  113. void fp_disabled(int n, istate_t *istate)
  114. {
  115.     fprs_reg_t fprs;
  116.    
  117.     fprs.value = fprs_read();
  118.     if (!fprs.fef) {
  119.         fprs.fef = true;
  120.         fprs_write(fprs.value);
  121.         return;
  122.     }
  123.  
  124. #ifdef CONFIG_FPU_LAZY
  125.     scheduler_fpu_lazy_request();
  126. #else
  127.     fault_if_from_uspace(istate, "%s.", __func__);
  128.     dump_istate(istate);
  129.     panic("%s.", __func__);
  130. #endif
  131. }
  132.  
  133. /** Handle fp_exception_ieee_754. (0x21) */
  134. void fp_exception_ieee_754(int n, istate_t *istate)
  135. {
  136.     fault_if_from_uspace(istate, "%s.", __func__);
  137.     dump_istate(istate);
  138.     panic("%s.", __func__);
  139. }
  140.  
  141. /** Handle fp_exception_other. (0x22) */
  142. void fp_exception_other(int n, istate_t *istate)
  143. {
  144.     fault_if_from_uspace(istate, "%s.", __func__);
  145.     dump_istate(istate);
  146.     panic("%s.", __func__);
  147. }
  148.  
  149. /** Handle tag_overflow. (0x23) */
  150. void tag_overflow(int n, istate_t *istate)
  151. {
  152.     fault_if_from_uspace(istate, "%s.", __func__);
  153.     dump_istate(istate);
  154.     panic("%s.", __func__);
  155. }
  156.  
  157. /** Handle division_by_zero. (0x28) */
  158. void division_by_zero(int n, istate_t *istate)
  159. {
  160.     fault_if_from_uspace(istate, "%s.", __func__);
  161.     dump_istate(istate);
  162.     panic("%s.", __func__);
  163. }
  164.  
  165. /** Handle data_access_exception. (0x30) */
  166. void data_access_exception(int n, istate_t *istate)
  167. {
  168.     fault_if_from_uspace(istate, "%s.", __func__);
  169.     dump_istate(istate);
  170.     dump_sfsr_and_sfar();
  171.     panic("%s.", __func__);
  172. }
  173.  
  174. /** Handle data_access_error. (0x32) */
  175. void data_access_error(int n, istate_t *istate)
  176. {
  177.     fault_if_from_uspace(istate, "%s.", __func__);
  178.     dump_istate(istate);
  179.     panic("%s.", __func__);
  180. }
  181.  
  182. /** Handle mem_address_not_aligned. (0x34) */
  183. void mem_address_not_aligned(int n, istate_t *istate)
  184. {
  185.     fault_if_from_uspace(istate, "%s.", __func__);
  186.     dump_istate(istate);
  187.     panic("%s.", __func__);
  188. }
  189.  
  190. /** Handle LDDF_mem_address_not_aligned. (0x35) */
  191. void LDDF_mem_address_not_aligned(int n, istate_t *istate)
  192. {
  193.     fault_if_from_uspace(istate, "%s.", __func__);
  194.     dump_istate(istate);
  195.     panic("%s.", __func__);
  196. }
  197.  
  198. /** Handle STDF_mem_address_not_aligned. (0x36) */
  199. void STDF_mem_address_not_aligned(int n, istate_t *istate)
  200. {
  201.     fault_if_from_uspace(istate, "%s.", __func__);
  202.     dump_istate(istate);
  203.     panic("%s.", __func__);
  204. }
  205.  
  206. /** Handle privileged_action. (0x37) */
  207. void privileged_action(int n, istate_t *istate)
  208. {
  209.     fault_if_from_uspace(istate, "%s.", __func__);
  210.     dump_istate(istate);
  211.     panic("%s.", __func__);
  212. }
  213.  
  214. /** Handle LDQF_mem_address_not_aligned. (0x38) */
  215. void LDQF_mem_address_not_aligned(int n, istate_t *istate)
  216. {
  217.     fault_if_from_uspace(istate, "%s.", __func__);
  218.     dump_istate(istate);
  219.     panic("%s.", __func__);
  220. }
  221.  
  222. /** Handle STQF_mem_address_not_aligned. (0x39) */
  223. void STQF_mem_address_not_aligned(int n, istate_t *istate)
  224. {
  225.     fault_if_from_uspace(istate, "%s.", __func__);
  226.     dump_istate(istate);
  227.     panic("%s.", __func__);
  228. }
  229.  
  230. /** @}
  231.  */
  232.