mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-25 00:27:35 +00:00

DPU, DSI, MDSS: - Support for SM8350, SM8450 SM8550 and SC8280XP platform Core: - Added bindings for SM8150 (driver support already present) DPU: - Partial support for DSC on SM8150 and SM8250 - Fixed color transformation matrix being lost on suspend/resume DP: - Support for DP on SDM845 and SC8280XP platforms - HPD fixes - Support for limiting DP link rate via DT property, this enables support for HBR3 rates. DSI: - Validate display modes according to the DSI OPP table - DSI PHY support for the SM6375 platform - Fixed byte intf clock selection for 14nm PHYs MDP5: - Schema conversion to YAML Misc fixes as usual Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/msm/dpu-common.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Display DPU common properties
|
|
|
|
maintainers:
|
|
- Krishna Manikandan <quic_mkrishn@quicinc.com>
|
|
- Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
|
|
- Rob Clark <robdclark@gmail.com>
|
|
|
|
description: |
|
|
Common properties for QCom DPU display controller.
|
|
|
|
# Do not select this by default, otherwise it is also selected for all
|
|
# display-controller@ nodes
|
|
select:
|
|
false
|
|
|
|
properties:
|
|
$nodename:
|
|
pattern: '^display-controller@[0-9a-f]+$'
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
operating-points-v2: true
|
|
opp-table:
|
|
type: object
|
|
|
|
ports:
|
|
$ref: /schemas/graph.yaml#/properties/ports
|
|
description: |
|
|
Contains the list of output ports from DPU device. These ports
|
|
connect to interfaces that are external to the DPU hardware,
|
|
such as DSI, DP etc.
|
|
|
|
patternProperties:
|
|
"^port@[0-9a-f]+$":
|
|
$ref: /schemas/graph.yaml#/properties/port
|
|
|
|
# at least one port is required
|
|
required:
|
|
- port@0
|
|
|
|
required:
|
|
- interrupts
|
|
- power-domains
|
|
- operating-points-v2
|
|
- ports
|
|
|
|
additionalProperties: true
|