-
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-2021-06-09' of git://anongit.freedesktop.org…
…/drm/drm-misc into drm-next drm-misc-next for 5.14: UAPI Changes: * drm/panfrost: Export AFBC_FEATURES register to userspace Cross-subsystem Changes: * dma-buf: Fix debug printing; Rename dma_resv_*() functions + changes in callers; Cleanups Core Changes: * Add prefetching memcpy for WC * Avoid circular dependency on CONFIG_FB * Cleanups * Documentation fixes throughout DRM * ttm: Make struct ttm_resource the base of all managers + changes in all users of TTM; Add a generic memcpy for page-based iomem; Remove use of VM_MIXEDMAP; Cleanups Driver Changes: * drm/bridge: Add TI SN65DSI83 and SN65DSI84 + DT bindings * drm/hyperv: Add DRM driver for HyperV graphics output * drm/msm: Fix module dependencies * drm/panel: KD53T133: Support rotation * drm/pl111: Fix module dependencies * drm/qxl: Fixes * drm/stm: Cleanups * drm/sun4i: Be explicit about format modifiers * drm/vc4: Use struct gpio_desc; Cleanups * drm/vgem: Cleanups * drm/vmwgfx: Use ttm_bo_move_null() if there's nothing to copy * fbdev/mach64: Cleanups * fbdev/mb862xx: Use DEVICE_ATTR_RO Signed-off-by: Dave Airlie <airlied@redhat.com> From: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/YMBw3DF2b9udByfT@linux-uq9g
- Loading branch information
Showing
154 changed files
with
3,851 additions
and
1,261 deletions.
There are no files selected for viewing
159 changes: 159 additions & 0 deletions
159
Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.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,159 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/bridge/ti,sn65dsi83.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: SN65DSI83 and SN65DSI84 DSI to LVDS bridge chip | ||
|
||
maintainers: | ||
- Marek Vasut <marex@denx.de> | ||
|
||
description: | | ||
Texas Instruments SN65DSI83 1x Single-link MIPI DSI | ||
to 1x Single-link LVDS | ||
https://www.ti.com/lit/gpn/sn65dsi83 | ||
Texas Instruments SN65DSI84 1x Single-link MIPI DSI | ||
to 1x Dual-link or 2x Single-link LVDS | ||
https://www.ti.com/lit/gpn/sn65dsi84 | ||
properties: | ||
compatible: | ||
enum: | ||
- ti,sn65dsi83 | ||
- ti,sn65dsi84 | ||
|
||
reg: | ||
enum: | ||
- 0x2c | ||
- 0x2d | ||
|
||
enable-gpios: | ||
maxItems: 1 | ||
description: GPIO specifier for bridge_en pin (active high). | ||
|
||
ports: | ||
$ref: /schemas/graph.yaml#/properties/ports | ||
|
||
properties: | ||
port@0: | ||
$ref: /schemas/graph.yaml#/properties/port | ||
description: Video port for MIPI DSI Channel-A input | ||
|
||
properties: | ||
endpoint: | ||
$ref: /schemas/media/video-interfaces.yaml# | ||
unevaluatedProperties: false | ||
|
||
properties: | ||
data-lanes: | ||
description: array of physical DSI data lane indexes. | ||
minItems: 1 | ||
maxItems: 4 | ||
items: | ||
- const: 1 | ||
- const: 2 | ||
- const: 3 | ||
- const: 4 | ||
|
||
port@1: | ||
$ref: /schemas/graph.yaml#/properties/port | ||
description: Video port for MIPI DSI Channel-B input | ||
|
||
properties: | ||
endpoint: | ||
$ref: /schemas/media/video-interfaces.yaml# | ||
unevaluatedProperties: false | ||
|
||
properties: | ||
data-lanes: | ||
description: array of physical DSI data lane indexes. | ||
minItems: 1 | ||
maxItems: 4 | ||
items: | ||
- const: 1 | ||
- const: 2 | ||
- const: 3 | ||
- const: 4 | ||
|
||
port@2: | ||
$ref: /schemas/graph.yaml#/properties/port | ||
description: Video port for LVDS Channel-A output (panel or bridge). | ||
|
||
port@3: | ||
$ref: /schemas/graph.yaml#/properties/port | ||
description: Video port for LVDS Channel-B output (panel or bridge). | ||
|
||
required: | ||
- port@0 | ||
- port@2 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- enable-gpios | ||
- ports | ||
|
||
allOf: | ||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
const: ti,sn65dsi83 | ||
then: | ||
properties: | ||
ports: | ||
properties: | ||
port@1: false | ||
port@3: false | ||
|
||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
const: ti,sn65dsi84 | ||
then: | ||
properties: | ||
ports: | ||
properties: | ||
port@1: false | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
bridge@2d { | ||
compatible = "ti,sn65dsi83"; | ||
reg = <0x2d>; | ||
enable-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>; | ||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
port@0 { | ||
reg = <0>; | ||
endpoint { | ||
remote-endpoint = <&dsi0_out>; | ||
data-lanes = <1 2 3 4>; | ||
}; | ||
}; | ||
port@2 { | ||
reg = <2>; | ||
endpoint { | ||
remote-endpoint = <&panel_in_lvds>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
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.