k7.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Athlon/Hammer specific Machine Check Exception Reporting
  3. * (C) Copyright 2002 Dave Jones <davej@codemonkey.org.uk>
  4. */
  5. #include <linux/init.h>
  6. #include <linux/types.h>
  7. #include <linux/kernel.h>
  8. #include <linux/config.h>
  9. #include <linux/interrupt.h>
  10. #include <linux/smp.h>
  11. #include <asm/processor.h>
  12. #include <asm/system.h>
  13. #include <asm/msr.h>
  14. #include "mce.h"
  15. /* Machine Check Handler For AMD Athlon/Duron */
  16. static fastcall void k7_machine_check(struct pt_regs * regs, long error_code)
  17. {
  18. int recover=1;
  19. u32 alow, ahigh, high, low;
  20. u32 mcgstl, mcgsth;
  21. int i;
  22. rdmsr (MSR_IA32_MCG_STATUS, mcgstl, mcgsth);
  23. if (mcgstl & (1<<0)) /* Recoverable ? */
  24. recover=0;
  25. printk (KERN_EMERG "CPU %d: Machine Check Exception: %08x%08x\n",
  26. smp_processor_id(), mcgsth, mcgstl);
  27. for (i=1; i<nr_mce_banks; i++) {
  28. rdmsr (MSR_IA32_MC0_STATUS+i*4,low, high);
  29. if (high&(1<<31)) {
  30. if (high & (1<<29))
  31. recover |= 1;
  32. if (high & (1<<25))
  33. recover |= 2;
  34. printk (KERN_EMERG "Bank %d: %08x%08x", i, high, low);
  35. high &= ~(1<<31);
  36. if (high & (1<<27)) {
  37. rdmsr (MSR_IA32_MC0_MISC+i*4, alow, ahigh);
  38. printk ("[%08x%08x]", ahigh, alow);
  39. }
  40. if (high & (1<<26)) {
  41. rdmsr (MSR_IA32_MC0_ADDR+i*4, alow, ahigh);
  42. printk (" at %08x%08x", ahigh, alow);
  43. }
  44. printk ("\n");
  45. /* Clear it */
  46. wrmsr (MSR_IA32_MC0_STATUS+i*4, 0UL, 0UL);
  47. /* Serialize */
  48. wmb();
  49. add_taint(TAINT_MACHINE_CHECK);
  50. }
  51. }
  52. if (recover&2)
  53. panic ("CPU context corrupt");
  54. if (recover&1)
  55. panic ("Unable to continue");
  56. printk (KERN_EMERG "Attempting to continue.\n");
  57. mcgstl &= ~(1<<2);
  58. wrmsr (MSR_IA32_MCG_STATUS,mcgstl, mcgsth);
  59. }
  60. /* AMD K7 machine check is Intel like */
  61. void amd_mcheck_init(struct cpuinfo_x86 *c)
  62. {
  63. u32 l, h;
  64. int i;
  65. machine_check_vector = k7_machine_check;
  66. wmb();
  67. printk (KERN_INFO "Intel machine check architecture supported.\n");
  68. rdmsr (MSR_IA32_MCG_CAP, l, h);
  69. if (l & (1<<8)) /* Control register present ? */
  70. wrmsr (MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
  71. nr_mce_banks = l & 0xff;
  72. /* Clear status for MC index 0 separately, we don't touch CTL,
  73. * as some Athlons cause spurious MCEs when its enabled. */
  74. wrmsr (MSR_IA32_MC0_STATUS, 0x0, 0x0);
  75. for (i=1; i<nr_mce_banks; i++) {
  76. wrmsr (MSR_IA32_MC0_CTL+4*i, 0xffffffff, 0xffffffff);
  77. wrmsr (MSR_IA32_MC0_STATUS+4*i, 0x0, 0x0);
  78. }
  79. set_in_cr4 (X86_CR4_MCE);
  80. printk (KERN_INFO "Intel machine check reporting enabled on CPU#%d.\n",
  81. smp_processor_id());
  82. }