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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: estate.h,v 1.1 2001/03/28 10:56:34 davem Exp $ */
  2. #ifndef _SPARC64_ESTATE_H
  3. #define _SPARC64_ESTATE_H
  4. /* UltraSPARC-III E-cache Error Enable */
  5. #define ESTATE_ERROR_FMT 0x0000000000040000 /* Force MTAG ECC */
  6. #define ESTATE_ERROR_FMESS 0x000000000003c000 /* Forced MTAG ECC val */
  7. #define ESTATE_ERROR_FMD 0x0000000000002000 /* Force DATA ECC */
  8. #define ESTATE_ERROR_FDECC 0x0000000000001ff0 /* Forced DATA ECC val */
  9. #define ESTATE_ERROR_UCEEN 0x0000000000000008 /* See below */
  10. #define ESTATE_ERROR_NCEEN 0x0000000000000002 /* See below */
  11. #define ESTATE_ERROR_CEEN 0x0000000000000001 /* See below */
  12. /* UCEEN enables the fast_ECC_error trap for: 1) software correctable E-cache
  13.  * errors 2) uncorrectable E-cache errors.  Such events only occur on reads
  14.  * of the E-cache by the local processor for: 1) data loads 2) instruction
  15.  * fetches 3) atomic operations.  Such events _cannot_ occur for: 1) merge
  16.  * 2) writeback 2) copyout.  The AFSR bits assosciated with these traps are
  17.  * UCC and UCU.
  18.  */
  19. /* NCEEN enables instruction_access_error, data_access_error, and ECC_error traps
  20.  * for uncorrectable ECC errors and system errors.
  21.  *
  22.  * Uncorrectable system bus data error or MTAG ECC error, system bus TimeOUT,
  23.  * or system bus BusERR:
  24.  * 1) As the result of an instruction fetch, will generate instruction_access_error
  25.  * 2) As the result of a load etc. will generate data_access_error.
  26.  * 3) As the result of store merge completion, writeback, or copyout will
  27.  *    generate a disrupting ECC_error trap.
  28.  * 4) As the result of such errors on instruction vector fetch can generate any
  29.  *    of the 3 trap types.
  30.  *
  31.  * The AFSR bits assosciated with these traps are EMU, EDU, WDU, CPU, IVU, UE,
  32.  * BERR, and TO.
  33.  */
  34. /* CEEN enables the ECC_error trap for hardware corrected ECC errors.  System bus
  35.  * reads resulting in a hardware corrected data or MTAG ECC error will generate an
  36.  * ECC_error disrupting trap with this bit enabled.
  37.  *
  38.  * This same trap will also be generated when a hardware corrected ECC error results
  39.  * during store merge, writeback, and copyout operations.
  40.  */
  41. /* In general, if the trap enable bits above are disabled the AFSR bits will still
  42.  * log the events even though the trap will not be generated by the processor.
  43.  */
  44. #endif /* _SPARC64_ESTATE_H */