nfp: nsp: add support for versions command
authorJakub Kicinski <jakub.kicinski@netronome.com>
Thu, 31 Jan 2019 18:50:45 +0000 (10:50 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Feb 2019 23:30:31 +0000 (15:30 -0800)
Retrieve the FW versions with the new command.

Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp.c
drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp.h

index ce1577bbbd2af1f046fb59a8458e463814a5ee6a..a9d53df0070c4371add0483a0ef0b7f99d8a8fcf 100644 (file)
@@ -7,6 +7,7 @@
  *         Jason McMullan <jason.mcmullan@netronome.com>
  */
 
+#include <asm/unaligned.h>
 #include <linux/bitfield.h>
 #include <linux/delay.h>
 #include <linux/firmware.h>
 
 #define NFP_HWINFO_LOOKUP_SIZE GENMASK(11, 0)
 
+#define NFP_VERSIONS_SIZE      GENMASK(11, 0)
+#define NFP_VERSIONS_CNT_OFF   0
+#define NFP_VERSIONS_BSP_OFF   2
+#define NFP_VERSIONS_CPLD_OFF  6
+#define NFP_VERSIONS_APP_OFF   10
+#define NFP_VERSIONS_BUNDLE_OFF        14
+#define NFP_VERSIONS_UNDI_OFF  18
+#define NFP_VERSIONS_NCSI_OFF  22
+#define NFP_VERSIONS_CFGR_OFF  26
+
 enum nfp_nsp_cmd {
        SPCODE_NOOP             = 0, /* No operation */
        SPCODE_SOFT_RESET       = 1, /* Soft reset the NFP */
@@ -77,6 +88,7 @@ enum nfp_nsp_cmd {
        SPCODE_NSP_IDENTIFY     = 13, /* Read NSP version */
        SPCODE_FW_STORED        = 16, /* If no FW loaded, load flash app FW */
        SPCODE_HWINFO_LOOKUP    = 17, /* Lookup HWinfo with overwrites etc. */
+       SPCODE_VERSIONS         = 21, /* Report FW versions */
 };
 
 static const struct {
@@ -711,3 +723,52 @@ int nfp_nsp_hwinfo_lookup(struct nfp_nsp *state, void *buf, unsigned int size)
 
        return 0;
 }
+
+int nfp_nsp_versions(struct nfp_nsp *state, void *buf, unsigned int size)
+{
+       struct nfp_nsp_command_buf_arg versions = {
+               {
+                       .code           = SPCODE_VERSIONS,
+                       .option         = min_t(u32, size, NFP_VERSIONS_SIZE),
+               },
+               .out_buf        = buf,
+               .out_size       = min_t(u32, size, NFP_VERSIONS_SIZE),
+       };
+
+       return nfp_nsp_command_buf(state, &versions);
+}
+
+const char *nfp_nsp_versions_get(enum nfp_nsp_versions id, bool flash,
+                                const u8 *buf, unsigned int size)
+{
+       static const u32 id2off[] = {
+               [NFP_VERSIONS_BSP] =    NFP_VERSIONS_BSP_OFF,
+               [NFP_VERSIONS_CPLD] =   NFP_VERSIONS_CPLD_OFF,
+               [NFP_VERSIONS_APP] =    NFP_VERSIONS_APP_OFF,
+               [NFP_VERSIONS_BUNDLE] = NFP_VERSIONS_BUNDLE_OFF,
+               [NFP_VERSIONS_UNDI] =   NFP_VERSIONS_UNDI_OFF,
+               [NFP_VERSIONS_NCSI] =   NFP_VERSIONS_NCSI_OFF,
+               [NFP_VERSIONS_CFGR] =   NFP_VERSIONS_CFGR_OFF,
+       };
+       unsigned int field, buf_field_cnt, buf_off;
+
+       if (id >= ARRAY_SIZE(id2off) || !id2off[id])
+               return ERR_PTR(-EINVAL);
+
+       field = id * 2 + flash;
+
+       buf_field_cnt = get_unaligned_le16(buf);
+       if (buf_field_cnt <= field)
+               return ERR_PTR(-ENOENT);
+
+       buf_off = get_unaligned_le16(buf + id2off[id] + flash * 2);
+       if (!buf_off)
+               return ERR_PTR(-ENOENT);
+
+       if (buf_off >= size)
+               return ERR_PTR(-EINVAL);
+       if (strnlen(&buf[buf_off], size - buf_off) == size - buf_off)
+               return ERR_PTR(-EINVAL);
+
+       return (const char *)&buf[buf_off];
+}
index ff33ac54097a78ccc5e33d6421ac157ceff2174b..246e213f1514fb301f3f5ead24de759b0dbb8b0c 100644 (file)
@@ -38,6 +38,11 @@ static inline bool nfp_nsp_has_hwinfo_lookup(struct nfp_nsp *state)
        return nfp_nsp_get_abi_ver_minor(state) > 24;
 }
 
+static inline bool nfp_nsp_has_versions(struct nfp_nsp *state)
+{
+       return nfp_nsp_get_abi_ver_minor(state) > 27;
+}
+
 enum nfp_eth_interface {
        NFP_INTERFACE_NONE      = 0,
        NFP_INTERFACE_SFP       = 1,
@@ -208,4 +213,19 @@ enum nfp_nsp_sensor_id {
 int nfp_hwmon_read_sensor(struct nfp_cpp *cpp, enum nfp_nsp_sensor_id id,
                          long *val);
 
+#define NFP_NSP_VERSION_BUFSZ  1024 /* reasonable size, not in the ABI */
+
+enum nfp_nsp_versions {
+       NFP_VERSIONS_BSP,
+       NFP_VERSIONS_CPLD,
+       NFP_VERSIONS_APP,
+       NFP_VERSIONS_BUNDLE,
+       NFP_VERSIONS_UNDI,
+       NFP_VERSIONS_NCSI,
+       NFP_VERSIONS_CFGR,
+};
+
+int nfp_nsp_versions(struct nfp_nsp *state, void *buf, unsigned int size);
+const char *nfp_nsp_versions_get(enum nfp_nsp_versions id, bool flash,
+                                const u8 *buf, unsigned int size);
 #endif