From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 647A23446D4; Tue, 16 Dec 2025 11:36:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765885005; cv=none; b=iERNLFPauXJjlxWUnBzt6jIWNrHag4h3wnwG32bbnAWhSS54R3LkftI19qNWga3xJroTD49iWHaGkdyoclBoVnqFjpzoByuvR6/hXjZEZgp55UDNO7Y6c+rZk+zkWnyQSwGT3asHI7GYKv4wQOXLeoQUOtY7EM0FbnitHN1nhRs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765885005; c=relaxed/simple; bh=kCKW34gDmhalBs2s3LClwFDIawL3lhsQzm+JCDfjw1w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=YcFIGY/wr3X0gT/1I9rth5YBikP8qGu7PnS8lsvgTb7lrU0ar0trtPgNWY8FJjg4dbDNYrxdav79ciUDDKwqHsV2gOqp3w2X0TUFLKUfzcwWZCzZIaiyOr7dphW6QiWdEGNUvj+kbSlkRwFi7aNwK2UEOR/w8o7/1sPNwprD55M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=o5NtlS5+; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="o5NtlS5+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D0644C4CEF1; Tue, 16 Dec 2025 11:36:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1765885005; bh=kCKW34gDmhalBs2s3LClwFDIawL3lhsQzm+JCDfjw1w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=o5NtlS5+/DKSqUMQVaj0J0sjMnXPte160PVEO78EBf9cxpqqZ5pk0yoAdVBETKK+h 5ODAGbzR+9ix2Bb4VvC72XQHKw4fEJCkyrOwgTRFt/SBeRD/dPRAi+oPQJ9Uv0wdLh 9MDO7nxMuh/jLziB7/7LHVzks4TsDovO1NpAW+Qk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Guido=20G=C3=BCnther?= , Neil Armstrong , Dmitry Baryshkov , Sasha Levin Subject: [PATCH 6.17 010/507] drm/panel: visionox-rm69299: Fix clock frequency for SHIFT6mq Date: Tue, 16 Dec 2025 12:07:31 +0100 Message-ID: <20251216111345.907823892@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251216111345.522190956@linuxfoundation.org> References: <20251216111345.522190956@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guido Günther [ Upstream commit d298062312724606855294503acebc7ee55ffbca ] Make the clock frequency match what the sdm845 downstream kernel uses. Otherwise the panel stays black. Fixes: 783334f366b18 ("drm/panel: visionox-rm69299: support the variant found in the SHIFT6mq") Signed-off-by: Guido Günther Reviewed-by: Neil Armstrong Reviewed-by: Dmitry Baryshkov Signed-off-by: Neil Armstrong Link: https://lore.kernel.org/r/20250910-shift6mq-panel-v3-1-a7729911afb9@sigxcpu.org Signed-off-by: Sasha Levin --- drivers/gpu/drm/panel/panel-visionox-rm69299.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/panel/panel-visionox-rm69299.c b/drivers/gpu/drm/panel/panel-visionox-rm69299.c index 909c280eab1fb..5491d601681cf 100644 --- a/drivers/gpu/drm/panel/panel-visionox-rm69299.c +++ b/drivers/gpu/drm/panel/panel-visionox-rm69299.c @@ -247,7 +247,7 @@ static const struct drm_display_mode visionox_rm69299_1080x2248_60hz = { }; static const struct drm_display_mode visionox_rm69299_1080x2160_60hz = { - .clock = 158695, + .clock = (2160 + 8 + 4 + 4) * (1080 + 26 + 2 + 36) * 60 / 1000, .hdisplay = 1080, .hsync_start = 1080 + 26, .hsync_end = 1080 + 26 + 2, -- 2.51.0