-
Notifications
You must be signed in to change notification settings - Fork 231
Add display support for nord #1034
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Shiraz Hashim (shashim-quic)
merged 10 commits into
qualcomm-linux:staging/nord
from
riteshk-quic:my_branch
Sep 2, 2026
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
195d138
PENDING: dt-bindings: phy: qcom,edp-phy: Document Nord eDP PHY
438355a
PENDING: dt-bindings: display/msm: dp-controller: Document Nord DP
16ebfc8
PENDING: dt-bindings: display/msm: Document Nord MDSS
96f73d1
PENDING: drm/msm/dpu: Add support for DPU 12.1 on Nord
8fe44f1
PENDING: drm/msm: mdss: Add support for MDSS on Nord
5ef3980
PENDING: drm/msm/dp: Add support for DP controllers on Nord
6757c78
PENDING: arm64: dts: qcom: nord: Add display subsystem nodes
riteshk-quic 5065360
PENDING: arm64: dts: qcom: nord-ride-sx: Enable eDP0/1 display output
riteshk-quic 5e6077b
PENDING: arm64: dts: qcom: nord-rrd: Enable eDP0/1 display output
riteshk-quic 06bf120
PENDING: phy: qcom: edp: Add support for Nord eDP PHY
riteshk-quic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
Documentation/devicetree/bindings/display/msm/qcom,nord-mdss.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
| %YAML 1.2 | ||
| --- | ||
| $id: http://devicetree.org/schemas/display/msm/qcom,nord-mdss.yaml# | ||
| $schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
|
||
| title: Qualcomm Nord display subsystem (MDSS) | ||
|
|
||
| maintainers: | ||
| - Linux Kernel | ||
|
|
||
| description: | | ||
| Nord display subsystem consists of MDSS (display controller), DPU 1499A | ||
| (display processing unit), and display interface controllers (DP only, no DSI). | ||
| This is MDSS 12.1, DP-only, with 2 independent DP controllers. | ||
|
|
||
| properties: | ||
| compatible: | ||
| const: qcom,nord-mdss | ||
|
|
||
| reg: | ||
| maxItems: 1 | ||
|
|
||
| reg-names: | ||
| const: mdss | ||
|
|
||
| power-domains: | ||
| maxItems: 1 | ||
|
|
||
| clocks: | ||
| minItems: 3 | ||
| maxItems: 3 | ||
|
|
||
| clock-names: | ||
| items: | ||
| - const: iface | ||
| - const: bus | ||
| - const: vsync | ||
|
|
||
| interrupts: | ||
| maxItems: 1 | ||
|
|
||
| interrupt-controller: true | ||
|
|
||
| "#interrupt-cells": | ||
| const: 1 | ||
|
|
||
| iommus: | ||
| maxItems: 1 | ||
|
|
||
| "#address-cells": | ||
| const: 2 | ||
|
|
||
| "#size-cells": | ||
| const: 2 | ||
|
|
||
| ranges: true | ||
|
|
||
| patternProperties: | ||
| "^display-controller@[0-9a-f]+$": | ||
| type: object | ||
| description: DPU display controller | ||
|
|
||
| "^phy@[0-9a-f]+$": | ||
| type: object | ||
| description: DP PHY | ||
|
|
||
| additionalProperties: false | ||
|
|
||
| required: | ||
| - compatible | ||
| - reg | ||
| - reg-names | ||
| - clocks | ||
| - clock-names | ||
| - interrupts | ||
| - interrupt-controller | ||
| - "#interrupt-cells" | ||
| - "#address-cells" | ||
| - "#size-cells" | ||
|
|
||
| examples: | ||
| - | | ||
| mdss@ae00000 { | ||
| compatible = "qcom,nord-mdss"; | ||
| reg = <0 0xae00000 0 0xf0000>; | ||
| reg-names = "mdss"; | ||
| power-domains = <&dispcc 0>; | ||
| clocks = <&dispcc 0>, | ||
| <&dispcc 1>, | ||
| <&dispcc 2>; | ||
| clock-names = "iface", "bus", "vsync"; | ||
| interrupts = <0 83 4>; | ||
| interrupt-controller; | ||
| #interrupt-cells = <1>; | ||
| iommus = <&smmu 0x800 0x420>; | ||
| #address-cells = <2>; | ||
| #size-cells = <2>; | ||
| ranges; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,7 @@ properties: | |
| oneOf: | ||
| - enum: | ||
| - qcom,glymur-dp-phy | ||
| - qcom,nord-dp-phy | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keep entries sorted. |
||
| - qcom,sa8775p-edp-phy | ||
| - qcom,sc7280-edp-phy | ||
| - qcom,sc8180x-edp-phy | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same, should be sorted.