xgbe-dcb.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * AMD 10Gb Ethernet driver
  3. *
  4. * This file is available to you under your choice of the following two
  5. * licenses:
  6. *
  7. * License 1: GPLv2
  8. *
  9. * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  10. *
  11. * This file is free software; you may copy, redistribute and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation, either version 2 of the License, or (at
  14. * your option) any later version.
  15. *
  16. * This file is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. * This file incorporates work covered by the following copyright and
  25. * permission notice:
  26. * The Synopsys DWC ETHER XGMAC Software Driver and documentation
  27. * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
  28. * Inc. unless otherwise expressly agreed to in writing between Synopsys
  29. * and you.
  30. *
  31. * The Software IS NOT an item of Licensed Software or Licensed Product
  32. * under any End User Software License Agreement or Agreement for Licensed
  33. * Product with Synopsys or any supplement thereto. Permission is hereby
  34. * granted, free of charge, to any person obtaining a copy of this software
  35. * annotated with this license and the Software, to deal in the Software
  36. * without restriction, including without limitation the rights to use,
  37. * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  38. * of the Software, and to permit persons to whom the Software is furnished
  39. * to do so, subject to the following conditions:
  40. *
  41. * The above copyright notice and this permission notice shall be included
  42. * in all copies or substantial portions of the Software.
  43. *
  44. * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
  45. * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  46. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  47. * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
  48. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  49. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  50. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  51. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  52. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  53. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  54. * THE POSSIBILITY OF SUCH DAMAGE.
  55. *
  56. *
  57. * License 2: Modified BSD
  58. *
  59. * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
  60. * All rights reserved.
  61. *
  62. * Redistribution and use in source and binary forms, with or without
  63. * modification, are permitted provided that the following conditions are met:
  64. * * Redistributions of source code must retain the above copyright
  65. * notice, this list of conditions and the following disclaimer.
  66. * * Redistributions in binary form must reproduce the above copyright
  67. * notice, this list of conditions and the following disclaimer in the
  68. * documentation and/or other materials provided with the distribution.
  69. * * Neither the name of Advanced Micro Devices, Inc. nor the
  70. * names of its contributors may be used to endorse or promote products
  71. * derived from this software without specific prior written permission.
  72. *
  73. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  74. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  75. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  76. * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  77. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  78. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  79. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  80. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  81. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  82. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  83. *
  84. * This file incorporates work covered by the following copyright and
  85. * permission notice:
  86. * The Synopsys DWC ETHER XGMAC Software Driver and documentation
  87. * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
  88. * Inc. unless otherwise expressly agreed to in writing between Synopsys
  89. * and you.
  90. *
  91. * The Software IS NOT an item of Licensed Software or Licensed Product
  92. * under any End User Software License Agreement or Agreement for Licensed
  93. * Product with Synopsys or any supplement thereto. Permission is hereby
  94. * granted, free of charge, to any person obtaining a copy of this software
  95. * annotated with this license and the Software, to deal in the Software
  96. * without restriction, including without limitation the rights to use,
  97. * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  98. * of the Software, and to permit persons to whom the Software is furnished
  99. * to do so, subject to the following conditions:
  100. *
  101. * The above copyright notice and this permission notice shall be included
  102. * in all copies or substantial portions of the Software.
  103. *
  104. * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
  105. * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  106. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  107. * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
  108. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  109. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  110. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  111. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  112. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  113. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  114. * THE POSSIBILITY OF SUCH DAMAGE.
  115. */
  116. #include <linux/netdevice.h>
  117. #include <net/dcbnl.h>
  118. #include "xgbe.h"
  119. #include "xgbe-common.h"
  120. static int xgbe_dcb_ieee_getets(struct net_device *netdev,
  121. struct ieee_ets *ets)
  122. {
  123. struct xgbe_prv_data *pdata = netdev_priv(netdev);
  124. /* Set number of supported traffic classes */
  125. ets->ets_cap = pdata->hw_feat.tc_cnt;
  126. if (pdata->ets) {
  127. ets->cbs = pdata->ets->cbs;
  128. memcpy(ets->tc_tx_bw, pdata->ets->tc_tx_bw,
  129. sizeof(ets->tc_tx_bw));
  130. memcpy(ets->tc_tsa, pdata->ets->tc_tsa,
  131. sizeof(ets->tc_tsa));
  132. memcpy(ets->prio_tc, pdata->ets->prio_tc,
  133. sizeof(ets->prio_tc));
  134. }
  135. return 0;
  136. }
  137. static int xgbe_dcb_ieee_setets(struct net_device *netdev,
  138. struct ieee_ets *ets)
  139. {
  140. struct xgbe_prv_data *pdata = netdev_priv(netdev);
  141. unsigned int i, tc_ets, tc_ets_weight;
  142. u8 max_tc = 0;
  143. tc_ets = 0;
  144. tc_ets_weight = 0;
  145. for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
  146. netif_dbg(pdata, drv, netdev,
  147. "TC%u: tx_bw=%hhu, rx_bw=%hhu, tsa=%hhu\n", i,
  148. ets->tc_tx_bw[i], ets->tc_rx_bw[i],
  149. ets->tc_tsa[i]);
  150. netif_dbg(pdata, drv, netdev, "PRIO%u: TC=%hhu\n", i,
  151. ets->prio_tc[i]);
  152. max_tc = max_t(u8, max_tc, ets->prio_tc[i]);
  153. if ((ets->tc_tx_bw[i] || ets->tc_tsa[i]))
  154. max_tc = max_t(u8, max_tc, i);
  155. switch (ets->tc_tsa[i]) {
  156. case IEEE_8021QAZ_TSA_STRICT:
  157. break;
  158. case IEEE_8021QAZ_TSA_ETS:
  159. tc_ets = 1;
  160. tc_ets_weight += ets->tc_tx_bw[i];
  161. break;
  162. default:
  163. netif_err(pdata, drv, netdev,
  164. "unsupported TSA algorithm (%hhu)\n",
  165. ets->tc_tsa[i]);
  166. return -EINVAL;
  167. }
  168. }
  169. /* Check maximum traffic class requested */
  170. if (max_tc >= pdata->hw_feat.tc_cnt) {
  171. netif_err(pdata, drv, netdev,
  172. "exceeded number of supported traffic classes\n");
  173. return -EINVAL;
  174. }
  175. /* Weights must add up to 100% */
  176. if (tc_ets && (tc_ets_weight != 100)) {
  177. netif_err(pdata, drv, netdev,
  178. "sum of ETS algorithm weights is not 100 (%u)\n",
  179. tc_ets_weight);
  180. return -EINVAL;
  181. }
  182. if (!pdata->ets) {
  183. pdata->ets = devm_kzalloc(pdata->dev, sizeof(*pdata->ets),
  184. GFP_KERNEL);
  185. if (!pdata->ets)
  186. return -ENOMEM;
  187. }
  188. pdata->num_tcs = max_tc + 1;
  189. memcpy(pdata->ets, ets, sizeof(*pdata->ets));
  190. pdata->hw_if.config_dcb_tc(pdata);
  191. return 0;
  192. }
  193. static int xgbe_dcb_ieee_getpfc(struct net_device *netdev,
  194. struct ieee_pfc *pfc)
  195. {
  196. struct xgbe_prv_data *pdata = netdev_priv(netdev);
  197. /* Set number of supported PFC traffic classes */
  198. pfc->pfc_cap = pdata->hw_feat.tc_cnt;
  199. if (pdata->pfc) {
  200. pfc->pfc_en = pdata->pfc->pfc_en;
  201. pfc->mbc = pdata->pfc->mbc;
  202. pfc->delay = pdata->pfc->delay;
  203. }
  204. return 0;
  205. }
  206. static int xgbe_dcb_ieee_setpfc(struct net_device *netdev,
  207. struct ieee_pfc *pfc)
  208. {
  209. struct xgbe_prv_data *pdata = netdev_priv(netdev);
  210. netif_dbg(pdata, drv, netdev,
  211. "cap=%hhu, en=%#hhx, mbc=%hhu, delay=%hhu\n",
  212. pfc->pfc_cap, pfc->pfc_en, pfc->mbc, pfc->delay);
  213. /* Check PFC for supported number of traffic classes */
  214. if (pfc->pfc_en & ~((1 << pdata->hw_feat.tc_cnt) - 1)) {
  215. netif_err(pdata, drv, netdev,
  216. "PFC requested for unsupported traffic class\n");
  217. return -EINVAL;
  218. }
  219. if (!pdata->pfc) {
  220. pdata->pfc = devm_kzalloc(pdata->dev, sizeof(*pdata->pfc),
  221. GFP_KERNEL);
  222. if (!pdata->pfc)
  223. return -ENOMEM;
  224. }
  225. memcpy(pdata->pfc, pfc, sizeof(*pdata->pfc));
  226. pdata->hw_if.config_dcb_pfc(pdata);
  227. return 0;
  228. }
  229. static u8 xgbe_dcb_getdcbx(struct net_device *netdev)
  230. {
  231. return DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
  232. }
  233. static u8 xgbe_dcb_setdcbx(struct net_device *netdev, u8 dcbx)
  234. {
  235. struct xgbe_prv_data *pdata = netdev_priv(netdev);
  236. u8 support = xgbe_dcb_getdcbx(netdev);
  237. netif_dbg(pdata, drv, netdev, "DCBX=%#hhx\n", dcbx);
  238. if (dcbx & ~support)
  239. return 1;
  240. if ((dcbx & support) != support)
  241. return 1;
  242. return 0;
  243. }
  244. static const struct dcbnl_rtnl_ops xgbe_dcbnl_ops = {
  245. /* IEEE 802.1Qaz std */
  246. .ieee_getets = xgbe_dcb_ieee_getets,
  247. .ieee_setets = xgbe_dcb_ieee_setets,
  248. .ieee_getpfc = xgbe_dcb_ieee_getpfc,
  249. .ieee_setpfc = xgbe_dcb_ieee_setpfc,
  250. /* DCBX configuration */
  251. .getdcbx = xgbe_dcb_getdcbx,
  252. .setdcbx = xgbe_dcb_setdcbx,
  253. };
  254. const struct dcbnl_rtnl_ops *xgbe_get_dcbnl_ops(void)
  255. {
  256. return &xgbe_dcbnl_ops;
  257. }