Summary: | Heavy screen flickering in OpenGL apps on R9 390 | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | DRI | Reporter: | Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0x9b> | ||||||
Component: | DRM/Radeon | Assignee: | Default DRI bug account <dri-devel> | ||||||
Status: | RESOLVED MOVED | QA Contact: | |||||||
Severity: | normal | ||||||||
Priority: | medium | CC: | 0xe2.0x9a.0x9b, vedran | ||||||
Version: | unspecified | ||||||||
Hardware: | Other | ||||||||
OS: | Linux (All) | ||||||||
Whiteboard: | |||||||||
i915 platform: | i915 features: | ||||||||
Attachments: |
|
Description
Jan Ziak (http://atom-symbol.net)
2016-06-02 14:51:49 UTC
Confirmed by lilleman on #radeon: https://people.freedesktop.org/~cbrill/dri-log/?channel=radeon&date=2016-06-17 The flickering disappears after switching from X11 to Linux console (Ctrl+Alt+F1) and back (Ctrl+Alt+F7). mclk transitions 150MHz <-> 1500MHz no longer cause monitor flickering after that. The code in the Linux kernel executed during the switch to Linux console and back fixes the issue, we just need to pinpoint the code lines responsible for the fix. Please attach your xorg log and dmesg output. What resolution and refresh rate are you using on your monitor? Also are you using radeon or amdgpu? Created attachment 125424 [details]
dmesg (linux kernel git 2016-jul-29 with custom patches)
Created attachment 125425 [details]
Xorg.0.log (xorg-server-1.17.4, no custom patches)
(In reply to Alex Deucher from comment #3) > Please attach your xorg log and dmesg output. Upstream Linux kernel does not support variable mclk on R9 390. I enabled variable mclk by patching some code in drivers/gpu/drm/amd/amdgpu/ (mostly ci_dpm.c). dmesg output contains some logging messages I added to my copy of Linux kernel source code. > What resolution and refresh rate are you using on your monitor? 1920x1080 60Hz > Also are you using radeon or amdgpu? Currently amdgpu.ko, radeon.ko in the past. (In reply to Jan Ziak from comment #6) > (In reply to Alex Deucher from comment #3) > > Please attach your xorg log and dmesg output. > > Upstream Linux kernel does not support variable mclk on R9 390. I enabled > variable mclk by patching some code in drivers/gpu/drm/amd/amdgpu/ (mostly > ci_dpm.c). What patch(es) did you use? > > dmesg output contains some logging messages I added to my copy of Linux > kernel source code. > > > What resolution and refresh rate are you using on your monitor? > > 1920x1080 60Hz > > > Also are you using radeon or amdgpu? > > Currently amdgpu.ko, radeon.ko in the past. (In reply to Alex Deucher from comment #7) > (In reply to Jan Ziak from comment #6) > > (In reply to Alex Deucher from comment #3) > > > Please attach your xorg log and dmesg output. > > > > Upstream Linux kernel does not support variable mclk on R9 390. I enabled > > variable mclk by patching some code in drivers/gpu/drm/amd/amdgpu/ (mostly > > ci_dpm.c). > > What patch(es) did you use? I added a function based on ci_dpm_force_state_mclk() in ci_dpm.c. mask is 0x3. ---- static int ci_dpm_force_state_mclk_mask(struct amdgpu_device *adev, u32 mask) { struct ci_power_info *pi = ci_get_pi(adev); if (!pi->mclk_dpm_key_disabled) { PPSMC_Result smc_result = amdgpu_ci_send_msg_to_smc_with_parameter(adev, PPSMC_MSG_MCLKDPM_SetEnabledMask, mask); printk("[atomsymbol] %s:%d: mask=0x%X, ok=%d\n", __FUNCTION__, __LINE__, mask, smc_result == PPSMC_Result_OK); if (smc_result != PPSMC_Result_OK) return -EINVAL; } return 0; } ---- /sys/class/drm/card?/device/power_dpm_force_performance_level is set to "auto". -- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/drm/amd/issues/720. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.