Skip to content

Commit 2fc3060

Browse files
author
Yash Gupta
committed
FROMLIST: drm/msm: enable separate_gpu_kms by default
On targets with multiple display subsystems, such as SA8775P, the GPU binds to the first display subsystem that probes. This implicit binding prevents subsequent display subsystems from probing successfully, breaking multi-display support. Enable separate_gpu_kms by default to decouple GPU and display subsystem probing. This allows each display subsystem to initialize independently, ensuring that all display subsystems are probed. Link: https://lore.kernel.org/all/20260223-seperate_gpu_kms-v1-1-e8231e7f1685@oss.qualcomm.com/ Signed-off-by: Mahadevan P <mahadevan.p@oss.qualcomm.com> Signed-off-by: Yash Gupta <quic_ygupt@quicinc.com>
1 parent faac849 commit 2fc3060

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/msm/msm_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static bool modeset = true;
5454
MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
5555
module_param(modeset, bool, 0600);
5656

57-
static bool separate_gpu_kms;
57+
static bool separate_gpu_kms = true;
5858
MODULE_PARM_DESC(separate_gpu_drm, "Use separate DRM device for the GPU (0=single DRM device for both GPU and display (default), 1=two DRM devices)");
5959
module_param(separate_gpu_kms, bool, 0400);
6060

0 commit comments

Comments
 (0)