gpu: nvgpu: split ecc support per GPU HW unit

To enable ecc interrupts early during nvgpu_finalize_poweron, ecc
support has to be enabled early. ecc support was being initialized
together for GR, LTC, PMU, FB units late in the poweron sequence.

Move the ecc init for each unit to respective unit's init functions.
And separate out the hal ecc functions from GR ecc unit to
respective hal units.

JIRA NVGPU-4336

Change-Id: I2c42fb6ba3192dece00be61411c64a56ce16740a
Signed-off-by: Sagar Kamble <skamble@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2239153
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Sagar Kamble
2019-11-12 21:53:05 +05:30
committed by Alex Waterman
parent 89518f3740
commit daf5475f50
44 changed files with 1033 additions and 706 deletions

View File

@@ -121,6 +121,7 @@ int test_fifo_init_support(struct unit_module *m, struct gk20a *g, void *args)
*/
g->ops.userd.setup_sw = stub_userd_setup_sw;
#endif
g->ops.ecc.ecc_init_support(g);
g->ops.mm.init_mm_support(g);
err = nvgpu_fifo_init_support(g);