habanalabs/gaudi: move scrubbing to late init

HW init is mostly about configuring registers. Therefore, it is better
to activate DMAs only in late init and afterwards.

Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
Oded Gabbay 2021-07-28 00:16:31 +03:00
parent f5137aff6d
commit 83f14f2f9b

View File

@ -1566,6 +1566,11 @@ static int gaudi_late_init(struct hl_device *hdev)
return rc;
}
/* Scrub both SRAM and DRAM */
rc = hdev->asic_funcs->scrub_device_mem(hdev, 0, 0);
if (rc)
goto disable_pci_access;
rc = gaudi_fetch_psoc_frequency(hdev);
if (rc) {
dev_err(hdev->dev, "Failed to fetch psoc frequency\n");
@ -4193,11 +4198,6 @@ static int gaudi_hw_init(struct hl_device *hdev)
goto disable_msi;
}
/* Scrub both SRAM and DRAM */
rc = hdev->asic_funcs->scrub_device_mem(hdev, 0, 0);
if (rc)
return rc;
/* Perform read from the device to flush all configuration */
RREG32(mmHW_STATE);