1 /* Broadcom NetXtreme-C/E network driver.
3 * Copyright (c) 2016-2017 Broadcom Limited
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
10 #include <linux/netdevice.h>
11 #include <linux/etherdevice.h>
12 #include <linux/rtnetlink.h>
13 #include <linux/jhash.h>
14 #include <net/pkt_cls.h>
19 #include "bnxt_devlink.h"
22 #ifdef CONFIG_BNXT_SRIOV
24 #define CFA_HANDLE_INVALID 0xffff
25 #define VF_IDX_INVALID 0xffff
27 static int hwrm_cfa_vfr_alloc(struct bnxt *bp, u16 vf_idx,
28 u16 *tx_cfa_action, u16 *rx_cfa_code)
30 struct hwrm_cfa_vfr_alloc_output *resp = bp->hwrm_cmd_resp_addr;
31 struct hwrm_cfa_vfr_alloc_input req = { 0 };
34 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_VFR_ALLOC, -1, -1);
35 req.vf_id = cpu_to_le16(vf_idx);
36 sprintf(req.vfr_name, "vfr%d", vf_idx);
38 mutex_lock(&bp->hwrm_cmd_lock);
39 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
41 *tx_cfa_action = le16_to_cpu(resp->tx_cfa_action);
42 *rx_cfa_code = le16_to_cpu(resp->rx_cfa_code);
43 netdev_dbg(bp->dev, "tx_cfa_action=0x%x, rx_cfa_code=0x%x",
44 *tx_cfa_action, *rx_cfa_code);
46 netdev_info(bp->dev, "%s error rc=%d", __func__, rc);
49 mutex_unlock(&bp->hwrm_cmd_lock);
53 static int hwrm_cfa_vfr_free(struct bnxt *bp, u16 vf_idx)
55 struct hwrm_cfa_vfr_free_input req = { 0 };
58 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_VFR_FREE, -1, -1);
59 sprintf(req.vfr_name, "vfr%d", vf_idx);
61 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
63 netdev_info(bp->dev, "%s error rc=%d", __func__, rc);
67 static int bnxt_hwrm_vfr_qcfg(struct bnxt *bp, struct bnxt_vf_rep *vf_rep,
70 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
71 struct hwrm_func_qcfg_input req = {0};
75 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
76 req.fid = cpu_to_le16(bp->pf.vf[vf_rep->vf_idx].fw_fid);
78 mutex_lock(&bp->hwrm_cmd_lock);
80 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
82 mtu = le16_to_cpu(resp->max_mtu_configured);
84 *max_mtu = BNXT_MAX_MTU;
88 mutex_unlock(&bp->hwrm_cmd_lock);
92 static int bnxt_vf_rep_open(struct net_device *dev)
94 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
95 struct bnxt *bp = vf_rep->bp;
97 /* Enable link and TX only if the parent PF is open. */
98 if (netif_running(bp->dev)) {
99 netif_carrier_on(dev);
100 netif_tx_start_all_queues(dev);
105 static int bnxt_vf_rep_close(struct net_device *dev)
107 netif_carrier_off(dev);
108 netif_tx_disable(dev);
113 static netdev_tx_t bnxt_vf_rep_xmit(struct sk_buff *skb,
114 struct net_device *dev)
116 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
117 int rc, len = skb->len;
120 dst_hold((struct dst_entry *)vf_rep->dst);
121 skb_dst_set(skb, (struct dst_entry *)vf_rep->dst);
122 skb->dev = vf_rep->dst->u.port_info.lower_dev;
124 rc = dev_queue_xmit(skb);
126 vf_rep->tx_stats.packets++;
127 vf_rep->tx_stats.bytes += len;
133 bnxt_vf_rep_get_stats64(struct net_device *dev,
134 struct rtnl_link_stats64 *stats)
136 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
138 stats->rx_packets = vf_rep->rx_stats.packets;
139 stats->rx_bytes = vf_rep->rx_stats.bytes;
140 stats->tx_packets = vf_rep->tx_stats.packets;
141 stats->tx_bytes = vf_rep->tx_stats.bytes;
144 static int bnxt_vf_rep_setup_tc_block_cb(enum tc_setup_type type,
148 struct bnxt_vf_rep *vf_rep = cb_priv;
149 struct bnxt *bp = vf_rep->bp;
150 int vf_fid = bp->pf.vf[vf_rep->vf_idx].fw_fid;
152 if (!bnxt_tc_flower_enabled(vf_rep->bp) ||
153 !tc_cls_can_offload_and_chain0(bp->dev, type_data))
157 case TC_SETUP_CLSFLOWER:
158 return bnxt_tc_setup_flower(bp, vf_fid, type_data);
164 static LIST_HEAD(bnxt_vf_block_cb_list);
166 static int bnxt_vf_rep_setup_tc(struct net_device *dev, enum tc_setup_type type,
169 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
173 return flow_block_cb_setup_simple(type_data,
174 &bnxt_vf_block_cb_list,
175 bnxt_vf_rep_setup_tc_block_cb,
176 vf_rep, vf_rep, true);
182 struct net_device *bnxt_get_vf_rep(struct bnxt *bp, u16 cfa_code)
186 if (cfa_code && bp->cfa_code_map && BNXT_PF(bp)) {
187 vf_idx = bp->cfa_code_map[cfa_code];
188 if (vf_idx != VF_IDX_INVALID)
189 return bp->vf_reps[vf_idx]->dev;
194 void bnxt_vf_rep_rx(struct bnxt *bp, struct sk_buff *skb)
196 struct bnxt_vf_rep *vf_rep = netdev_priv(skb->dev);
198 vf_rep->rx_stats.bytes += skb->len;
199 vf_rep->rx_stats.packets++;
201 netif_receive_skb(skb);
204 static int bnxt_vf_rep_get_phys_port_name(struct net_device *dev, char *buf,
207 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
208 struct pci_dev *pf_pdev = vf_rep->bp->pdev;
211 rc = snprintf(buf, len, "pf%dvf%d", PCI_FUNC(pf_pdev->devfn),
218 static void bnxt_vf_rep_get_drvinfo(struct net_device *dev,
219 struct ethtool_drvinfo *info)
221 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
222 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
225 static int bnxt_vf_rep_get_port_parent_id(struct net_device *dev,
226 struct netdev_phys_item_id *ppid)
228 struct bnxt_vf_rep *vf_rep = netdev_priv(dev);
230 /* as only PORT_PARENT_ID is supported currently use common code
231 * between PF and VF-rep for now.
233 return bnxt_get_port_parent_id(vf_rep->bp->dev, ppid);
236 static const struct ethtool_ops bnxt_vf_rep_ethtool_ops = {
237 .get_drvinfo = bnxt_vf_rep_get_drvinfo
240 static const struct net_device_ops bnxt_vf_rep_netdev_ops = {
241 .ndo_open = bnxt_vf_rep_open,
242 .ndo_stop = bnxt_vf_rep_close,
243 .ndo_start_xmit = bnxt_vf_rep_xmit,
244 .ndo_get_stats64 = bnxt_vf_rep_get_stats64,
245 .ndo_setup_tc = bnxt_vf_rep_setup_tc,
246 .ndo_get_port_parent_id = bnxt_vf_rep_get_port_parent_id,
247 .ndo_get_phys_port_name = bnxt_vf_rep_get_phys_port_name
250 bool bnxt_dev_is_vf_rep(struct net_device *dev)
252 return dev->netdev_ops == &bnxt_vf_rep_netdev_ops;
255 /* Called when the parent PF interface is closed:
256 * As the mode transition from SWITCHDEV to LEGACY
257 * happens under the rtnl_lock() this routine is safe
258 * under the rtnl_lock()
260 void bnxt_vf_reps_close(struct bnxt *bp)
262 struct bnxt_vf_rep *vf_rep;
265 if (bp->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
268 num_vfs = pci_num_vf(bp->pdev);
269 for (i = 0; i < num_vfs; i++) {
270 vf_rep = bp->vf_reps[i];
271 if (netif_running(vf_rep->dev))
272 bnxt_vf_rep_close(vf_rep->dev);
276 /* Called when the parent PF interface is opened (re-opened):
277 * As the mode transition from SWITCHDEV to LEGACY
278 * happen under the rtnl_lock() this routine is safe
279 * under the rtnl_lock()
281 void bnxt_vf_reps_open(struct bnxt *bp)
285 if (bp->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
288 for (i = 0; i < pci_num_vf(bp->pdev); i++)
289 bnxt_vf_rep_open(bp->vf_reps[i]->dev);
292 static void __bnxt_vf_reps_destroy(struct bnxt *bp)
294 u16 num_vfs = pci_num_vf(bp->pdev);
295 struct bnxt_vf_rep *vf_rep;
298 for (i = 0; i < num_vfs; i++) {
299 vf_rep = bp->vf_reps[i];
301 dst_release((struct dst_entry *)vf_rep->dst);
303 if (vf_rep->tx_cfa_action != CFA_HANDLE_INVALID)
304 hwrm_cfa_vfr_free(bp, vf_rep->vf_idx);
307 /* if register_netdev failed, then netdev_ops
308 * would have been set to NULL
310 if (vf_rep->dev->netdev_ops)
311 unregister_netdev(vf_rep->dev);
312 free_netdev(vf_rep->dev);
321 void bnxt_vf_reps_destroy(struct bnxt *bp)
325 if (bp->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
331 /* Ensure that parent PF's and VF-reps' RX/TX has been quiesced
332 * before proceeding with VF-rep cleanup.
335 if (netif_running(bp->dev)) {
336 bnxt_close_nic(bp, false, false);
339 /* un-publish cfa_code_map so that RX path can't see it anymore */
340 kfree(bp->cfa_code_map);
341 bp->cfa_code_map = NULL;
342 bp->eswitch_mode = DEVLINK_ESWITCH_MODE_LEGACY;
345 bnxt_open_nic(bp, false, false);
348 /* Need to call vf_reps_destroy() outside of rntl_lock
349 * as unregister_netdev takes rtnl_lock
351 __bnxt_vf_reps_destroy(bp);
354 /* Use the OUI of the PF's perm addr and report the same mac addr
355 * for the same VF-rep each time
357 static void bnxt_vf_rep_eth_addr_gen(u8 *src_mac, u16 vf_idx, u8 *mac)
361 ether_addr_copy(mac, src_mac);
363 addr = jhash(src_mac, ETH_ALEN, 0) + vf_idx;
364 mac[3] = (u8)(addr & 0xFF);
365 mac[4] = (u8)((addr >> 8) & 0xFF);
366 mac[5] = (u8)((addr >> 16) & 0xFF);
369 static void bnxt_vf_rep_netdev_init(struct bnxt *bp, struct bnxt_vf_rep *vf_rep,
370 struct net_device *dev)
372 struct net_device *pf_dev = bp->dev;
375 dev->netdev_ops = &bnxt_vf_rep_netdev_ops;
376 dev->ethtool_ops = &bnxt_vf_rep_ethtool_ops;
377 /* Just inherit all the featues of the parent PF as the VF-R
378 * uses the RX/TX rings of the parent PF
380 dev->hw_features = pf_dev->hw_features;
381 dev->gso_partial_features = pf_dev->gso_partial_features;
382 dev->vlan_features = pf_dev->vlan_features;
383 dev->hw_enc_features = pf_dev->hw_enc_features;
384 dev->features |= pf_dev->features;
385 bnxt_vf_rep_eth_addr_gen(bp->pf.mac_addr, vf_rep->vf_idx,
387 ether_addr_copy(dev->dev_addr, dev->perm_addr);
388 /* Set VF-Rep's max-mtu to the corresponding VF's max-mtu */
389 if (!bnxt_hwrm_vfr_qcfg(bp, vf_rep, &max_mtu))
390 dev->max_mtu = max_mtu;
391 dev->min_mtu = ETH_ZLEN;
394 static int bnxt_vf_reps_create(struct bnxt *bp)
396 u16 *cfa_code_map = NULL, num_vfs = pci_num_vf(bp->pdev);
397 struct bnxt_vf_rep *vf_rep;
398 struct net_device *dev;
401 if (!(bp->flags & BNXT_FLAG_DSN_VALID))
404 bp->vf_reps = kcalloc(num_vfs, sizeof(vf_rep), GFP_KERNEL);
408 /* storage for cfa_code to vf-idx mapping */
409 cfa_code_map = kmalloc_array(MAX_CFA_CODE, sizeof(*bp->cfa_code_map),
415 for (i = 0; i < MAX_CFA_CODE; i++)
416 cfa_code_map[i] = VF_IDX_INVALID;
418 for (i = 0; i < num_vfs; i++) {
419 dev = alloc_etherdev(sizeof(*vf_rep));
425 vf_rep = netdev_priv(dev);
426 bp->vf_reps[i] = vf_rep;
430 vf_rep->tx_cfa_action = CFA_HANDLE_INVALID;
432 /* get cfa handles from FW */
433 rc = hwrm_cfa_vfr_alloc(bp, vf_rep->vf_idx,
434 &vf_rep->tx_cfa_action,
435 &vf_rep->rx_cfa_code);
440 cfa_code_map[vf_rep->rx_cfa_code] = vf_rep->vf_idx;
442 vf_rep->dst = metadata_dst_alloc(0, METADATA_HW_PORT_MUX,
448 /* only cfa_action is needed to mux a packet while TXing */
449 vf_rep->dst->u.port_info.port_id = vf_rep->tx_cfa_action;
450 vf_rep->dst->u.port_info.lower_dev = bp->dev;
452 bnxt_vf_rep_netdev_init(bp, vf_rep, dev);
453 rc = register_netdev(dev);
455 /* no need for unregister_netdev in cleanup */
456 dev->netdev_ops = NULL;
461 /* publish cfa_code_map only after all VF-reps have been initialized */
462 bp->cfa_code_map = cfa_code_map;
463 bp->eswitch_mode = DEVLINK_ESWITCH_MODE_SWITCHDEV;
464 netif_keep_dst(bp->dev);
468 netdev_info(bp->dev, "%s error=%d", __func__, rc);
470 __bnxt_vf_reps_destroy(bp);
474 /* Devlink related routines */
475 int bnxt_dl_eswitch_mode_get(struct devlink *devlink, u16 *mode)
477 struct bnxt *bp = bnxt_get_bp_from_dl(devlink);
479 *mode = bp->eswitch_mode;
483 int bnxt_dl_eswitch_mode_set(struct devlink *devlink, u16 mode,
484 struct netlink_ext_ack *extack)
486 struct bnxt *bp = bnxt_get_bp_from_dl(devlink);
489 mutex_lock(&bp->sriov_lock);
490 if (bp->eswitch_mode == mode) {
491 netdev_info(bp->dev, "already in %s eswitch mode",
492 mode == DEVLINK_ESWITCH_MODE_LEGACY ?
493 "legacy" : "switchdev");
499 case DEVLINK_ESWITCH_MODE_LEGACY:
500 bnxt_vf_reps_destroy(bp);
503 case DEVLINK_ESWITCH_MODE_SWITCHDEV:
504 if (bp->hwrm_spec_code < 0x10803) {
505 netdev_warn(bp->dev, "FW does not support SRIOV E-Switch SWITCHDEV mode\n");
510 if (pci_num_vf(bp->pdev) == 0) {
511 netdev_info(bp->dev, "Enable VFs before setting switchdev mode");
515 rc = bnxt_vf_reps_create(bp);
523 mutex_unlock(&bp->sriov_lock);