https://bugzilla.kernel.org/show_bug.cgi?id=209225

--- Comment #6 from Arthur Borsboom ([email protected]) ---
I have applied and tested the patch.
Unfortunately it did not resolve the problem.

Apparently the ASSERT(0) in this piece of code triggering the oops.

----------------------

drivers/gpu/drm/amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c
rn_clk_mgr_helper_populate_bw_params

        /* Find lowest DPM, FCLK is filled in reverse order*/

        for (i = PP_SMU_NUM_FCLK_DPM_LEVELS - 1; i >= 0; i--) {
                if (clock_table->FClocks[i].Freq != 0 &&
clock_table->FClocks[i].Vol != 0) {
                        j = i;
                        break;
                }
        }

        if (j == -1) {
                /* clock table is all 0s, just use our own hardcode */
                ASSERT(0); 
                return;
        }

----------------------

-- 
You are receiving this mail because:
You are watching the assignee of the bug.
_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to