-
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-09-16' of git://anongit.freedesktop.org…
…/drm/drm-misc into drm-next drm-misc-next for $kernel-version: UAPI Changes: Cross-subsystem Changes: - dma-buf: Avoid a warning with some allocations, Remove DMA_FENCE_TRACE macros Core Changes: - bridge: New helper to git rid of panels in drivers - fence: Improve dma_fence_add_callback documentation, Improve dma_fence_ops->wait documentation - ioctl: Unexport drm_ioctl_permit - lease: Documentation improvements - fourcc: Add new macro to determine the modifier vendor - quirks: Add the Steam Deck, Chuwi HiBook, Chuwi Hi10 Pro, Samsung Galaxy Book 10.6, KD Kurio Smart C15200 2-in-1, Lenovo Ideapad D330 - resv: Improve the documentation - shmem-helpers: Allocate WC pages on x86, Switch to vmf_insert_pfn - sched: Fix for a timer being canceled too soon, Avoid null pointer derefence if the fence is null in drm_sched_fence_free, Convert drivers to rely on its dependency tracking - ttm: Switch to kerneldoc, new helper to clear all DMA mappings, pool shrinker optitimization, Remove ttm_tt_destroy_common, Fix for unbinding on multiple drivers Driver Changes: - bochs: New PCI IDs - msm: Fence ordering impromevemnts - stm: Add layer alpha support, zpos - v3d: Fix for a Vulkan CTS failure - vc4: Conversion to the new bridge helpers - vgem: Use shmem helpers - virtio: Support mapping exported vram - zte: Remove obsolete driver - bridge: Probe improvements for it66121, enable DSI EOTP for anx7625, errors propagation improvements for anx7625 - panels: 60fps mode for otm8009a, New driver for Samsung S6D27A1 Signed-off-by: Dave Airlie <airlied@redhat.com> # gpg: Signature made Thu 16 Sep 2021 17:30:50 AEST # gpg: using EDDSA key 5C1337A45ECA9AEB89060E9EE3EF0D6F671851C5 # gpg: Can't check signature: No public key From: Maxime Ripard <maxime@cerno.tech> Link: https://patchwork.freedesktop.org/patch/msgid/20210916073132.ptbbmjetm7v3ufq3@gilmour
- Loading branch information
Showing
145 changed files
with
2,080 additions
and
5,441 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
98 changes: 98 additions & 0 deletions
98
Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.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,98 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/panel/samsung,s6d27a1.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Samsung S6D27A1 display panel | ||
|
||
description: The S6D27A1 is a 480x800 DPI display panel from Samsung Mobile | ||
Displays (SMD). The panel must obey the rules for a SPI slave device | ||
as specified in spi/spi-controller.yaml | ||
|
||
maintainers: | ||
- Markuss Broks <markuss.broks@gmail.com> | ||
|
||
allOf: | ||
- $ref: panel-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: samsung,s6d27a1 | ||
|
||
reg: true | ||
|
||
interrupts: | ||
description: provides an optional ESD (electrostatic discharge) | ||
interrupt that signals abnormalities in the display hardware. | ||
This can also be raised for other reasons like erroneous | ||
configuration. | ||
maxItems: 1 | ||
|
||
reset-gpios: true | ||
|
||
vci-supply: | ||
description: regulator that supplies the VCI analog voltage | ||
usually around 3.0 V | ||
|
||
vccio-supply: | ||
description: regulator that supplies the VCCIO voltage usually | ||
around 1.8 V | ||
|
||
backlight: true | ||
|
||
spi-cpha: true | ||
|
||
spi-cpol: true | ||
|
||
spi-max-frequency: | ||
maximum: 1200000 | ||
|
||
port: true | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- vci-supply | ||
- vccio-supply | ||
- spi-cpha | ||
- spi-cpol | ||
- port | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
spi { | ||
compatible = "spi-gpio"; | ||
sck-gpios = <&gpio 0 GPIO_ACTIVE_HIGH>; | ||
miso-gpios = <&gpio 1 GPIO_ACTIVE_HIGH>; | ||
mosi-gpios = <&gpio 2 GPIO_ACTIVE_HIGH>; | ||
cs-gpios = <&gpio 3 GPIO_ACTIVE_HIGH>; | ||
num-chipselects = <1>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
panel@0 { | ||
compatible = "samsung,s6d27a1"; | ||
spi-max-frequency = <1200000>; | ||
spi-cpha; | ||
spi-cpol; | ||
reg = <0>; | ||
vci-supply = <&lcd_3v0_reg>; | ||
vccio-supply = <&lcd_1v8_reg>; | ||
reset-gpios = <&gpio 4 GPIO_ACTIVE_LOW>; | ||
interrupt-parent = <&gpio>; | ||
interrupts = <5 IRQ_TYPE_EDGE_RISING>; | ||
port { | ||
panel_in: endpoint { | ||
remote-endpoint = <&display_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.