elmer0.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*****************************************************************************
  2. * *
  3. * File: elmer0.h *
  4. * $Revision: 1.6 $ *
  5. * $Date: 2005/06/21 22:49:43 $ *
  6. * Description: *
  7. * part of the Chelsio 10Gb Ethernet Driver. *
  8. * *
  9. * This program is free software; you can redistribute it and/or modify *
  10. * it under the terms of the GNU General Public License, version 2, as *
  11. * published by the Free Software Foundation. *
  12. * *
  13. * You should have received a copy of the GNU General Public License along *
  14. * with this program; if not, see <http://www.gnu.org/licenses/>. *
  15. * *
  16. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED *
  17. * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF *
  18. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *
  19. * *
  20. * http://www.chelsio.com *
  21. * *
  22. * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
  23. * All rights reserved. *
  24. * *
  25. * Maintainers: maintainers@chelsio.com *
  26. * *
  27. * Authors: Dimitrios Michailidis <dm@chelsio.com> *
  28. * Tina Yang <tainay@chelsio.com> *
  29. * Felix Marti <felix@chelsio.com> *
  30. * Scott Bardone <sbardone@chelsio.com> *
  31. * Kurt Ottaway <kottaway@chelsio.com> *
  32. * Frank DiMambro <frank@chelsio.com> *
  33. * *
  34. * History: *
  35. * *
  36. ****************************************************************************/
  37. #ifndef _CXGB_ELMER0_H_
  38. #define _CXGB_ELMER0_H_
  39. /* ELMER0 flavors */
  40. enum {
  41. ELMER0_XC2S300E_6FT256_C,
  42. ELMER0_XC2S100E_6TQ144_C
  43. };
  44. /* ELMER0 registers */
  45. #define A_ELMER0_VERSION 0x100000
  46. #define A_ELMER0_PHY_CFG 0x100004
  47. #define A_ELMER0_INT_ENABLE 0x100008
  48. #define A_ELMER0_INT_CAUSE 0x10000c
  49. #define A_ELMER0_GPI_CFG 0x100010
  50. #define A_ELMER0_GPI_STAT 0x100014
  51. #define A_ELMER0_GPO 0x100018
  52. #define A_ELMER0_PORT0_MI1_CFG 0x400000
  53. #define S_MI1_MDI_ENABLE 0
  54. #define V_MI1_MDI_ENABLE(x) ((x) << S_MI1_MDI_ENABLE)
  55. #define F_MI1_MDI_ENABLE V_MI1_MDI_ENABLE(1U)
  56. #define S_MI1_MDI_INVERT 1
  57. #define V_MI1_MDI_INVERT(x) ((x) << S_MI1_MDI_INVERT)
  58. #define F_MI1_MDI_INVERT V_MI1_MDI_INVERT(1U)
  59. #define S_MI1_PREAMBLE_ENABLE 2
  60. #define V_MI1_PREAMBLE_ENABLE(x) ((x) << S_MI1_PREAMBLE_ENABLE)
  61. #define F_MI1_PREAMBLE_ENABLE V_MI1_PREAMBLE_ENABLE(1U)
  62. #define S_MI1_SOF 3
  63. #define M_MI1_SOF 0x3
  64. #define V_MI1_SOF(x) ((x) << S_MI1_SOF)
  65. #define G_MI1_SOF(x) (((x) >> S_MI1_SOF) & M_MI1_SOF)
  66. #define S_MI1_CLK_DIV 5
  67. #define M_MI1_CLK_DIV 0xff
  68. #define V_MI1_CLK_DIV(x) ((x) << S_MI1_CLK_DIV)
  69. #define G_MI1_CLK_DIV(x) (((x) >> S_MI1_CLK_DIV) & M_MI1_CLK_DIV)
  70. #define A_ELMER0_PORT0_MI1_ADDR 0x400004
  71. #define S_MI1_REG_ADDR 0
  72. #define M_MI1_REG_ADDR 0x1f
  73. #define V_MI1_REG_ADDR(x) ((x) << S_MI1_REG_ADDR)
  74. #define G_MI1_REG_ADDR(x) (((x) >> S_MI1_REG_ADDR) & M_MI1_REG_ADDR)
  75. #define S_MI1_PHY_ADDR 5
  76. #define M_MI1_PHY_ADDR 0x1f
  77. #define V_MI1_PHY_ADDR(x) ((x) << S_MI1_PHY_ADDR)
  78. #define G_MI1_PHY_ADDR(x) (((x) >> S_MI1_PHY_ADDR) & M_MI1_PHY_ADDR)
  79. #define A_ELMER0_PORT0_MI1_DATA 0x400008
  80. #define S_MI1_DATA 0
  81. #define M_MI1_DATA 0xffff
  82. #define V_MI1_DATA(x) ((x) << S_MI1_DATA)
  83. #define G_MI1_DATA(x) (((x) >> S_MI1_DATA) & M_MI1_DATA)
  84. #define A_ELMER0_PORT0_MI1_OP 0x40000c
  85. #define S_MI1_OP 0
  86. #define M_MI1_OP 0x3
  87. #define V_MI1_OP(x) ((x) << S_MI1_OP)
  88. #define G_MI1_OP(x) (((x) >> S_MI1_OP) & M_MI1_OP)
  89. #define S_MI1_ADDR_AUTOINC 2
  90. #define V_MI1_ADDR_AUTOINC(x) ((x) << S_MI1_ADDR_AUTOINC)
  91. #define F_MI1_ADDR_AUTOINC V_MI1_ADDR_AUTOINC(1U)
  92. #define S_MI1_OP_BUSY 31
  93. #define V_MI1_OP_BUSY(x) ((x) << S_MI1_OP_BUSY)
  94. #define F_MI1_OP_BUSY V_MI1_OP_BUSY(1U)
  95. #define A_ELMER0_PORT1_MI1_CFG 0x500000
  96. #define A_ELMER0_PORT1_MI1_ADDR 0x500004
  97. #define A_ELMER0_PORT1_MI1_DATA 0x500008
  98. #define A_ELMER0_PORT1_MI1_OP 0x50000c
  99. #define A_ELMER0_PORT2_MI1_CFG 0x600000
  100. #define A_ELMER0_PORT2_MI1_ADDR 0x600004
  101. #define A_ELMER0_PORT2_MI1_DATA 0x600008
  102. #define A_ELMER0_PORT2_MI1_OP 0x60000c
  103. #define A_ELMER0_PORT3_MI1_CFG 0x700000
  104. #define A_ELMER0_PORT3_MI1_ADDR 0x700004
  105. #define A_ELMER0_PORT3_MI1_DATA 0x700008
  106. #define A_ELMER0_PORT3_MI1_OP 0x70000c
  107. /* Simple bit definition for GPI and GP0 registers. */
  108. #define ELMER0_GP_BIT0 0x0001
  109. #define ELMER0_GP_BIT1 0x0002
  110. #define ELMER0_GP_BIT2 0x0004
  111. #define ELMER0_GP_BIT3 0x0008
  112. #define ELMER0_GP_BIT4 0x0010
  113. #define ELMER0_GP_BIT5 0x0020
  114. #define ELMER0_GP_BIT6 0x0040
  115. #define ELMER0_GP_BIT7 0x0080
  116. #define ELMER0_GP_BIT8 0x0100
  117. #define ELMER0_GP_BIT9 0x0200
  118. #define ELMER0_GP_BIT10 0x0400
  119. #define ELMER0_GP_BIT11 0x0800
  120. #define ELMER0_GP_BIT12 0x1000
  121. #define ELMER0_GP_BIT13 0x2000
  122. #define ELMER0_GP_BIT14 0x4000
  123. #define ELMER0_GP_BIT15 0x8000
  124. #define ELMER0_GP_BIT16 0x10000
  125. #define ELMER0_GP_BIT17 0x20000
  126. #define ELMER0_GP_BIT18 0x40000
  127. #define ELMER0_GP_BIT19 0x80000
  128. #define MI1_OP_DIRECT_WRITE 1
  129. #define MI1_OP_DIRECT_READ 2
  130. #define MI1_OP_INDIRECT_ADDRESS 0
  131. #define MI1_OP_INDIRECT_WRITE 1
  132. #define MI1_OP_INDIRECT_READ_INC 2
  133. #define MI1_OP_INDIRECT_READ 3
  134. #endif /* _CXGB_ELMER0_H_ */