All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: Skip init fbdev if virtual_display is enabled
@ 2022-05-20  7:59 Danijel Slivka
  2022-05-20 13:29 ` Alex Deucher
  0 siblings, 1 reply; 6+ messages in thread
From: Danijel Slivka @ 2022-05-20  7:59 UTC (permalink / raw)
  To: amd-gfx; +Cc: Danijel Slivka

In case virtaul_display is enabled there is no hw DCE so
need to skip setting up fbdev.

Signed-off-by: Danijel Slivka <danijel.slivka@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 3b9dc1803be9..8d03eec49eef 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -2095,6 +2095,7 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
 	 * 2. don't init fbdev if there are no connectors
 	 */
 	if (adev->mode_info.mode_config_initialized &&
+	    !adev->enable_virtual_display &&
 	    !list_empty(&adev_to_drm(adev)->mode_config.connector_list)) {
 		/* select 8 bpp console on low vram cards */
 		if (adev->gmc.real_vram_size <= (32*1024*1024))
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-05-20 14:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-20  7:59 [PATCH] drm/amdgpu: Skip init fbdev if virtual_display is enabled Danijel Slivka
2022-05-20 13:29 ` Alex Deucher
2022-05-20 14:12   ` Slivka, Danijel
2022-05-20 14:32     ` Alex Deucher
2022-05-20 14:49       ` Slivka, Danijel
2022-05-20 14:52         ` Alex Deucher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.