* [PATCH v3 0/3] Add Shikra (QCM2390) display support
@ 2026-06-05 10:18 Nabige Aala
2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Nabige Aala @ 2026-06-05 10:18 UTC (permalink / raw)
To: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang,
Sean Paul, Marijn Suijten, David Airlie, Simona Vetter,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan,
Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon,
Robin Murphy, Joerg Roedel (AMD)
Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel,
iommu, linux-arm-kernel, Nabige Aala, Dmitry Baryshkov
Shikra (QCM2390) is a Qualcomm SoC based on the QCM2290 family that
reuses the same MDSS/DPU 6.5 hardware as QCM2290. This series enables
the display subsystem for Shikra by adding DT binding updates for MDSS,
DSI controller and DPU, arm64 defconfig enablement for the ILI7807S DSI
panel, and UBWC configuration mapping Shikra to qcm2290_data.
Driver and SMMU support are covered by the existing qcom,qcm2290-mdss
fallback compatible string — no separate drm/msm or IOMMU patches are
required.
Tested on Shikra CQM EVK board with ILI7807S DSI panel. Display
pipeline probes cleanly and panel renders correctly.
Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com>
---
Nabige Aala (3):
dt-bindings: display: msm: qcm2290: Add Shikra MDSS
arm64: defconfig: Enable ILI7807S DSI panel driver
soc: qcom: ubwc: Add Shikra UBWC config
Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml | 4 ++++
Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml | 7 +++++--
Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml | 22 +++++++++++++++-------
arch/arm64/configs/defconfig | 1 +
drivers/soc/qcom/ubwc_config.c | 1 +
5 files changed, 26 insertions(+), 9 deletions(-)
---
Prerequisite-Message-Id: <20260518-ili7807s-panel-v1-0-d7b048163b1c@oss.qualcomm.com>
---
Changes in v3:
- Use a fallback compatible chain for qcom,shikra-dsi-ctrl
in dsi-controller-main.yaml instead of a standalone enum entry, with
qcom,qcm2290-dsi-ctrl and qcom,mdss-dsi-ctrl as fallbacks
- Replace oneOf in qcm2290-mdss patternProperties DSI compatible with
contains: qcom,qcm2290-dsi-ctrl to avoid duplicating full chain
validation already handled by dsi-controller-main.yaml
- Drop unnecessary select: block from qcom,qcm2290-mdss.yaml; default
dt-validate compatible matching is sufficient
- Remove self from qcom,qcm2290-mdss.yaml maintainers list
- Link to v2: https://patch.msgid.link/20260604-shikra-display-v2-0-b3c1b2b67edc@oss.qualcomm.com
Changes in v2:
- Drop drm/msm/mdss: Shikra support patch; driver reuse is handled via
the qcom,qcm2290-mdss fallback compatible string (per Dmitry's review)
- Drop iommu/arm-smmu: Shikra SMMU client table patch; not required with
fallback compatible approach
- Fix UBWC config to map qcom,shikra to qcm2290_data instead of
no_ubwc_data; Shikra shares UBWC support with QCM2290
- Refactor series from 5 patches to 3 patches
- Link to v1: https://patch.msgid.link/20260603-shikra-display-v1-0-aeac1b94faa7@oss.qualcomm.com
---
Nabige Aala (3):
dt-bindings: display: msm: qcm2290: Add Shikra MDSS
arm64: defconfig: Enable ILI7807S DSI panel driver
soc: qcom: ubwc: Add Shikra UBWC config
.../bindings/display/msm/dsi-controller-main.yaml | 4 ++++
.../bindings/display/msm/qcom,qcm2290-dpu.yaml | 7 +++++--
.../bindings/display/msm/qcom,qcm2290-mdss.yaml | 22 +++++++++++++++-------
arch/arm64/configs/defconfig | 1 +
drivers/soc/qcom/ubwc_config.c | 1 +
5 files changed, 26 insertions(+), 9 deletions(-)
---
base-commit: 3a34f9c13cc0688f8db2a0db8506bf8c0d90737d
change-id: 20260603-shikra-display-07767208fa90
Best regards,
--
Nabige Aala <nabige.aala@oss.qualcomm.com>
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS 2026-06-05 10:18 [PATCH v3 0/3] Add Shikra (QCM2390) display support Nabige Aala @ 2026-06-05 10:18 ` Nabige Aala 2026-06-06 12:23 ` Dmitry Baryshkov 2026-06-06 19:50 ` Krzysztof Kozlowski 2026-06-05 10:18 ` [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver Nabige Aala 2026-06-05 10:18 ` [PATCH v3 3/3] soc: qcom: ubwc: Add Shikra UBWC config Nabige Aala 2 siblings, 2 replies; 8+ messages in thread From: Nabige Aala @ 2026-06-05 10:18 UTC (permalink / raw) To: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD) Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel, Nabige Aala Shikra reuses the same MDSS/DPU 6.5 hardware as QCM2290. Extend the existing qcm2290 bindings to cover Shikra by adding fallback compatible chains for MDSS, DPU and DSI controller nodes rather than introducing a separate binding file. Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com> --- .../bindings/display/msm/dsi-controller-main.yaml | 4 ++++ .../bindings/display/msm/qcom,qcm2290-dpu.yaml | 7 +++++-- .../bindings/display/msm/qcom,qcm2290-mdss.yaml | 22 +++++++++++++++------- 3 files changed, 24 insertions(+), 9 deletions(-) diff --git a/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml b/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml index dbc0613e427e..ab2cfd6d6e3e 100644 --- a/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml +++ b/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml @@ -57,6 +57,10 @@ properties: - const: qcom,eliza-dsi-ctrl - const: qcom,sm8750-dsi-ctrl - const: qcom,mdss-dsi-ctrl + - items: + - const: qcom,shikra-dsi-ctrl + - const: qcom,qcm2290-dsi-ctrl + - const: qcom,mdss-dsi-ctrl - enum: - qcom,dsi-ctrl-6g-qcm2290 - qcom,mdss-dsi-ctrl # This should always come with an SoC-specific compatible diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml index be6cd8adb3b6..e166a73651df 100644 --- a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml @@ -13,8 +13,11 @@ $ref: /schemas/display/msm/dpu-common.yaml# properties: compatible: - const: qcom,qcm2290-dpu - + oneOf: + - const: qcom,qcm2290-dpu + - items: + - const: qcom,shikra-dpu + - const: qcom,qcm2290-dpu reg: items: - description: Address offset and size for mdp register set diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml index bb09ecd1a5b4..ef21b2c263f2 100644 --- a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml @@ -4,7 +4,7 @@ $id: http://devicetree.org/schemas/display/msm/qcom,qcm2290-mdss.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# -title: Qualcomm QCM220 Display MDSS +title: Qualcomm QCM2290 and Shikra Display MDSS maintainers: - Loic Poulain <loic.poulain@linaro.org> @@ -12,13 +12,18 @@ maintainers: description: Device tree bindings for MSM Mobile Display Subsystem(MDSS) that encapsulates sub-blocks like DPU display controller and DSI. Device tree bindings of MDSS - are mentioned for QCM2290 target. + are mentioned for QCM2290 and Shikra targets. Shikra uses the same MDSS/DPU/DSI + hardware as QCM2290 (DPU 6.5) and shares the same register layout. $ref: /schemas/display/msm/mdss-common.yaml# properties: compatible: - const: qcom,qcm2290-mdss + oneOf: + - const: qcom,qcm2290-mdss + - items: + - const: qcom,shikra-mdss + - const: qcom,qcm2290-mdss clocks: items: @@ -52,7 +57,11 @@ patternProperties: properties: compatible: - const: qcom,qcm2290-dpu + oneOf: + - const: qcom,qcm2290-dpu + - items: + - const: qcom,shikra-dpu + - const: qcom,qcm2290-dpu "^dsi@[0-9a-f]+$": type: object @@ -60,9 +69,8 @@ patternProperties: properties: compatible: - items: - - const: qcom,qcm2290-dsi-ctrl - - const: qcom,mdss-dsi-ctrl + contains: + const: qcom,qcm2290-dsi-ctrl "^phy@[0-9a-f]+$": type: object -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS 2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala @ 2026-06-06 12:23 ` Dmitry Baryshkov 2026-06-06 19:50 ` Krzysztof Kozlowski 1 sibling, 0 replies; 8+ messages in thread From: Dmitry Baryshkov @ 2026-06-06 12:23 UTC (permalink / raw) To: Nabige Aala Cc: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD), linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel On Fri, Jun 05, 2026 at 03:48:51PM +0530, Nabige Aala wrote: > Shikra reuses the same MDSS/DPU 6.5 hardware as QCM2290. Extend > the existing qcm2290 bindings to cover Shikra by adding fallback > compatible chains for MDSS, DPU and DSI controller nodes rather > than introducing a separate binding file. > > Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com> > --- > .../bindings/display/msm/dsi-controller-main.yaml | 4 ++++ > .../bindings/display/msm/qcom,qcm2290-dpu.yaml | 7 +++++-- > .../bindings/display/msm/qcom,qcm2290-mdss.yaml | 22 +++++++++++++++------- > 3 files changed, 24 insertions(+), 9 deletions(-) > > diff --git a/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml b/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml > index dbc0613e427e..ab2cfd6d6e3e 100644 > --- a/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml > +++ b/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml > @@ -57,6 +57,10 @@ properties: > - const: qcom,eliza-dsi-ctrl > - const: qcom,sm8750-dsi-ctrl > - const: qcom,mdss-dsi-ctrl > + - items: > + - const: qcom,shikra-dsi-ctrl > + - const: qcom,qcm2290-dsi-ctrl > + - const: qcom,mdss-dsi-ctrl Wrong sort order, qcm2290 < sm8750 > - enum: > - qcom,dsi-ctrl-6g-qcm2290 > - qcom,mdss-dsi-ctrl # This should always come with an SoC-specific compatible > diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > index be6cd8adb3b6..e166a73651df 100644 > --- a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > @@ -13,8 +13,11 @@ $ref: /schemas/display/msm/dpu-common.yaml# > > properties: > compatible: > - const: qcom,qcm2290-dpu > - > + oneOf: > + - const: qcom,qcm2290-dpu > + - items: > + - const: qcom,shikra-dpu > + - const: qcom,qcm2290-dpu > reg: > items: > - description: Address offset and size for mdp register set > diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml > index bb09ecd1a5b4..ef21b2c263f2 100644 > --- a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml > +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-mdss.yaml > @@ -4,7 +4,7 @@ > $id: http://devicetree.org/schemas/display/msm/qcom,qcm2290-mdss.yaml# > $schema: http://devicetree.org/meta-schemas/core.yaml# > > -title: Qualcomm QCM220 Display MDSS > +title: Qualcomm QCM2290 and Shikra Display MDSS > > maintainers: > - Loic Poulain <loic.poulain@linaro.org> > @@ -12,13 +12,18 @@ maintainers: > description: > Device tree bindings for MSM Mobile Display Subsystem(MDSS) that encapsulates > sub-blocks like DPU display controller and DSI. Device tree bindings of MDSS > - are mentioned for QCM2290 target. > + are mentioned for QCM2290 and Shikra targets. Shikra uses the same MDSS/DPU/DSI > + hardware as QCM2290 (DPU 6.5) and shares the same register layout. > > $ref: /schemas/display/msm/mdss-common.yaml# > > properties: > compatible: > - const: qcom,qcm2290-mdss > + oneOf: > + - const: qcom,qcm2290-mdss > + - items: > + - const: qcom,shikra-mdss > + - const: qcom,qcm2290-mdss > > clocks: > items: > @@ -52,7 +57,11 @@ patternProperties: > > properties: > compatible: > - const: qcom,qcm2290-dpu > + oneOf: > + - const: qcom,qcm2290-dpu > + - items: > + - const: qcom,shikra-dpu > + - const: qcom,qcm2290-dpu Use contains: > > "^dsi@[0-9a-f]+$": > type: object > @@ -60,9 +69,8 @@ patternProperties: > > properties: > compatible: > - items: > - - const: qcom,qcm2290-dsi-ctrl > - - const: qcom,mdss-dsi-ctrl > + contains: > + const: qcom,qcm2290-dsi-ctrl > > "^phy@[0-9a-f]+$": > type: object > > -- > 2.34.1 > -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS 2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala 2026-06-06 12:23 ` Dmitry Baryshkov @ 2026-06-06 19:50 ` Krzysztof Kozlowski 1 sibling, 0 replies; 8+ messages in thread From: Krzysztof Kozlowski @ 2026-06-06 19:50 UTC (permalink / raw) To: Nabige Aala, Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD) Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel On 05/06/2026 12:18, Nabige Aala wrote: > diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > index be6cd8adb3b6..e166a73651df 100644 > --- a/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcm2290-dpu.yaml > @@ -13,8 +13,11 @@ $ref: /schemas/display/msm/dpu-common.yaml# > > properties: > compatible: > - const: qcom,qcm2290-dpu > - Do not introduce additional changes. Blank line was there on purpose. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver 2026-06-05 10:18 [PATCH v3 0/3] Add Shikra (QCM2390) display support Nabige Aala 2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala @ 2026-06-05 10:18 ` Nabige Aala 2026-06-06 12:17 ` Dmitry Baryshkov 2026-06-06 19:51 ` Krzysztof Kozlowski 2026-06-05 10:18 ` [PATCH v3 3/3] soc: qcom: ubwc: Add Shikra UBWC config Nabige Aala 2 siblings, 2 replies; 8+ messages in thread From: Nabige Aala @ 2026-06-05 10:18 UTC (permalink / raw) To: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD) Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel, Nabige Aala, Dmitry Baryshkov Enable the ILI7807S 1080x1920 video-mode DSI panel driver as a module, used on the Shikra CQM EVK board. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com> --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 909f3c188e75..a6d72ff63e57 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -1005,6 +1005,7 @@ CONFIG_DRM_MXSFB=m CONFIG_DRM_IMX_LCDIF=m CONFIG_DRM_NOUVEAU=m CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_ILITEK_ILI7807S=m CONFIG_DRM_PANEL_LVDS=m CONFIG_DRM_PANEL_HIMAX_HX8279=m CONFIG_DRM_PANEL_HIMAX_HX83112A=m -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver 2026-06-05 10:18 ` [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver Nabige Aala @ 2026-06-06 12:17 ` Dmitry Baryshkov 2026-06-06 19:51 ` Krzysztof Kozlowski 1 sibling, 0 replies; 8+ messages in thread From: Dmitry Baryshkov @ 2026-06-06 12:17 UTC (permalink / raw) To: Nabige Aala Cc: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD), linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel On Fri, Jun 05, 2026 at 03:48:52PM +0530, Nabige Aala wrote: > Enable the ILI7807S 1080x1920 video-mode DSI panel driver as a module, > used on the Shikra CQM EVK board. > > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> > Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com> > --- > arch/arm64/configs/defconfig | 1 + > 1 file changed, 1 insertion(+) Okay, you are really not reading any feedback. This patch doesn't belong here. Move it to the series adding the actual DT with the panel. -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver 2026-06-05 10:18 ` [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver Nabige Aala 2026-06-06 12:17 ` Dmitry Baryshkov @ 2026-06-06 19:51 ` Krzysztof Kozlowski 1 sibling, 0 replies; 8+ messages in thread From: Krzysztof Kozlowski @ 2026-06-06 19:51 UTC (permalink / raw) To: Nabige Aala, Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD) Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel, Dmitry Baryshkov On 05/06/2026 12:18, Nabige Aala wrote: > Enable the ILI7807S 1080x1920 video-mode DSI panel driver as a module, > used on the Shikra CQM EVK board. Please use git log in case my comment was not clear. NAK because you keep sending the same and ignoring feedback. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3 3/3] soc: qcom: ubwc: Add Shikra UBWC config 2026-06-05 10:18 [PATCH v3 0/3] Add Shikra (QCM2390) display support Nabige Aala 2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala 2026-06-05 10:18 ` [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver Nabige Aala @ 2026-06-05 10:18 ` Nabige Aala 2 siblings, 0 replies; 8+ messages in thread From: Nabige Aala @ 2026-06-05 10:18 UTC (permalink / raw) To: Rob Clark, Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul, Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Krishna Manikandan, Loic Poulain, Bjorn Andersson, Konrad Dybcio, Will Deacon, Robin Murphy, Joerg Roedel (AMD) Cc: linux-arm-msm, dri-devel, freedreno, devicetree, linux-kernel, iommu, linux-arm-kernel, Nabige Aala, Dmitry Baryshkov Add UBWC configuration for the Shikra platform. Shikra shares the same hardware as QCM2290 (Agatti), so reuse qcm2290_data for the UBWC settings Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Nabige Aala <nabige.aala@oss.qualcomm.com> --- drivers/soc/qcom/ubwc_config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soc/qcom/ubwc_config.c b/drivers/soc/qcom/ubwc_config.c index 3fe47d8f0f63..1a2e54c6480d 100644 --- a/drivers/soc/qcom/ubwc_config.c +++ b/drivers/soc/qcom/ubwc_config.c @@ -278,6 +278,7 @@ static const struct of_device_id qcom_ubwc_configs[] __maybe_unused = { { .compatible = "qcom,sdm660", .data = &msm8937_data }, { .compatible = "qcom,sdm670", .data = &sdm670_data, }, { .compatible = "qcom,sdm845", .data = &sdm845_data, }, + { .compatible = "qcom,shikra", .data = &qcm2290_data, }, { .compatible = "qcom,sm4250", .data = &sm6115_data, }, { .compatible = "qcom,sm6115", .data = &sm6115_data, }, { .compatible = "qcom,sm6125", .data = &sm6125_data, }, -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-06 19:51 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-05 10:18 [PATCH v3 0/3] Add Shikra (QCM2390) display support Nabige Aala 2026-06-05 10:18 ` [PATCH v3 1/3] dt-bindings: display: msm: qcm2290: Add Shikra MDSS Nabige Aala 2026-06-06 12:23 ` Dmitry Baryshkov 2026-06-06 19:50 ` Krzysztof Kozlowski 2026-06-05 10:18 ` [PATCH v3 2/3] arm64: defconfig: Enable ILI7807S DSI panel driver Nabige Aala 2026-06-06 12:17 ` Dmitry Baryshkov 2026-06-06 19:51 ` Krzysztof Kozlowski 2026-06-05 10:18 ` [PATCH v3 3/3] soc: qcom: ubwc: Add Shikra UBWC config Nabige Aala
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox