entry.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. #ifndef _ENTRY_H
  2. #define _ENTRY_H
  3. #include <linux/kernel.h>
  4. #include <linux/types.h>
  5. #include <linux/init.h>
  6. /* irq */
  7. void handler_irq(int irq, struct pt_regs *regs);
  8. #ifdef CONFIG_SPARC32
  9. /* traps */
  10. void do_hw_interrupt(struct pt_regs *regs, unsigned long type);
  11. void do_illegal_instruction(struct pt_regs *regs, unsigned long pc,
  12. unsigned long npc, unsigned long psr);
  13. void do_priv_instruction(struct pt_regs *regs, unsigned long pc,
  14. unsigned long npc, unsigned long psr);
  15. void do_memaccess_unaligned(struct pt_regs *regs, unsigned long pc,
  16. unsigned long npc, unsigned long psr);
  17. void do_fpd_trap(struct pt_regs *regs, unsigned long pc,
  18. unsigned long npc, unsigned long psr);
  19. void do_fpe_trap(struct pt_regs *regs, unsigned long pc,
  20. unsigned long npc, unsigned long psr);
  21. void handle_tag_overflow(struct pt_regs *regs, unsigned long pc,
  22. unsigned long npc, unsigned long psr);
  23. void handle_watchpoint(struct pt_regs *regs, unsigned long pc,
  24. unsigned long npc, unsigned long psr);
  25. void handle_reg_access(struct pt_regs *regs, unsigned long pc,
  26. unsigned long npc, unsigned long psr);
  27. void handle_cp_disabled(struct pt_regs *regs, unsigned long pc,
  28. unsigned long npc, unsigned long psr);
  29. void handle_cp_exception(struct pt_regs *regs, unsigned long pc,
  30. unsigned long npc, unsigned long psr);
  31. /* entry.S */
  32. void fpsave(unsigned long *fpregs, unsigned long *fsr,
  33. void *fpqueue, unsigned long *fpqdepth);
  34. void fpload(unsigned long *fpregs, unsigned long *fsr);
  35. #else /* CONFIG_SPARC32 */
  36. #include <asm/trap_block.h>
  37. struct popc_3insn_patch_entry {
  38. unsigned int addr;
  39. unsigned int insns[3];
  40. };
  41. extern struct popc_3insn_patch_entry __popc_3insn_patch,
  42. __popc_3insn_patch_end;
  43. struct popc_6insn_patch_entry {
  44. unsigned int addr;
  45. unsigned int insns[6];
  46. };
  47. extern struct popc_6insn_patch_entry __popc_6insn_patch,
  48. __popc_6insn_patch_end;
  49. struct pause_patch_entry {
  50. unsigned int addr;
  51. unsigned int insns[3];
  52. };
  53. extern struct pause_patch_entry __pause_3insn_patch,
  54. __pause_3insn_patch_end;
  55. void __init per_cpu_patch(void);
  56. void sun4v_patch_1insn_range(struct sun4v_1insn_patch_entry *,
  57. struct sun4v_1insn_patch_entry *);
  58. void sun4v_patch_2insn_range(struct sun4v_2insn_patch_entry *,
  59. struct sun4v_2insn_patch_entry *);
  60. void __init sun4v_patch(void);
  61. void __init boot_cpu_id_too_large(int cpu);
  62. extern unsigned int dcache_parity_tl1_occurred;
  63. extern unsigned int icache_parity_tl1_occurred;
  64. asmlinkage void sparc_breakpoint(struct pt_regs *regs);
  65. void timer_interrupt(int irq, struct pt_regs *regs);
  66. void do_notify_resume(struct pt_regs *regs,
  67. unsigned long orig_i0,
  68. unsigned long thread_info_flags);
  69. asmlinkage int syscall_trace_enter(struct pt_regs *regs);
  70. asmlinkage void syscall_trace_leave(struct pt_regs *regs);
  71. void bad_trap_tl1(struct pt_regs *regs, long lvl);
  72. void do_fpieee(struct pt_regs *regs);
  73. void do_fpother(struct pt_regs *regs);
  74. void do_tof(struct pt_regs *regs);
  75. void do_div0(struct pt_regs *regs);
  76. void do_illegal_instruction(struct pt_regs *regs);
  77. void mem_address_unaligned(struct pt_regs *regs,
  78. unsigned long sfar,
  79. unsigned long sfsr);
  80. void sun4v_do_mna(struct pt_regs *regs,
  81. unsigned long addr,
  82. unsigned long type_ctx);
  83. void do_privop(struct pt_regs *regs);
  84. void do_privact(struct pt_regs *regs);
  85. void do_cee(struct pt_regs *regs);
  86. void do_cee_tl1(struct pt_regs *regs);
  87. void do_dae_tl1(struct pt_regs *regs);
  88. void do_iae_tl1(struct pt_regs *regs);
  89. void do_div0_tl1(struct pt_regs *regs);
  90. void do_fpdis_tl1(struct pt_regs *regs);
  91. void do_fpieee_tl1(struct pt_regs *regs);
  92. void do_fpother_tl1(struct pt_regs *regs);
  93. void do_ill_tl1(struct pt_regs *regs);
  94. void do_irq_tl1(struct pt_regs *regs);
  95. void do_lddfmna_tl1(struct pt_regs *regs);
  96. void do_stdfmna_tl1(struct pt_regs *regs);
  97. void do_paw(struct pt_regs *regs);
  98. void do_paw_tl1(struct pt_regs *regs);
  99. void do_vaw(struct pt_regs *regs);
  100. void do_vaw_tl1(struct pt_regs *regs);
  101. void do_tof_tl1(struct pt_regs *regs);
  102. void do_getpsr(struct pt_regs *regs);
  103. void spitfire_insn_access_exception(struct pt_regs *regs,
  104. unsigned long sfsr,
  105. unsigned long sfar);
  106. void spitfire_insn_access_exception_tl1(struct pt_regs *regs,
  107. unsigned long sfsr,
  108. unsigned long sfar);
  109. void spitfire_data_access_exception(struct pt_regs *regs,
  110. unsigned long sfsr,
  111. unsigned long sfar);
  112. void spitfire_data_access_exception_tl1(struct pt_regs *regs,
  113. unsigned long sfsr,
  114. unsigned long sfar);
  115. void spitfire_access_error(struct pt_regs *regs,
  116. unsigned long status_encoded,
  117. unsigned long afar);
  118. void cheetah_fecc_handler(struct pt_regs *regs,
  119. unsigned long afsr,
  120. unsigned long afar);
  121. void cheetah_cee_handler(struct pt_regs *regs,
  122. unsigned long afsr,
  123. unsigned long afar);
  124. void cheetah_deferred_handler(struct pt_regs *regs,
  125. unsigned long afsr,
  126. unsigned long afar);
  127. void cheetah_plus_parity_error(int type, struct pt_regs *regs);
  128. void sun4v_insn_access_exception(struct pt_regs *regs,
  129. unsigned long addr,
  130. unsigned long type_ctx);
  131. void sun4v_insn_access_exception_tl1(struct pt_regs *regs,
  132. unsigned long addr,
  133. unsigned long type_ctx);
  134. void sun4v_data_access_exception(struct pt_regs *regs,
  135. unsigned long addr,
  136. unsigned long type_ctx);
  137. void sun4v_data_access_exception_tl1(struct pt_regs *regs,
  138. unsigned long addr,
  139. unsigned long type_ctx);
  140. void sun4v_resum_error(struct pt_regs *regs,
  141. unsigned long offset);
  142. void sun4v_resum_overflow(struct pt_regs *regs);
  143. void sun4v_nonresum_error(struct pt_regs *regs,
  144. unsigned long offset);
  145. void sun4v_nonresum_overflow(struct pt_regs *regs);
  146. extern unsigned long sun4v_err_itlb_vaddr;
  147. extern unsigned long sun4v_err_itlb_ctx;
  148. extern unsigned long sun4v_err_itlb_pte;
  149. extern unsigned long sun4v_err_itlb_error;
  150. void sun4v_itlb_error_report(struct pt_regs *regs, int tl);
  151. extern unsigned long sun4v_err_dtlb_vaddr;
  152. extern unsigned long sun4v_err_dtlb_ctx;
  153. extern unsigned long sun4v_err_dtlb_pte;
  154. extern unsigned long sun4v_err_dtlb_error;
  155. void sun4v_dtlb_error_report(struct pt_regs *regs, int tl);
  156. void hypervisor_tlbop_error(unsigned long err,
  157. unsigned long op);
  158. void hypervisor_tlbop_error_xcall(unsigned long err,
  159. unsigned long op);
  160. /* WARNING: The error trap handlers in assembly know the precise
  161. * layout of the following structure.
  162. *
  163. * C-level handlers in traps.c use this information to log the
  164. * error and then determine how to recover (if possible).
  165. */
  166. struct cheetah_err_info {
  167. /*0x00*/u64 afsr;
  168. /*0x08*/u64 afar;
  169. /* D-cache state */
  170. /*0x10*/u64 dcache_data[4]; /* The actual data */
  171. /*0x30*/u64 dcache_index; /* D-cache index */
  172. /*0x38*/u64 dcache_tag; /* D-cache tag/valid */
  173. /*0x40*/u64 dcache_utag; /* D-cache microtag */
  174. /*0x48*/u64 dcache_stag; /* D-cache snooptag */
  175. /* I-cache state */
  176. /*0x50*/u64 icache_data[8]; /* The actual insns + predecode */
  177. /*0x90*/u64 icache_index; /* I-cache index */
  178. /*0x98*/u64 icache_tag; /* I-cache phys tag */
  179. /*0xa0*/u64 icache_utag; /* I-cache microtag */
  180. /*0xa8*/u64 icache_stag; /* I-cache snooptag */
  181. /*0xb0*/u64 icache_upper; /* I-cache upper-tag */
  182. /*0xb8*/u64 icache_lower; /* I-cache lower-tag */
  183. /* E-cache state */
  184. /*0xc0*/u64 ecache_data[4]; /* 32 bytes from staging registers */
  185. /*0xe0*/u64 ecache_index; /* E-cache index */
  186. /*0xe8*/u64 ecache_tag; /* E-cache tag/state */
  187. /*0xf0*/u64 __pad[32 - 30];
  188. };
  189. #define CHAFSR_INVALID ((u64)-1L)
  190. /* This is allocated at boot time based upon the largest hardware
  191. * cpu ID in the system. We allocate two entries per cpu, one for
  192. * TL==0 logging and one for TL >= 1 logging.
  193. */
  194. extern struct cheetah_err_info *cheetah_error_log;
  195. /* UPA nodes send interrupt packet to UltraSparc with first data reg
  196. * value low 5 (7 on Starfire) bits holding the IRQ identifier being
  197. * delivered. We must translate this into a non-vector IRQ so we can
  198. * set the softint on this cpu.
  199. *
  200. * To make processing these packets efficient and race free we use
  201. * an array of irq buckets below. The interrupt vector handler in
  202. * entry.S feeds incoming packets into per-cpu pil-indexed lists.
  203. *
  204. * If you make changes to ino_bucket, please update hand coded assembler
  205. * of the vectored interrupt trap handler(s) in entry.S and sun4v_ivec.S
  206. */
  207. struct ino_bucket {
  208. /*0x00*/unsigned long __irq_chain_pa;
  209. /* Interrupt number assigned to this INO. */
  210. /*0x08*/unsigned int __irq;
  211. /*0x0c*/unsigned int __pad;
  212. };
  213. extern struct ino_bucket *ivector_table;
  214. extern unsigned long ivector_table_pa;
  215. void init_irqwork_curcpu(void);
  216. void sun4v_register_mondo_queues(int this_cpu);
  217. #endif /* CONFIG_SPARC32 */
  218. #endif /* _ENTRY_H */