-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'drm-misc-next-2025-02-27' of https://gitlab.freedesktop.or…
…g/drm/misc/kernel into drm-next drm-misc-next for v6.15: Cross-subsystem Changes: bus: - mhi: Avoid access to uninitialized field Core Changes: - Fix docmentation dp: - Add helpers for LTTPR transparent mode sched: - Improve job peek/pop operations - Optimize layout of struct drm_sched_job Driver Changes: arc: - Convert to devm_platform_ioremap_resource() aspeed: - Convert to devm_platform_ioremap_resource() bridge: - ti-sn65dsi86: Support CONFIG_PWM tristate i915: - dp: Use helpers for LTTPR transparent mode mediatek: - Convert to devm_platform_ioremap_resource() msm: - dp: Use helpers for LTTPR transparent mode nouveau: - dp: Use helpers for LTTPR transparent mode panel: - raydium-rm67200: Add driver for Raydium RM67200 - simple: Add support for BOE AV123Z7M-N17, BOE AV123Z7M-N17 - sony-td4353-jdi: Use MIPI-DSI multi-func interface - summit: Add driver for Apple Summit display panel - visionox-rm692e5: Add driver for Visionox RM692E5 repaper: - Fix integer overflows stm: - Convert to devm_platform_ioremap_resource() vc4: - Convert to devm_platform_ioremap_resource() Signed-off-by: Dave Airlie <airlied@redhat.com> From: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/20250227094041.GA114623@linux.fritz.box
- Loading branch information
Showing
45 changed files
with
1,680 additions
and
314 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
72 changes: 72 additions & 0 deletions
72
Documentation/devicetree/bindings/display/panel/raydium,rm67200.yaml
This file contains 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,72 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/panel/raydium,rm67200.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Raydium RM67200 based MIPI-DSI panels | ||
|
||
maintainers: | ||
- Sebastian Reichel <sebastian.reichel@collabora.com> | ||
|
||
allOf: | ||
- $ref: panel-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
items: | ||
- enum: | ||
- wanchanglong,w552793baa | ||
- const: raydium,rm67200 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
vdd-supply: | ||
description: 2.8V Logic voltage | ||
|
||
iovcc-supply: | ||
description: 1.8V IO voltage | ||
|
||
vsp-supply: | ||
description: positive 5.5V voltage | ||
|
||
vsn-supply: | ||
description: negative 5.5V voltage | ||
|
||
backlight: true | ||
port: true | ||
reset-gpios: true | ||
|
||
required: | ||
- compatible | ||
- port | ||
- reg | ||
- reset-gpios | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
dsi { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
panel@0 { | ||
compatible = "wanchanglong,w552793baa", "raydium,rm67200"; | ||
reg = <0>; | ||
vdd-supply = <®ulator1>; | ||
iovcc-supply = <®ulator2>; | ||
vsp-supply = <®ulator3>; | ||
vsn-supply = <®ulator4>; | ||
reset-gpios = <&gpiobank 42 GPIO_ACTIVE_LOW>; | ||
port { | ||
panel0_in: endpoint { | ||
remote-endpoint = <&dsi0_out>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
... |
77 changes: 77 additions & 0 deletions
77
Documentation/devicetree/bindings/display/panel/visionox,rm692e5.yaml
This file contains 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,77 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/panel/visionox,rm692e5.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Visionox RM692E5 6.55" 2400x1080 120Hz MIPI-DSI Panel | ||
|
||
maintainers: | ||
- Danila Tikhonov <danila@jiaxyga.com> | ||
|
||
description: | ||
The Visionox RM692E5 is a generic DSI Panel IC used to control | ||
AMOLED panels. | ||
|
||
allOf: | ||
- $ref: panel-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- enum: | ||
- visionox,rm692e5 | ||
- items: | ||
- enum: | ||
- nothing,rm692e5-spacewar | ||
- const: visionox,rm692e5 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
vdd-supply: | ||
description: 3.3V source voltage rail | ||
|
||
vddio-supply: | ||
description: 1.8V I/O source voltage rail | ||
|
||
reset-gpios: true | ||
port: true | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- reset-gpios | ||
- vdd-supply | ||
- vddio-supply | ||
- port | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
dsi { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
panel@0 { | ||
compatible = "nothing,rm692e5-spacewar", | ||
"visionox,rm692e5"; | ||
reg = <0>; | ||
reset-gpios = <&tlmm 44 GPIO_ACTIVE_LOW>; | ||
vdd-supply = <&vdd_oled>; | ||
vddio-supply = <&vdd_io_oled>; | ||
port { | ||
panel_in: endpoint { | ||
remote-endpoint = <&mdss_dsi0_out>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
... |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.