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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: mxcc.h,v 1.7 1997/04/20 14:11:46 ecd Exp $
  2.  * mxcc.h:  Definitions of the Viking MXCC registers
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #ifndef _SPARC_MXCC_H
  7. #define _SPARC_MXCC_H
  8. /* These registers are accessed through ASI 0x2. */
  9. #define MXCC_DATSTREAM       0x1C00000  /* Data stream register */
  10. #define MXCC_SRCSTREAM       0x1C00100  /* Source stream register */
  11. #define MXCC_DESSTREAM       0x1C00200  /* Destination stream register */
  12. #define MXCC_RMCOUNT         0x1C00300  /* Count of references and misses */
  13. #define MXCC_STEST           0x1C00804  /* Internal self-test */
  14. #define MXCC_CREG            0x1C00A04  /* Control register */
  15. #define MXCC_SREG            0x1C00B00  /* Status register */
  16. #define MXCC_RREG            0x1C00C04  /* Reset register */
  17. #define MXCC_EREG            0x1C00E00  /* Error code register */
  18. #define MXCC_PREG            0x1C00F04  /* Address port register */
  19. /* Some MXCC constants. */
  20. #define MXCC_STREAM_SIZE     0x20       /* Size in bytes of one stream r/w */
  21. /* The MXCC Control Register:
  22.  *
  23.  * ----------------------------------------------------------------------
  24.  * |                                   | RRC | RSV |PRE|MCE|PARE|ECE|RSV|
  25.  * ----------------------------------------------------------------------
  26.  *  31                              10    9    8-6   5   4    3   2  1-0
  27.  *
  28.  * RRC: Controls what you read from MXCC_RMCOUNT reg.
  29.  *      0=Misses 1=References
  30.  * PRE: Prefetch enable
  31.  * MCE: Multiple Command Enable
  32.  * PARE: Parity enable
  33.  * ECE: External cache enable
  34.  */
  35. #define MXCC_CTL_RRC   0x00000200
  36. #define MXCC_CTL_PRE   0x00000020
  37. #define MXCC_CTL_MCE   0x00000010
  38. #define MXCC_CTL_PARE  0x00000008
  39. #define MXCC_CTL_ECE   0x00000004
  40. /* The MXCC Error Register:
  41.  *
  42.  * --------------------------------------------------------
  43.  * |ME| RSV|CE|PEW|PEE|ASE|EIV| MOPC|ECODE|PRIV|RSV|HPADDR|
  44.  * --------------------------------------------------------
  45.  *  31   30 29  28  27  26  25 24-15  14-7   6  5-3   2-0
  46.  *
  47.  * ME: Multiple Errors have occurred
  48.  * CE: Cache consistency Error
  49.  * PEW: Parity Error during a Write operation
  50.  * PEE: Parity Error involving the External cache
  51.  * ASE: ASynchronous Error
  52.  * EIV: This register is toast
  53.  * MOPC: MXCC Operation Code for instance causing error
  54.  * ECODE: The Error CODE
  55.  * PRIV: A privileged mode error? 0=no 1=yes
  56.  * HPADDR: High PhysicalADDRess bits (35-32)
  57.  */
  58. #define MXCC_ERR_ME     0x80000000
  59. #define MXCC_ERR_CE     0x20000000
  60. #define MXCC_ERR_PEW    0x10000000
  61. #define MXCC_ERR_PEE    0x08000000
  62. #define MXCC_ERR_ASE    0x04000000
  63. #define MXCC_ERR_EIV    0x02000000
  64. #define MXCC_ERR_MOPC   0x01FF8000
  65. #define MXCC_ERR_ECODE  0x00007F80
  66. #define MXCC_ERR_PRIV   0x00000040
  67. #define MXCC_ERR_HPADDR 0x0000000f
  68. /* The MXCC Port register:
  69.  *
  70.  * -----------------------------------------------------
  71.  * |                | MID |                            |
  72.  * -----------------------------------------------------
  73.  *  31            21 20-18 17                         0
  74.  *
  75.  * MID: The moduleID of the cpu your read this from.
  76.  */
  77. #ifndef __ASSEMBLY__
  78. extern __inline__ void mxcc_set_stream_src(unsigned long *paddr)
  79. {
  80. unsigned long data0 = paddr[0];
  81. unsigned long data1 = paddr[1];
  82. __asm__ __volatile__ ("or %%g0, %0, %%g2nt"
  83.       "or %%g0, %1, %%g3nt"
  84.       "stda %%g2, [%2] %3nt" : :
  85.       "r" (data0), "r" (data1),
  86.       "r" (MXCC_SRCSTREAM),
  87.       "i" (ASI_M_MXCC) : "g2", "g3");
  88. }
  89. extern __inline__ void mxcc_set_stream_dst(unsigned long *paddr)
  90. {
  91. unsigned long data0 = paddr[0];
  92. unsigned long data1 = paddr[1];
  93. __asm__ __volatile__ ("or %%g0, %0, %%g2nt"
  94.       "or %%g0, %1, %%g3nt"
  95.       "stda %%g2, [%2] %3nt" : :
  96.       "r" (data0), "r" (data1),
  97.       "r" (MXCC_DESSTREAM),
  98.       "i" (ASI_M_MXCC) : "g2", "g3");
  99. }
  100. extern __inline__ unsigned long mxcc_get_creg(void)
  101. {
  102. unsigned long mxcc_control;
  103. __asm__ __volatile__("set -1, %%g2nt"
  104.      "set -1, %%g3nt"
  105.      "stda %%g2, [%1] %2nt"
  106.      "lda [%3] %2, %0nt" :
  107.      "=r" (mxcc_control) :
  108.      "r" (MXCC_EREG), "i" (ASI_M_MXCC),
  109.      "r" (MXCC_CREG) : "g2", "g3");
  110. return mxcc_control;
  111. }
  112. extern __inline__ void mxcc_set_creg(unsigned long mxcc_control)
  113. {
  114. __asm__ __volatile__("sta %0, [%1] %2nt" : :
  115.      "r" (mxcc_control), "r" (MXCC_CREG),
  116.      "i" (ASI_M_MXCC));
  117. }
  118. #endif /* !__ASSEMBLY__ */
  119. #endif /* !(_SPARC_MXCC_H) */