]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
devlink: Introduce PCI PF port flavour and port attribute
authorParav Pandit <parav@mellanox.com>
Tue, 9 Jul 2019 04:17:37 +0000 (23:17 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 9 Jul 2019 19:02:13 +0000 (12:02 -0700)
In an eswitch, PCI PF may have port which is normally represented
using a representor netdevice.
To have better visibility of eswitch port, its association with
PF and a representor netdevice, introduce a PCI PF port
flavour and port attriute.

When devlink port flavour is PCI PF, fill up PCI PF attributes of the
port.

Extend port name creation using PCI PF number on best effort basis.
So that vendor drivers can skip defining their own scheme.

$ devlink port show
pci/0000:05:00.0/0: type eth netdev eth0 flavour pcipf pfnum 0

Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/devlink.h
include/uapi/linux/devlink.h
net/core/devlink.c

index 4538c80fe293f52a53d82dd3978f028f13425f8e..97cef896e4d06fc102c97e052ef4f081a44bf8a6 100644 (file)
@@ -46,6 +46,10 @@ struct devlink_port_phys_attrs {
        u32 split_subport_number;
 };
 
+struct devlink_port_pci_pf_attrs {
+       u16 pf; /* Associated PCI PF for this port. */
+};
+
 struct devlink_port_attrs {
        u8 set:1,
           split:1,
@@ -54,6 +58,7 @@ struct devlink_port_attrs {
        struct netdev_phys_item_id switch_id;
        union {
                struct devlink_port_phys_attrs phys;
+               struct devlink_port_pci_pf_attrs pci_pf;
        };
 };
 
@@ -599,6 +604,9 @@ void devlink_port_attrs_set(struct devlink_port *devlink_port,
                            u32 split_subport_number,
                            const unsigned char *switch_id,
                            unsigned char switch_id_len);
+void devlink_port_attrs_pci_pf_set(struct devlink_port *devlink_port,
+                                  const unsigned char *switch_id,
+                                  unsigned char switch_id_len, u16 pf);
 int devlink_sb_register(struct devlink *devlink, unsigned int sb_index,
                        u32 size, u16 ingress_pools_count,
                        u16 egress_pools_count, u16 ingress_tc_count,
index 5287b42c181f9ddb7eb73feec00c5a154bbe7f70..f7323884c3fe1e50e1a50ba0605989d3a15db390 100644 (file)
@@ -169,6 +169,10 @@ enum devlink_port_flavour {
        DEVLINK_PORT_FLAVOUR_DSA, /* Distributed switch architecture
                                   * interconnect port.
                                   */
+       DEVLINK_PORT_FLAVOUR_PCI_PF, /* Represents eswitch port for
+                                     * the PCI PF. It is an internal
+                                     * port that faces the PCI PF.
+                                     */
 };
 
 enum devlink_param_cmode {
@@ -337,6 +341,7 @@ enum devlink_attr {
        DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE,  /* u64 */
        DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL, /* u64 */
 
+       DEVLINK_ATTR_PORT_PCI_PF_NUMBER,        /* u16 */
        /* add new attributes above here, update the policy in devlink.c */
 
        __DEVLINK_ATTR_MAX,
index a9c4e5d8a99c50612f3dcc0e9ffc697bd9366012..d362652a5cc7dffb7483c20e295ae9b8891101ac 100644 (file)
@@ -515,6 +515,11 @@ static int devlink_nl_port_attrs_put(struct sk_buff *msg,
                return 0;
        if (nla_put_u16(msg, DEVLINK_ATTR_PORT_FLAVOUR, attrs->flavour))
                return -EMSGSIZE;
+       if (devlink_port->attrs.flavour == DEVLINK_PORT_FLAVOUR_PCI_PF) {
+               if (nla_put_u16(msg, DEVLINK_ATTR_PORT_PCI_PF_NUMBER,
+                               attrs->pci_pf.pf))
+                       return -EMSGSIZE;
+       }
        if (devlink_port->attrs.flavour != DEVLINK_PORT_FLAVOUR_PHYSICAL &&
            devlink_port->attrs.flavour != DEVLINK_PORT_FLAVOUR_CPU &&
            devlink_port->attrs.flavour != DEVLINK_PORT_FLAVOUR_DSA)
@@ -5801,6 +5806,32 @@ void devlink_port_attrs_set(struct devlink_port *devlink_port,
 }
 EXPORT_SYMBOL_GPL(devlink_port_attrs_set);
 
+/**
+ *     devlink_port_attrs_pci_pf_set - Set PCI PF port attributes
+ *
+ *     @devlink_port: devlink port
+ *     @pf: associated PF for the devlink port instance
+ *     @switch_id: if the port is part of switch, this is buffer with ID,
+ *                 otherwise this is NULL
+ *     @switch_id_len: length of the switch_id buffer
+ */
+void devlink_port_attrs_pci_pf_set(struct devlink_port *devlink_port,
+                                  const unsigned char *switch_id,
+                                  unsigned char switch_id_len, u16 pf)
+{
+       struct devlink_port_attrs *attrs = &devlink_port->attrs;
+       int ret;
+
+       ret = __devlink_port_attrs_set(devlink_port,
+                                      DEVLINK_PORT_FLAVOUR_PCI_PF,
+                                      switch_id, switch_id_len);
+       if (ret)
+               return;
+
+       attrs->pci_pf.pf = pf;
+}
+EXPORT_SYMBOL_GPL(devlink_port_attrs_pci_pf_set);
+
 static int __devlink_port_phys_port_name_get(struct devlink_port *devlink_port,
                                             char *name, size_t len)
 {
@@ -5826,6 +5857,9 @@ static int __devlink_port_phys_port_name_get(struct devlink_port *devlink_port,
                 */
                WARN_ON(1);
                return -EINVAL;
+       case DEVLINK_PORT_FLAVOUR_PCI_PF:
+               n = snprintf(name, len, "pf%u", attrs->pci_pf.pf);
+               break;
        }
 
        if (n >= len)