mca.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

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