WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / ethernet / freescale / dpaa2 / dpaa2-eth-dcb.c
blob84de0644168da6e476068d3a2f9e6bcc6c13c730
1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2 /* Copyright 2020 NXP */
4 #include "dpaa2-eth.h"
6 static int dpaa2_eth_dcbnl_ieee_getpfc(struct net_device *net_dev,
7 struct ieee_pfc *pfc)
9 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
11 if (!(priv->link_state.options & DPNI_LINK_OPT_PFC_PAUSE))
12 return 0;
14 memcpy(pfc, &priv->pfc, sizeof(priv->pfc));
15 pfc->pfc_cap = dpaa2_eth_tc_count(priv);
17 return 0;
20 static inline bool dpaa2_eth_is_prio_enabled(u8 pfc_en, u8 tc)
22 return !!(pfc_en & (1 << tc));
25 static int dpaa2_eth_set_pfc_cn(struct dpaa2_eth_priv *priv, u8 pfc_en)
27 struct dpni_congestion_notification_cfg cfg = {0};
28 int i, err;
30 cfg.notification_mode = DPNI_CONG_OPT_FLOW_CONTROL;
31 cfg.units = DPNI_CONGESTION_UNIT_FRAMES;
32 cfg.message_iova = 0ULL;
33 cfg.message_ctx = 0ULL;
35 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
36 if (dpaa2_eth_is_prio_enabled(pfc_en, i)) {
37 cfg.threshold_entry = DPAA2_ETH_CN_THRESH_ENTRY(priv);
38 cfg.threshold_exit = DPAA2_ETH_CN_THRESH_EXIT(priv);
39 } else {
40 /* For priorities not set in the pfc_en mask, we leave
41 * the congestion thresholds at zero, which effectively
42 * disables generation of PFC frames for them
44 cfg.threshold_entry = 0;
45 cfg.threshold_exit = 0;
48 err = dpni_set_congestion_notification(priv->mc_io, 0,
49 priv->mc_token,
50 DPNI_QUEUE_RX, i, &cfg);
51 if (err) {
52 netdev_err(priv->net_dev,
53 "dpni_set_congestion_notification failed\n");
54 return err;
58 return 0;
61 static int dpaa2_eth_dcbnl_ieee_setpfc(struct net_device *net_dev,
62 struct ieee_pfc *pfc)
64 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
65 struct dpni_link_cfg link_cfg = {0};
66 bool tx_pause;
67 int err;
69 if (pfc->mbc || pfc->delay)
70 return -EOPNOTSUPP;
72 /* If same PFC enabled mask, nothing to do */
73 if (priv->pfc.pfc_en == pfc->pfc_en)
74 return 0;
76 /* We allow PFC configuration even if it won't have any effect until
77 * general pause frames are enabled
79 tx_pause = dpaa2_eth_tx_pause_enabled(priv->link_state.options);
80 if (!dpaa2_eth_rx_pause_enabled(priv->link_state.options) || !tx_pause)
81 netdev_warn(net_dev, "Pause support must be enabled in order for PFC to work!\n");
83 link_cfg.rate = priv->link_state.rate;
84 link_cfg.options = priv->link_state.options;
85 if (pfc->pfc_en)
86 link_cfg.options |= DPNI_LINK_OPT_PFC_PAUSE;
87 else
88 link_cfg.options &= ~DPNI_LINK_OPT_PFC_PAUSE;
89 err = dpni_set_link_cfg(priv->mc_io, 0, priv->mc_token, &link_cfg);
90 if (err) {
91 netdev_err(net_dev, "dpni_set_link_cfg failed\n");
92 return err;
95 /* Configure congestion notifications for the enabled priorities */
96 err = dpaa2_eth_set_pfc_cn(priv, pfc->pfc_en);
97 if (err)
98 return err;
100 memcpy(&priv->pfc, pfc, sizeof(priv->pfc));
101 priv->pfc_enabled = !!pfc->pfc_en;
103 dpaa2_eth_set_rx_taildrop(priv, tx_pause, priv->pfc_enabled);
105 return 0;
108 static u8 dpaa2_eth_dcbnl_getdcbx(struct net_device *net_dev)
110 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
112 return priv->dcbx_mode;
115 static u8 dpaa2_eth_dcbnl_setdcbx(struct net_device *net_dev, u8 mode)
117 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
119 return (mode != (priv->dcbx_mode)) ? 1 : 0;
122 static u8 dpaa2_eth_dcbnl_getcap(struct net_device *net_dev, int capid, u8 *cap)
124 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
126 switch (capid) {
127 case DCB_CAP_ATTR_PFC:
128 *cap = true;
129 break;
130 case DCB_CAP_ATTR_PFC_TCS:
131 *cap = 1 << (dpaa2_eth_tc_count(priv) - 1);
132 break;
133 case DCB_CAP_ATTR_DCBX:
134 *cap = priv->dcbx_mode;
135 break;
136 default:
137 *cap = false;
138 break;
141 return 0;
144 const struct dcbnl_rtnl_ops dpaa2_eth_dcbnl_ops = {
145 .ieee_getpfc = dpaa2_eth_dcbnl_ieee_getpfc,
146 .ieee_setpfc = dpaa2_eth_dcbnl_ieee_setpfc,
147 .getdcbx = dpaa2_eth_dcbnl_getdcbx,
148 .setdcbx = dpaa2_eth_dcbnl_setdcbx,
149 .getcap = dpaa2_eth_dcbnl_getcap,