From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8F3A5FED2D3 for ; Thu, 12 Mar 2026 05:14:04 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F2A0D10E955; Thu, 12 Mar 2026 05:14:03 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=nabladev.com header.i=@nabladev.com header.b="c3BBm4l2"; dkim-atps=neutral X-Greylist: delayed 499 seconds by postgrey-1.36 at gabe; Thu, 12 Mar 2026 05:14:03 UTC Received: from mx.nabladev.com (mx.nabladev.com [178.251.229.89]) by gabe.freedesktop.org (Postfix) with ESMTPS id 18FAB10E955 for ; Thu, 12 Mar 2026 05:14:03 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id E003A10A507; Thu, 12 Mar 2026 06:05:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nabladev.com; s=dkim; t=1773291941; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:content-language:in-reply-to:references; bh=LAFG04ceHNc7rsC3ZsFGGq8Jqrn9hxXlHeTD3T5rR8Q=; b=c3BBm4l2EMBi+om33TK54OGwQFYq0ZQCToMl4IdQBmw2nuHz6EtWHm1bZWheHF+o+4CbnB zTu+CXdjOMO62Hm2nK4hFFgvOJKhSFiQkFSb61zygKc2ESrYNpbRsCH+FyG+hWN7PxqgrG mCmyGGdrDgg6qa8AEg0JMgzoX8OC/RTs/lOQuo8HILkDz90bA3DIDywsRG/RS0Hs1ONPw4 yFPiFthg5azb7CecO5pufmk8seXGu3+UJ8ZCcC0Pn7GVw9+mTp3r6pSZze6eI+VEAPhjvM HpwtMnnE4/RTDN5Y7aDSzflJc1KqNRwanGU+Li1PjbRI/Vc7l+qo67dqa7I1nQ== Message-ID: <9f694b2d-44bc-46ad-8aa3-b464c2f0da13@nabladev.com> Date: Thu, 12 Mar 2026 06:05:34 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 0/2] drm: bridge: ti-sn65dsi83: Improve dual-link LVDS support To: Sudarshan Shetty , andrzej.hajda@intel.com, neil.armstrong@linaro.org, rfoss@kernel.org, Luca Ceresoli Cc: Laurent.pinchart@ideasonboard.com, jonas@kwiboo.se, jernej.skrabec@gmail.com, maarten.lankhorst@linux.intel.com, mripard@kernel.org, tzimmermann@suse.de, airlied@gmail.com, simona@ffwll.ch, robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org, valentin@compulab.co.il, philippe.schenker@toradex.com, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org References: <20260312043743.261475-1-tessolveupstream@gmail.com> Content-Language: en-US From: Marek Vasut In-Reply-To: <20260312043743.261475-1-tessolveupstream@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Last-TLS-Session-Version: TLSv1.3 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 3/12/26 5:37 AM, Sudarshan Shetty wrote: > Hi all, > > This patch series improves dual-link LVDS support in the SN65DSI83 > DSI-to-LVDS bridge driver. > > Currently the driver programs identical horizontal timing parameters > for both single-link and dual-link LVDS modes. According to TI > documentation, when operating in dual-link mode the horizontal timing > values must be divided by two before being programmed into the device. > Without this adjustment, some panels fail to light up or produce > corrupted output. > > TI also provides recommended register settings for dual-link LVDS > operation. This series adds support for an optional DT property > ti,dual-link-video-mode that enables the required configuration > in the driver. > > When the property is present, the driver applies the recommended > register settings and uses a simplified DSI video mode configuration > to ensure correct dual-link LVDS operation. > > Summary: > - Add DT binding for ti,dual-link-video-mode > - Add driver support to enable dual-link LVDS configuration > - Apply recommended register settings for dual-link operation > - Adjust DSI mode flags when dual-link mode is enabled > > Changes in v2: > - Introduce ti,dual-link-video-mode DT property > - Add DT binding documentation for the new property > - Update driver to read the DT property and apply dual-link > configuration conditionally > - Adjust DSI mode flags when dual-link video mode is enabled > - Update commit messages > > Thanks, > Anusha > > Sudarshan Shetty (2): > dt-bindings: display: bridge: ti,sn65dsi83: Add dual-link video mode > property > drm: bridge: ti-sn65dsi83: Add support for dual-link LVDS video mode > > .../bindings/display/bridge/ti,sn65dsi83.yaml | 9 ++++ > drivers/gpu/drm/bridge/ti-sn65dsi83.c | 52 +++++++++++++++++-- > 2 files changed, 57 insertions(+), 4 deletions(-) +CC Luca You might want to look at recently posted: [PATCH 2/3] drm/bridge: ti-sn65dsi83: halve horizontal syncs for dual LVDS output