From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) (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 183E13FBEC9; Thu, 9 Jul 2026 09:17:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.167.242.64 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783588631; cv=none; b=Cn4+ceOPJ1Fzv8Vs0XRzWPzAiYQxZoLw5e2nM5yAjGzC4LCZmIV6jWYecwhyVt82mkl1THtkq5kNNEO1yk1CPK595DGmuXTWbuNW8qzGg9FVLArxN0kDTGR9bTeyuy/ExvE0n4rpLYK7JGAhcA2+61ruNdECAmHgKtbPjNRnr94= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783588631; c=relaxed/simple; bh=cfGBqMoCZZdYkPc6rSEc1mvwIyP87FxZlSbhBAt/oNQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=IVcXrkLfBR7cTi8vCrDkTtNZUyX+mpS3+7N8AUyYlWd+67IGyfvtOz8N1TpaqoUE9eDtDeQ0BUynzx2KR0ZBFVHTlvIRaFfMFHlT+bLQD6EF5l/aJYdRnMdr8ihCx4n7eNNcydiM+eLCzP0uGp1sFddfcD5AmIpyi7pw6ivXyqg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=ideasonboard.com; spf=pass smtp.mailfrom=ideasonboard.com; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b=Hqm/fPSl; arc=none smtp.client-ip=213.167.242.64 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=ideasonboard.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ideasonboard.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Hqm/fPSl" Received: from killaraus.ideasonboard.com (2001-14ba-70f3-e800--a06.rev.dnainternet.fi [IPv6:2001:14ba:70f3:e800::a06]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9BAD1448; Thu, 9 Jul 2026 11:16:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1783588576; bh=cfGBqMoCZZdYkPc6rSEc1mvwIyP87FxZlSbhBAt/oNQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Hqm/fPSlAfZsUvKK92jwDnCAZ07Q3Oxpgg8qhILk74jlNvqVNnAmkTk4yGnMXtdvP GXYk7GXo5GvCaleUvd7n6bfkVuFL+c0vd+Kj73+C3mqdEj2kQzlLJFuaq6GQr74q/a CgCBkLxJZvpn3xH/LpOGZb72cYmFDCVV4bdfDuDc= Date: Thu, 9 Jul 2026 12:17:05 +0300 From: Laurent Pinchart To: Alexander Stein Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Wojciech Dubowik , Andrzej Hajda , Neil Armstrong , Robert Foss , Jonas Karlman , Jernej Skrabec , Luca Ceresoli , David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Marek Vasut , devicetree@vger.kernel.org Subject: Re: [PATCH 1/2] dt-bindings: display: sn65dsi83: Add reverse lanes property Message-ID: <20260709091705.GA547298@killaraus.ideasonboard.com> References: <20260707070244.230546-1-wojciech.dubowik@mt.com> <20260707070244.230546-2-wojciech.dubowik@mt.com> <8332433.DvuYhMxLoT@steina-w> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <8332433.DvuYhMxLoT@steina-w> On Thu, Jul 09, 2026 at 10:33:36AM +0200, Alexander Stein wrote: > Am Dienstag, 7. Juli 2026, 09:02:42 CEST schrieb Wojciech Dubowik: > > From: Wojciech Dubowik > > > > Add reverse lvds lanes property for endpoints. It reverses > > the data-lanes order i.e. <4 3 2 1> instead of default > > <1 2 3 4>. > > Wouldn't it be more reasonable to parse the data-lanes property and check > for the order instead of introducing a new property? I think so. That's the intended usage of data-lanes, the property is meant to convey the order of lanes in addition to the count. Otherwise we would have used a data-lanes-count property instead. > > Signed-off-by: Wojciech Dubowik > > --- > > .../devicetree/bindings/display/bridge/ti,sn65dsi83.yaml | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml b/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml > > index e69b6343a8eb..44483e808af9 100644 > > --- a/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml > > +++ b/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml > > @@ -115,6 +115,10 @@ $defs: > > enum: [100, 200] > > default: 200 > > > > + ti,lvds-reverse-lanes: > > + description: Reverse the order of LVDS lanes. > > + type: boolean > > + > > ti,lvds-vod-swing-clock-microvolt: > > description: LVDS diferential output voltage for clock > > lanes in microvolts. -- Regards, Laurent Pinchart