mca.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * File: mca.h
  3.  * Purpose: Machine check handling specific defines
  4.  *
  5.  * Copyright (C) 1999 Silicon Graphics, Inc.
  6.  * Copyright (C) Vijay Chander (vijay@engr.sgi.com)
  7.  * Copyright (C) Srinivasa Thirumalachar (sprasad@engr.sgi.com)
  8.  */
  9. #ifndef _ASM_IA64_MCA_H
  10. #define _ASM_IA64_MCA_H
  11. #if !defined(__ASSEMBLY__)
  12. #include <linux/types.h>
  13. #include <asm/param.h>
  14. #include <asm/sal.h>
  15. #include <asm/processor.h>
  16. /* These are the return codes from all the IA64_MCA specific interfaces */
  17. typedef int ia64_mca_return_code_t;
  18. enum {
  19. IA64_MCA_SUCCESS = 0,
  20. IA64_MCA_FAILURE = 1
  21. };
  22. #define IA64_MCA_RENDEZ_TIMEOUT (100 * HZ) /* 1000 milliseconds */
  23. #define IA64_CMC_INT_DISABLE 0
  24. #define IA64_CMC_INT_ENABLE 1
  25. typedef u32 int_vector_t;
  26. typedef u64 millisec_t;
  27. typedef union cmcv_reg_u {
  28. u64 cmcv_regval;
  29. struct {
  30. u64 cmcr_vector : 8;
  31. u64 cmcr_reserved1 : 4;
  32. u64 cmcr_ignored1 : 1;
  33. u64 cmcr_reserved2 : 3;
  34. u64 cmcr_mask : 1;
  35. u64 cmcr_ignored2 : 47;
  36. } cmcv_reg_s;
  37. } cmcv_reg_t;
  38. #define cmcv_mask cmcv_reg_s.cmcr_mask
  39. #define cmcv_vector cmcv_reg_s.cmcr_vector
  40. #define IA64_MCA_UCMC_HANDLER_SIZE 0x10
  41. #define IA64_INIT_HANDLER_SIZE 0x10
  42. enum {
  43. IA64_MCA_RENDEZ_CHECKIN_NOTDONE = 0x0,
  44. IA64_MCA_RENDEZ_CHECKIN_DONE = 0x1
  45. };
  46. /* Information maintained by the MC infrastructure */
  47. typedef struct ia64_mc_info_s {
  48. u64 imi_mca_handler;
  49. size_t imi_mca_handler_size;
  50. u64 imi_monarch_init_handler;
  51. size_t imi_monarch_init_handler_size;
  52. u64 imi_slave_init_handler;
  53. size_t imi_slave_init_handler_size;
  54. u8 imi_rendez_checkin[NR_CPUS];
  55. } ia64_mc_info_t;
  56. /* Possible rendez states passed from SAL to OS during MCA
  57.  * handoff
  58.  */
  59. enum {
  60. IA64_MCA_RENDEZ_NOT_RQD = 0x0,
  61. IA64_MCA_RENDEZ_DONE_WITHOUT_INIT = 0x1,
  62. IA64_MCA_RENDEZ_DONE_WITH_INIT = 0x2,
  63. IA64_MCA_RENDEZ_FAILURE = -1
  64. };
  65. typedef struct ia64_mca_sal_to_os_state_s {
  66. u64 imsto_os_gp; /* GP of the os registered with the SAL */
  67. u64 imsto_pal_proc; /* PAL_PROC entry point - physical addr */
  68. u64 imsto_sal_proc; /* SAL_PROC entry point - physical addr */
  69. u64 imsto_sal_gp; /* GP of the SAL - physical */
  70. u64 imsto_rendez_state; /* Rendez state information */
  71. u64 imsto_sal_check_ra; /* Return address in SAL_CHECK while going
  72.  * back to SAL from OS after MCA handling.
  73.  */
  74. } ia64_mca_sal_to_os_state_t;
  75. enum {
  76. IA64_MCA_CORRECTED = 0x0, /* Error has been corrected by OS_MCA */
  77. IA64_MCA_WARM_BOOT = -1, /* Warm boot of the system need from SAL */
  78. IA64_MCA_COLD_BOOT = -2, /* Cold boot of the system need from SAL */
  79. IA64_MCA_HALT = -3 /* System to be halted by SAL */
  80. };
  81. enum {
  82. IA64_MCA_SAME_CONTEXT = 0x0, /* SAL to return to same context */
  83. IA64_MCA_NEW_CONTEXT = -1 /* SAL to return to new context */
  84. };
  85. typedef struct ia64_mca_os_to_sal_state_s {
  86. u64 imots_os_status; /*   OS status to SAL as to what happened
  87.  *   with the MCA handling.
  88.  */
  89. u64 imots_sal_gp; /* GP of the SAL - physical */
  90. u64 imots_context; /* 0 if return to same context
  91.    1 if return to new context */
  92. u64 *imots_new_min_state; /* Pointer to structure containing
  93.  * new values of registers in the min state
  94.  * save area.
  95.  */
  96. u64 imots_sal_check_ra; /* Return address in SAL_CHECK while going
  97.  * back to SAL from OS after MCA handling.
  98.  */
  99. } ia64_mca_os_to_sal_state_t;
  100. typedef int (*prfunc_t)(const char * fmt, ...);
  101. extern void ia64_mca_init(void);
  102. extern void ia64_os_mca_dispatch(void);
  103. extern void ia64_os_mca_dispatch_end(void);
  104. extern void ia64_mca_ucmc_handler(void);
  105. extern void ia64_monarch_init_handler(void);
  106. extern void ia64_slave_init_handler(void);
  107. extern void ia64_mca_rendez_int_handler(int,void *,struct pt_regs *);
  108. extern void ia64_mca_wakeup_int_handler(int,void *,struct pt_regs *);
  109. extern void ia64_mca_cmc_int_handler(int,void *,struct pt_regs *);
  110. extern void ia64_mca_cpe_int_handler(int,void *,struct pt_regs *);
  111. extern int  ia64_log_print(int,prfunc_t);
  112. extern void ia64_mca_cmc_vector_setup(void);
  113. extern void ia64_mca_check_errors( void );
  114. extern u64  ia64_log_get(int, prfunc_t);
  115. #define PLATFORM_CALL(fn, args) printk("Platform call TBDn")
  116. #define platform_mem_dev_err_print ia64_log_prt_oem_data
  117. #define platform_pci_bus_err_print ia64_log_prt_oem_data
  118. #define platform_pci_comp_err_print ia64_log_prt_oem_data
  119. #define platform_plat_specific_err_print ia64_log_prt_oem_data
  120. #define platform_host_ctlr_err_print ia64_log_prt_oem_data
  121. #define platform_plat_bus_err_print ia64_log_prt_oem_data
  122. #undef MCA_TEST
  123. #undef IA64_MCA_DEBUG_INFO
  124. #if defined(IA64_MCA_DEBUG_INFO)
  125. # define IA64_MCA_DEBUG(fmt...) printk(fmt)
  126. #else
  127. # define IA64_MCA_DEBUG(fmt...)
  128. #endif
  129. #endif /* !__ASSEMBLY__ */
  130. #endif /* _ASM_IA64_MCA_H */