8e4290c8fd2c38131b92c37b7dba6ca172a8d045
[dpdk.git] / drivers / net / qede / qede_eth_if.c
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #include "qede_ethdev.h"
10
11 static int
12 qed_start_vport(struct ecore_dev *edev, struct qed_start_vport_params *p_params)
13 {
14         int rc, i;
15
16         for_each_hwfn(edev, i) {
17                 struct ecore_hwfn *p_hwfn = &edev->hwfns[i];
18                 u8 tx_switching = 0;
19                 struct ecore_sp_vport_start_params start = { 0 };
20
21                 start.tpa_mode = p_params->gro_enable ? ECORE_TPA_MODE_GRO :
22                     ECORE_TPA_MODE_NONE;
23                 start.remove_inner_vlan = p_params->remove_inner_vlan;
24                 start.tx_switching = tx_switching;
25                 start.only_untagged = false;    /* untagged only */
26                 start.drop_ttl0 = p_params->drop_ttl0;
27                 start.concrete_fid = p_hwfn->hw_info.concrete_fid;
28                 start.opaque_fid = p_hwfn->hw_info.opaque_fid;
29                 start.concrete_fid = p_hwfn->hw_info.concrete_fid;
30                 start.handle_ptp_pkts = p_params->handle_ptp_pkts;
31                 start.vport_id = p_params->vport_id;
32                 start.max_buffers_per_cqe = 16; /* TODO-is this right */
33                 start.mtu = p_params->mtu;
34                 /* @DPDK - Disable FW placement */
35                 start.zero_placement_offset = 1;
36
37                 rc = ecore_sp_vport_start(p_hwfn, &start);
38                 if (rc) {
39                         DP_ERR(edev, "Failed to start VPORT\n");
40                         return rc;
41                 }
42
43                 DP_VERBOSE(edev, ECORE_MSG_SPQ,
44                            "Started V-PORT %d with MTU %d\n",
45                            p_params->vport_id, p_params->mtu);
46         }
47
48         ecore_reset_vport_stats(edev);
49
50         return 0;
51 }
52
53 static int qed_stop_vport(struct ecore_dev *edev, uint8_t vport_id)
54 {
55         int rc, i;
56
57         for_each_hwfn(edev, i) {
58                 struct ecore_hwfn *p_hwfn = &edev->hwfns[i];
59                 rc = ecore_sp_vport_stop(p_hwfn,
60                                          p_hwfn->hw_info.opaque_fid, vport_id);
61
62                 if (rc) {
63                         DP_ERR(edev, "Failed to stop VPORT\n");
64                         return rc;
65                 }
66         }
67
68         return 0;
69 }
70
71 bool qed_update_rss_parm_cmt(struct ecore_dev *edev, uint16_t *p_tbl)
72 {
73         uint16_t max = 0, k;
74         bool rss_mode = 0; /* disable */
75         int divisor;
76
77         /* Find largest entry, since it's possible RSS needs to
78          * be disabled [in case only 1 queue per-hwfn]
79          */
80         for (k = 0; k < ECORE_RSS_IND_TABLE_SIZE; k++)
81                 max = (max > p_tbl[k]) ?  max : p_tbl[k];
82
83         /* Either fix RSS values or disable RSS */
84         if (edev->num_hwfns < max + 1) {
85                 divisor = (max + edev->num_hwfns - 1) / edev->num_hwfns;
86                 DP_VERBOSE(edev, ECORE_MSG_SPQ,
87                            "CMT - fixing RSS values (modulo %02x)\n",
88                            divisor);
89                 for (k = 0; k < ECORE_RSS_IND_TABLE_SIZE; k++)
90                         p_tbl[k] = p_tbl[k] % divisor;
91
92                 rss_mode = 1;
93         }
94
95         return rss_mode;
96 }
97
98 static int
99 qed_update_vport(struct ecore_dev *edev, struct qed_update_vport_params *params)
100 {
101         struct ecore_sp_vport_update_params sp_params;
102         struct ecore_rss_params sp_rss_params;
103         int rc, i;
104
105         memset(&sp_params, 0, sizeof(sp_params));
106         memset(&sp_rss_params, 0, sizeof(sp_rss_params));
107
108         /* Translate protocol params into sp params */
109         sp_params.vport_id = params->vport_id;
110         sp_params.update_vport_active_rx_flg = params->update_vport_active_flg;
111         sp_params.update_vport_active_tx_flg = params->update_vport_active_flg;
112         sp_params.vport_active_rx_flg = params->vport_active_flg;
113         sp_params.vport_active_tx_flg = params->vport_active_flg;
114         sp_params.update_inner_vlan_removal_flg =
115             params->update_inner_vlan_removal_flg;
116         sp_params.inner_vlan_removal_flg = params->inner_vlan_removal_flg;
117         sp_params.update_tx_switching_flg = params->update_tx_switching_flg;
118         sp_params.tx_switching_flg = params->tx_switching_flg;
119         sp_params.accept_any_vlan = params->accept_any_vlan;
120         sp_params.update_accept_any_vlan_flg =
121             params->update_accept_any_vlan_flg;
122         sp_params.mtu = params->mtu;
123
124         for_each_hwfn(edev, i) {
125                 struct ecore_hwfn *p_hwfn = &edev->hwfns[i];
126
127                 sp_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
128                 rc = ecore_sp_vport_update(p_hwfn, &sp_params,
129                                            ECORE_SPQ_MODE_EBLOCK, NULL);
130                 if (rc) {
131                         DP_ERR(edev, "Failed to update VPORT\n");
132                         return rc;
133                 }
134
135                 DP_VERBOSE(edev, ECORE_MSG_SPQ,
136                            "Updated V-PORT %d: active_flag %d [update %d]\n",
137                            params->vport_id, params->vport_active_flg,
138                            params->update_vport_active_flg);
139         }
140
141         return 0;
142 }
143
144 static int
145 qed_start_rxq(struct ecore_dev *edev,
146               uint8_t rss_num,
147               struct ecore_queue_start_common_params *p_params,
148               uint16_t bd_max_bytes,
149               dma_addr_t bd_chain_phys_addr,
150               dma_addr_t cqe_pbl_addr,
151               uint16_t cqe_pbl_size,
152               struct ecore_rxq_start_ret_params *ret_params)
153 {
154         struct ecore_hwfn *p_hwfn;
155         int rc, hwfn_index;
156
157         hwfn_index = rss_num % edev->num_hwfns;
158         p_hwfn = &edev->hwfns[hwfn_index];
159
160         p_params->queue_id = p_params->queue_id / edev->num_hwfns;
161         p_params->stats_id = p_params->vport_id;
162
163         rc = ecore_eth_rx_queue_start(p_hwfn,
164                                       p_hwfn->hw_info.opaque_fid,
165                                       p_params,
166                                       bd_max_bytes,
167                                       bd_chain_phys_addr,
168                                       cqe_pbl_addr,
169                                       cqe_pbl_size,
170                                       ret_params);
171
172         if (rc) {
173                 DP_ERR(edev, "Failed to start RXQ#%d\n", p_params->queue_id);
174                 return rc;
175         }
176
177         DP_VERBOSE(edev, ECORE_MSG_SPQ,
178                    "Started RX-Q %d [rss_num %d] on V-PORT %d and SB %d\n",
179                    p_params->queue_id, rss_num, p_params->vport_id,
180                    p_params->sb);
181
182         return 0;
183 }
184
185 static int
186 qed_stop_rxq(struct ecore_dev *edev, uint8_t rss_id, void *handle)
187 {
188         int rc, hwfn_index;
189         struct ecore_hwfn *p_hwfn;
190
191         hwfn_index = rss_id % edev->num_hwfns;
192         p_hwfn = &edev->hwfns[hwfn_index];
193
194         rc = ecore_eth_rx_queue_stop(p_hwfn, handle, true, false);
195         if (rc) {
196                 DP_ERR(edev, "Failed to stop RXQ#%02x\n", rss_id);
197                 return rc;
198         }
199
200         return 0;
201 }
202
203 static int
204 qed_start_txq(struct ecore_dev *edev,
205               uint8_t rss_num,
206               struct ecore_queue_start_common_params *p_params,
207               dma_addr_t pbl_addr,
208               uint16_t pbl_size,
209               struct ecore_txq_start_ret_params *ret_params)
210 {
211         struct ecore_hwfn *p_hwfn;
212         int rc, hwfn_index;
213
214         hwfn_index = rss_num % edev->num_hwfns;
215         p_hwfn = &edev->hwfns[hwfn_index];
216
217         p_params->queue_id = p_params->queue_id / edev->num_hwfns;
218         p_params->stats_id = p_params->vport_id;
219
220         rc = ecore_eth_tx_queue_start(p_hwfn,
221                                       p_hwfn->hw_info.opaque_fid,
222                                       p_params, 0 /* tc */,
223                                       pbl_addr, pbl_size,
224                                       ret_params);
225
226         if (rc) {
227                 DP_ERR(edev, "Failed to start TXQ#%d\n", p_params->queue_id);
228                 return rc;
229         }
230
231         DP_VERBOSE(edev, ECORE_MSG_SPQ,
232                    "Started TX-Q %d [rss_num %d] on V-PORT %d and SB %d\n",
233                    p_params->queue_id, rss_num, p_params->vport_id,
234                    p_params->sb);
235
236         return 0;
237 }
238
239 static int
240 qed_stop_txq(struct ecore_dev *edev, uint8_t rss_id, void *handle)
241 {
242         struct ecore_hwfn *p_hwfn;
243         int rc, hwfn_index;
244
245         hwfn_index = rss_id % edev->num_hwfns;
246         p_hwfn = &edev->hwfns[hwfn_index];
247
248         rc = ecore_eth_tx_queue_stop(p_hwfn, handle);
249         if (rc) {
250                 DP_ERR(edev, "Failed to stop TXQ#%02x\n", rss_id);
251                 return rc;
252         }
253
254         return 0;
255 }
256
257 static int
258 qed_fp_cqe_completion(struct ecore_dev *edev,
259                       uint8_t rss_id, struct eth_slow_path_rx_cqe *cqe)
260 {
261         return ecore_eth_cqe_completion(&edev->hwfns[rss_id % edev->num_hwfns],
262                                         cqe);
263 }
264
265 static int qed_fastpath_stop(struct ecore_dev *edev)
266 {
267         ecore_hw_stop_fastpath(edev);
268
269         return 0;
270 }
271
272 static void qed_fastpath_start(struct ecore_dev *edev)
273 {
274         struct ecore_hwfn *p_hwfn;
275         int i;
276
277         for_each_hwfn(edev, i) {
278                 p_hwfn = &edev->hwfns[i];
279                 ecore_hw_start_fastpath(p_hwfn);
280         }
281 }
282
283 static void
284 qed_get_vport_stats(struct ecore_dev *edev, struct ecore_eth_stats *stats)
285 {
286         ecore_get_vport_stats(edev, stats);
287 }
288
289 int qed_configure_filter_rx_mode(struct rte_eth_dev *eth_dev,
290                                  enum qed_filter_rx_mode_type type)
291 {
292         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
293         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
294         struct ecore_filter_accept_flags flags;
295
296         memset(&flags, 0, sizeof(flags));
297
298         flags.update_rx_mode_config = 1;
299         flags.update_tx_mode_config = 1;
300         flags.rx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
301                                         ECORE_ACCEPT_MCAST_MATCHED |
302                                         ECORE_ACCEPT_BCAST;
303
304         flags.tx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
305                                  ECORE_ACCEPT_MCAST_MATCHED |
306                                  ECORE_ACCEPT_BCAST;
307
308         if (type == QED_FILTER_RX_MODE_TYPE_PROMISC) {
309                 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
310                 if (IS_VF(edev)) {
311                         flags.tx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
312                         DP_INFO(edev, "Enabling Tx unmatched flag for VF\n");
313                 }
314         } else if (type == QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC) {
315                 flags.rx_accept_filter |= ECORE_ACCEPT_MCAST_UNMATCHED;
316         } else if (type == (QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC |
317                             QED_FILTER_RX_MODE_TYPE_PROMISC)) {
318                 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED |
319                                           ECORE_ACCEPT_MCAST_UNMATCHED;
320         }
321
322         return ecore_filter_accept_cmd(edev, 0, flags, false, false,
323                                        ECORE_SPQ_MODE_CB, NULL);
324 }
325
326 static const struct qed_eth_ops qed_eth_ops_pass = {
327         INIT_STRUCT_FIELD(common, &qed_common_ops_pass),
328         INIT_STRUCT_FIELD(fill_dev_info, &qed_fill_eth_dev_info),
329         INIT_STRUCT_FIELD(vport_start, &qed_start_vport),
330         INIT_STRUCT_FIELD(vport_stop, &qed_stop_vport),
331         INIT_STRUCT_FIELD(vport_update, &qed_update_vport),
332         INIT_STRUCT_FIELD(q_rx_start, &qed_start_rxq),
333         INIT_STRUCT_FIELD(q_tx_start, &qed_start_txq),
334         INIT_STRUCT_FIELD(q_rx_stop, &qed_stop_rxq),
335         INIT_STRUCT_FIELD(q_tx_stop, &qed_stop_txq),
336         INIT_STRUCT_FIELD(eth_cqe_completion, &qed_fp_cqe_completion),
337         INIT_STRUCT_FIELD(fastpath_stop, &qed_fastpath_stop),
338         INIT_STRUCT_FIELD(fastpath_start, &qed_fastpath_start),
339         INIT_STRUCT_FIELD(get_vport_stats, &qed_get_vport_stats),
340 };
341
342 const struct qed_eth_ops *qed_get_eth_ops(void)
343 {
344         return &qed_eth_ops_pass;
345 }