entry.h 7.0 KB

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