|
@@ -68,6 +68,22 @@ struct cudbg_entity_hdr *cudbg_get_entity_hdr(void *outbuf, int i)
|
|
|
(sizeof(struct cudbg_entity_hdr) * (i - 1)));
|
|
|
}
|
|
|
|
|
|
+static int cudbg_read_vpd_reg(struct adapter *padap, u32 addr, u32 len,
|
|
|
+ void *dest)
|
|
|
+{
|
|
|
+ int vaddr, rc;
|
|
|
+
|
|
|
+ vaddr = t4_eeprom_ptov(addr, padap->pf, EEPROMPFSIZE);
|
|
|
+ if (vaddr < 0)
|
|
|
+ return vaddr;
|
|
|
+
|
|
|
+ rc = pci_read_vpd(padap->pdev, vaddr, len, dest);
|
|
|
+ if (rc < 0)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
int cudbg_collect_reg_dump(struct cudbg_init *pdbg_init,
|
|
|
struct cudbg_buffer *dbg_buff,
|
|
|
struct cudbg_error *cudbg_err)
|
|
@@ -1289,8 +1305,47 @@ int cudbg_collect_vpd_data(struct cudbg_init *pdbg_init,
|
|
|
{
|
|
|
struct adapter *padap = pdbg_init->adap;
|
|
|
struct cudbg_buffer temp_buff = { 0 };
|
|
|
+ char vpd_str[CUDBG_VPD_VER_LEN + 1];
|
|
|
+ u32 scfg_vers, vpd_vers, fw_vers;
|
|
|
struct cudbg_vpd_data *vpd_data;
|
|
|
- int rc;
|
|
|
+ struct vpd_params vpd = { 0 };
|
|
|
+ int rc, ret;
|
|
|
+
|
|
|
+ rc = t4_get_raw_vpd_params(padap, &vpd);
|
|
|
+ if (rc)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ rc = t4_get_fw_version(padap, &fw_vers);
|
|
|
+ if (rc)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ /* Serial Configuration Version is located beyond the PF's vpd size.
|
|
|
+ * Temporarily give access to entire EEPROM to get it.
|
|
|
+ */
|
|
|
+ rc = pci_set_vpd_size(padap->pdev, EEPROMVSIZE);
|
|
|
+ if (rc < 0)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ ret = cudbg_read_vpd_reg(padap, CUDBG_SCFG_VER_ADDR, CUDBG_SCFG_VER_LEN,
|
|
|
+ &scfg_vers);
|
|
|
+
|
|
|
+ /* Restore back to original PF's vpd size */
|
|
|
+ rc = pci_set_vpd_size(padap->pdev, CUDBG_VPD_PF_SIZE);
|
|
|
+ if (rc < 0)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ rc = cudbg_read_vpd_reg(padap, CUDBG_VPD_VER_ADDR, CUDBG_VPD_VER_LEN,
|
|
|
+ vpd_str);
|
|
|
+ if (rc)
|
|
|
+ return rc;
|
|
|
+
|
|
|
+ vpd_str[CUDBG_VPD_VER_LEN] = '\0';
|
|
|
+ rc = kstrtouint(vpd_str, 0, &vpd_vers);
|
|
|
+ if (rc)
|
|
|
+ return rc;
|
|
|
|
|
|
rc = cudbg_get_buff(dbg_buff, sizeof(struct cudbg_vpd_data),
|
|
|
&temp_buff);
|
|
@@ -1298,16 +1353,16 @@ int cudbg_collect_vpd_data(struct cudbg_init *pdbg_init,
|
|
|
return rc;
|
|
|
|
|
|
vpd_data = (struct cudbg_vpd_data *)temp_buff.data;
|
|
|
- memcpy(vpd_data->sn, padap->params.vpd.sn, SERNUM_LEN + 1);
|
|
|
- memcpy(vpd_data->bn, padap->params.vpd.pn, PN_LEN + 1);
|
|
|
- memcpy(vpd_data->na, padap->params.vpd.na, MACADDR_LEN + 1);
|
|
|
- memcpy(vpd_data->mn, padap->params.vpd.id, ID_LEN + 1);
|
|
|
- vpd_data->scfg_vers = padap->params.scfg_vers;
|
|
|
- vpd_data->vpd_vers = padap->params.vpd_vers;
|
|
|
- vpd_data->fw_major = FW_HDR_FW_VER_MAJOR_G(padap->params.fw_vers);
|
|
|
- vpd_data->fw_minor = FW_HDR_FW_VER_MINOR_G(padap->params.fw_vers);
|
|
|
- vpd_data->fw_micro = FW_HDR_FW_VER_MICRO_G(padap->params.fw_vers);
|
|
|
- vpd_data->fw_build = FW_HDR_FW_VER_BUILD_G(padap->params.fw_vers);
|
|
|
+ memcpy(vpd_data->sn, vpd.sn, SERNUM_LEN + 1);
|
|
|
+ memcpy(vpd_data->bn, vpd.pn, PN_LEN + 1);
|
|
|
+ memcpy(vpd_data->na, vpd.na, MACADDR_LEN + 1);
|
|
|
+ memcpy(vpd_data->mn, vpd.id, ID_LEN + 1);
|
|
|
+ vpd_data->scfg_vers = scfg_vers;
|
|
|
+ vpd_data->vpd_vers = vpd_vers;
|
|
|
+ vpd_data->fw_major = FW_HDR_FW_VER_MAJOR_G(fw_vers);
|
|
|
+ vpd_data->fw_minor = FW_HDR_FW_VER_MINOR_G(fw_vers);
|
|
|
+ vpd_data->fw_micro = FW_HDR_FW_VER_MICRO_G(fw_vers);
|
|
|
+ vpd_data->fw_build = FW_HDR_FW_VER_BUILD_G(fw_vers);
|
|
|
cudbg_write_and_release_buff(&temp_buff, dbg_buff);
|
|
|
return rc;
|
|
|
}
|