Message ID | 20250217222431.82522-1-danila@jiaxyga.com (mailing list archive) |
---|---|
Headers | show |
Series | Add and enable the panel | expand |
On Tue, 18 Feb 2025 01:24:27 +0300, Danila Tikhonov wrote: > This patch series adds support for the Visionox RM692E5 panel, which is > used on the Nothing Phone (1) and then adds it to the DTS. > > Before integrating the panel into the DTS, we update the DSI code to > allow bits-per-component (bpc) values of 10 and 12, since the Visionox > RM692E5 panel operates at 10 bpc. > > [...] Applied, thanks! [3/4] drm/msm/dsi: Allow values of 10 and 12 for bits per component https://gitlab.freedesktop.org/lumag/msm/-/commit/b0e71c2637d1 Best regards,
Hi, On Tue, 18 Feb 2025 01:24:27 +0300, Danila Tikhonov wrote: > This patch series adds support for the Visionox RM692E5 panel, which is > used on the Nothing Phone (1) and then adds it to the DTS. > > Before integrating the panel into the DTS, we update the DSI code to > allow bits-per-component (bpc) values of 10 and 12, since the Visionox > RM692E5 panel operates at 10 bpc. > > [...] Thanks, Applied to https://gitlab.freedesktop.org/drm/misc/kernel.git (drm-misc-next) [1/4] dt-bindings: display: panel: Add Visionox RM692E5 https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/383c772f23869df7a31dea333ec92c9e442431d8 [2/4] drm/panel: Add Visionox RM692E5 panel driver https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/7cb3274341bfa5977f3c90503b632986a82705fa
This patch series adds support for the Visionox RM692E5 panel, which is used on the Nothing Phone (1) and then adds it to the DTS. Before integrating the panel into the DTS, we update the DSI code to allow bits-per-component (bpc) values of 10 and 12, since the Visionox RM692E5 panel operates at 10 bpc. This has been tested and does not cause any problems (corruptions, artifacts, etc.) Changes in v2: - Patch 1: Add Reviewed-by tag from (Rob Herring (Arm)). - Patch 2: Remove extra braces in the for loop of the *_get_modes() function and use ret in the *_prepare() function. (Neil Armstrong) - Patch 3: Use switch-case to check the bits-per-component value instead of removing the guard entirely. (Dmitry Baryshkov & Marijn Suijten) - Patch 3: Add Reviewed-by tag from Dmitry Baryshkov. - Patch 4: Remove the zero from the panel label and remove the display property in the SimpleFB node. (Konrad Dybcio) - Patch 4: Add Reviewed-by tag from Konrad Dybcio. - Link to v1: https://lore.kernel.org/all/20250203181436.87785-1-danila@jiaxyga.com/ To: Neil Armstrong <neil.armstrong@linaro.org> To: Jessica Zhang <quic_jesszhan@quicinc.com> To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> To: Maxime Ripard <mripard@kernel.org> To: Thomas Zimmermann <tzimmermann@suse.de> To: David Airlie <airlied@gmail.com> To: Simona Vetter <simona@ffwll.ch> To: Rob Herring <robh@kernel.org> To: Krzysztof Kozlowski <krzk+dt@kernel.org> To: Conor Dooley <conor+dt@kernel.org> To: Bjorn Andersson <andersson@kernel.org> To: Konrad Dybcio <konradybcio@kernel.org> To: Rob Clark <robdclark@gmail.com> To: Abhinav Kumar <quic_abhinavk@quicinc.com> To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> To: Sean Paul <sean@poorly.run> To: Marijn Suijten <marijn.suijten@somainline.org> To: Jonathan Marek <jonathan@marek.ca> To: Eugene Lepshy <fekz115@gmail.com> Cc: dri-devel@lists.freedesktop.org Cc: devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: linux-arm-msm@vger.kernel.org Cc: freedreno@lists.freedesktop.org Cc: linux@mainlining.org Cc: ~postmarketos/upstreaming@lists.sr.ht Signed-off-by: Danila Tikhonov <danila@jiaxyga.com> Danila Tikhonov (1): dt-bindings: display: panel: Add Visionox RM692E5 Eugene Lepshy (3): drm/panel: Add Visionox RM692E5 panel driver drm/msm/dsi: Allow values of 10 and 12 for bits per component arm64: dts: qcom: sm7325-nothing-spacewar: Enable panel and GPU .../display/panel/visionox,rm692e5.yaml | 77 +++ .../boot/dts/qcom/sm7325-nothing-spacewar.dts | 51 +- drivers/gpu/drm/msm/dsi/dsi_host.c | 18 +- drivers/gpu/drm/panel/Kconfig | 10 + drivers/gpu/drm/panel/Makefile | 1 + .../gpu/drm/panel/panel-visionox-rm692e5.c | 442 ++++++++++++++++++ 6 files changed, 594 insertions(+), 5 deletions(-) create mode 100644 Documentation/devicetree/bindings/display/panel/visionox,rm692e5.yaml create mode 100644 drivers/gpu/drm/panel/panel-visionox-rm692e5.c