[v3] drm/i915: Disable RPG during live selftest
Poosa, Karthik
karthik.poosa at intel.com
Thu Mar 20 07:44:54 UTC 2025
On 19-03-2025 16:42, Anirban, Sk wrote:
>
>
> On 19-03-2025 12:40, Poosa, Karthik wrote:
>>
>> On 10-03-2025 20:58, Sk Anirban wrote:
>>> From: Badal Nilawar <badal.nilawar at intel.com>
>>>
>>> The Forcewake timeout issue has been observed on Gen 12.0 and above.
>>> To address this, disable Render Power-Gating (RPG) during live
>>> self-tests
>>> for these generations. The temporary workaround 'drm/i915/mtl: do not
>>> enable render power-gating on MTL' disables RPG globally, which is
>>> unnecessary since the issues were only seen during self-tests.
>>>
>>> v2: take runtime pm wakeref
>>>
>>> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
>>> Fixes: 25e7976db86b ("drm/i915/mtl: do not enable render
>>> power-gating on MTL")
>>> Cc: Rodrigo Vivi <rodrigo.vivi at intel.com>
>>> Cc: Andi Shyti <andi.shyti at intel.com>
>>> Cc: Andrzej Hajda <andrzej.hajda at intel.com>
>>> Signed-off-by: Badal Nilawar <badal.nilawar at intel.com>
>>> Signed-off-by: Sk Anirban <sk.anirban at intel.com>
>>> ---
>>> drivers/gpu/drm/i915/gt/intel_rc6.c | 19
>>> ++++---------------
>>> .../gpu/drm/i915/selftests/i915_selftest.c | 18 ++++++++++++++++++
>>> 2 files changed, 22 insertions(+), 15 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/gt/intel_rc6.c
>>> b/drivers/gpu/drm/i915/gt/intel_rc6.c
>>> index 9378d5901c49..9ca42589da4d 100644
>>> --- a/drivers/gpu/drm/i915/gt/intel_rc6.c
>>> +++ b/drivers/gpu/drm/i915/gt/intel_rc6.c
>>> @@ -117,21 +117,10 @@ static void gen11_rc6_enable(struct intel_rc6
>>> *rc6)
>>> GEN6_RC_CTL_RC6_ENABLE |
>>> GEN6_RC_CTL_EI_MODE(1);
>>> - /*
>>> - * BSpec 52698 - Render powergating must be off.
>>> - * FIXME BSpec is outdated, disabling powergating for MTL is just
>>> - * temporary wa and should be removed after fixing real cause
>>> - * of forcewake timeouts.
>>> - */
>>> - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74)))
>>> - pg_enable =
>>> - GEN9_MEDIA_PG_ENABLE |
>>> - GEN11_MEDIA_SAMPLER_PG_ENABLE;
>>> - else
>>> - pg_enable =
>>> - GEN9_RENDER_PG_ENABLE |
>>> - GEN9_MEDIA_PG_ENABLE |
>>> - GEN11_MEDIA_SAMPLER_PG_ENABLE;
>>> + pg_enable =
>>> + GEN9_RENDER_PG_ENABLE |
>>> + GEN9_MEDIA_PG_ENABLE |
>>> + GEN11_MEDIA_SAMPLER_PG_ENABLE;
>>> if (GRAPHICS_VER(gt->i915) >= 12 && !IS_DG1(gt->i915)) {
>>> for (i = 0; i < I915_MAX_VCS; i++)
>>> diff --git a/drivers/gpu/drm/i915/selftests/i915_selftest.c
>>> b/drivers/gpu/drm/i915/selftests/i915_selftest.c
>>> index fee76c1d2f45..889281819c5b 100644
>>> --- a/drivers/gpu/drm/i915/selftests/i915_selftest.c
>>> +++ b/drivers/gpu/drm/i915/selftests/i915_selftest.c
>>> @@ -23,7 +23,9 @@
>>> #include <linux/random.h>
>>> +#include "gt/intel_gt.h"
>>> #include "gt/intel_gt_pm.h"
>>> +#include "gt/intel_gt_regs.h"
>>> #include "gt/uc/intel_gsc_fw.h"
>>> #include "i915_driver.h"
>>> @@ -253,11 +255,27 @@ int i915_mock_selftests(void)
>>> int i915_live_selftests(struct pci_dev *pdev)
>>> {
>>> struct drm_i915_private *i915 = pdev_to_i915(pdev);
>>> + struct intel_uncore *uncore = &i915->uncore;
>>> int err;
>>> + u32 pg_enable;
>>> + intel_wakeref_t wakeref;
>>> if (!i915_selftest.live)
>>> return 0;
>>> + /*
>>> + * FIXME Disable render powergating, this is temporary wa and
>>> should be removed
>>> + * after fixing real cause of forcewake timeouts.
>>> + */
>>> + with_intel_runtime_pm(uncore->rpm, wakeref) {
>>> + if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 00),
>>> IP_VER(12, 74))) {
>>> + pg_enable = intel_uncore_read(uncore, GEN9_PG_ENABLE);
>>> + if (pg_enable & GEN9_RENDER_PG_ENABLE)
>>> + intel_uncore_write_fw(uncore, GEN9_PG_ENABLE,
>>> + pg_enable & ~GEN9_RENDER_PG_ENABLE);
>>> + }
>>> + }
>>> +
>>
>> Hi Anirban,
>>
>> where does PG enable happening after selftests complete ?
> Hi Karthik,
> After the self-test, a Driver-FLR call is made to reset the GPU and
> display components, and this call originates from the DRM subsystem.
> Here is the call trace:
> [ +0.000002] intel_uncore_fini_mmio+0x8a/0x200 [i915]
> [ +0.000272] drm_managed_release+0xa9/0x170
> [ +0.000008] devm_drm_dev_init_release+0x69/0x90
> [ +0.000005] devm_action_release+0x12/0x30
> [ +0.000004] release_nodes+0x54/0x90
> [ +0.000005] devres_release_all+0x9b/0xe0
> [ +0.000007] device_unbind_cleanup+0x12/0x80
> [ +0.000005] really_probe+0x1c5/0x3b0
> [ +0.000005] __driver_probe_device+0x8a/0x180
> [ +0.000004] driver_probe_device+0x23/0xd0
> [ +0.000004] __driver_attach+0x113/0x230
>
> Thanks,
> Anirban
>
LGTM then.
Reviewed-by: Karthik Poosa <karthik.poosa at intel.com>
>>> __wait_gsc_proxy_completed(i915);
>>> __wait_gsc_huc_load_completed(i915);
>
More information about the Intel-gfx
mailing list