IxEthDBQoS.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /**
  2. * @file IxEthDBQoS.h
  3. *
  4. * @brief Public definitions for QoS traffic classes
  5. *
  6. * @par
  7. * IXP400 SW Release version 2.0
  8. *
  9. * -- Copyright Notice --
  10. *
  11. * @par
  12. * Copyright 2001-2005, Intel Corporation.
  13. * All rights reserved.
  14. *
  15. * @par
  16. * Redistribution and use in source and binary forms, with or without
  17. * modification, are permitted provided that the following conditions
  18. * are met:
  19. * 1. Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer.
  21. * 2. Redistributions in binary form must reproduce the above copyright
  22. * notice, this list of conditions and the following disclaimer in the
  23. * documentation and/or other materials provided with the distribution.
  24. * 3. Neither the name of the Intel Corporation nor the names of its contributors
  25. * may be used to endorse or promote products derived from this software
  26. * without specific prior written permission.
  27. *
  28. * @par
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
  30. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  31. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  32. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
  33. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  34. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  35. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  36. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  37. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  38. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  39. * SUCH DAMAGE.
  40. *
  41. * @par
  42. * -- End of Copyright Notice --
  43. */
  44. /**
  45. * @defgroup IxEthDBPortDefs IXP400 Ethernet QoS definitions
  46. *
  47. * @brief IXP00 Public definitions for QoS traffic classes
  48. *
  49. * @{
  50. */
  51. #ifndef IxEthDBQoS_H
  52. #define IxEthDBQoS_H
  53. /**
  54. * @def IX_ETH_DB_QUEUE_UNAVAILABLE
  55. * @brief alias to indicate a queue (traffic class) is not available
  56. */
  57. #define IX_ETH_DB_QUEUE_UNAVAILABLE (0)
  58. #ifndef IX_IEEE802_1Q_QOS_PRIORITY_COUNT
  59. /**
  60. * @def IX_IEEE802_1Q_QOS_PRIORITY_COUNT
  61. * @brief number of QoS priorities, according to IEEE 802.1Q
  62. */
  63. #define IX_IEEE802_1Q_QOS_PRIORITY_COUNT (8)
  64. #endif
  65. /**
  66. * @brief array containing all the supported traffic class configurations
  67. */
  68. static const
  69. UINT8 ixEthDBQueueAssignments[][IX_IEEE802_1Q_QOS_PRIORITY_COUNT] =
  70. {
  71. { 4, 5, 6, 7, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE },
  72. { 15, 16, 17, 18, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE },
  73. { 11, 23, 26, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE, IX_ETH_DB_QUEUE_UNAVAILABLE },
  74. { 4, 5, 6, 7, 8, 9, 10, 11 }
  75. /* add here all other cases of queue configuration structures and update ixEthDBTrafficClassDefinitions to use them */
  76. };
  77. /**
  78. * @brief value used to index the NPE A functionality ID in the traffic class definition table
  79. */
  80. #define IX_ETH_DB_NPE_A_FUNCTIONALITY_ID_INDEX (0)
  81. /**
  82. * @brief value used to index the traffic class count in the traffic class definition table
  83. */
  84. #define IX_ETH_DB_TRAFFIC_CLASS_COUNT_INDEX (1)
  85. /**
  86. * @brief value used to index the queue assignment index in the traffic class definition table
  87. */
  88. #define IX_ETH_DB_QUEUE_ASSIGNMENT_INDEX (2)
  89. /**
  90. * @brief traffic class definitions
  91. *
  92. * This array contains the default traffic class definition configuration,
  93. * as well as any special cases dictated by the functionality ID of NPE A.
  94. *
  95. * The default case should not be removed (otherwise the Ethernet
  96. * components will assert a fatal failure on initialization).
  97. */
  98. static const
  99. UINT8 ixEthDBTrafficClassDefinitions[][3] =
  100. {
  101. /* NPE A functionality ID | traffic class count | queue assignment index (points to the queue enumeration in ixEthDBQueueAssignments) */
  102. { 0x00, 4, 0 }, /* default case - DO NOT REMOVE */
  103. { 0x04, 4, 1 }, /* NPE A image ID 0.4.0.0 */
  104. { 0x09, 3, 2 }, /* NPE A image ID 0.9.0.0 */
  105. { 0x80, 8, 3 }, /* NPE A image ID 10.80.02.0 */
  106. { 0x81, 8, 3 }, /* NPE A image ID 10.81.02.0 */
  107. { 0x82, 8, 3 } /* NPE A image ID 10.82.02.0 */
  108. };
  109. /**
  110. * @brief IEEE 802.1Q recommended QoS Priority => traffic class maps
  111. *
  112. * @verbatim
  113. Number of available traffic classes
  114. 1 2 3 4 5 6 7 8
  115. QoS Priority
  116. 0 0 0 0 1 1 1 1 2
  117. 1 0 0 0 0 0 0 0 0
  118. 2 0 0 0 0 0 0 0 1
  119. 3 0 0 0 1 1 2 2 3
  120. 4 0 1 1 2 2 3 3 4
  121. 5 0 1 1 2 3 4 4 5
  122. 6 0 1 2 3 4 5 5 6
  123. 7 0 1 2 3 4 5 6 7
  124. @endverbatim
  125. */
  126. static const
  127. UINT8 ixEthIEEE802_1QUserPriorityToTrafficClassMapping[IX_IEEE802_1Q_QOS_PRIORITY_COUNT][IX_IEEE802_1Q_QOS_PRIORITY_COUNT] =
  128. {
  129. { 0, 0, 0, 0, 0, 0, 0, 0 }, /* 1 traffic class available */
  130. { 0, 0, 0, 0, 1, 1, 1, 1 }, /* 2 traffic classes available */
  131. { 0, 0, 0, 0, 1, 1, 2, 2 }, /* 3 traffic classes available */
  132. { 1, 0, 0, 1, 2, 2, 3, 3 }, /* 4 traffic classes available */
  133. { 1, 0, 0, 1, 2, 3, 4, 4 }, /* 5 traffic classes available */
  134. { 1, 0, 0, 2, 3, 4, 5, 5 }, /* 6 traffic classes available */
  135. { 1, 0, 0, 2, 3, 4, 5, 6 }, /* 7 traffic classes available */
  136. { 2, 0, 1, 3, 4, 5, 6, 7 } /* 8 traffic classes available */
  137. };
  138. #endif /* IxEthDBQoS_H */
  139. /**
  140. *@}
  141. */