forked from torvalds/linux
-
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-next-2018-08-15' of git://anongit.freedesktop.org/drm/drm
Pull drm updates from Dave Airlie: "This is the main drm pull request for 4.19. Rob has some new hardware support for new qualcomm hw that I'll send along separately. This has the display part of it, the remaining pull is for the acceleration engine. This also contains a wound-wait/wait-die mutex rework, Peter has acked it for merging via my tree. Otherwise mostly the usual level of activity. Summary: core: - Wound-wait/wait-die mutex rework - Add writeback connector type - Add "content type" property for HDMI - Move GEM bo to drm_framebuffer - Initial gpu scheduler documentation - GPU scheduler fixes for dying processes - Console deferred fbcon takeover support - Displayport support for CEC tunneling over AUX panel: - otm8009a panel driver fixes - Innolux TV123WAM and G070Y2-L01 panel driver - Ilitek ILI9881c panel driver - Rocktech RK070ER9427 LCD - EDT ETM0700G0EDH6 and EDT ETM0700G0BDH6 - DLC DLC0700YZG-1 - BOE HV070WSA-100 - newhaven, nhd-4.3-480272ef-atxl LCD - DataImage SCF0700C48GGU18 - Sharp LQ035Q7DB03 - p079zca: Refactor to support multiple panels tinydrm: - ILI9341 display panel New driver: - vkms - virtual kms driver to testing. i915: - Icelake: Display enablement DSI support IRQ support Powerwell support - GPU reset fixes and improvements - Full ppgtt support refactoring - PSR fixes and improvements - Execlist improvments - GuC related fixes amdgpu: - Initial amdgpu documentation - JPEG engine support on VCN - CIK uses powerplay by default - Move to using core PCIE functionality for gens/lanes - DC/Powerplay interface rework - Stutter mode support for RV - Vega12 Powerplay updates - GFXOFF fixes - GPUVM fault debugging - Vega12 GFXOFF - DC improvements - DC i2c/aux changes - UVD 7.2 fixes - Powerplay fixes for Polaris12, CZ/ST - command submission bo_list fixes amdkfd: - Raven support - Power management fixes udl: - Cleanups and fixes nouveau: - misc fixes and cleanups. msm: - DPU1 support display controller in sdm845 - GPU coredump support. vmwgfx: - Atomic modesetting validation fixes - Support for multisample surfaces armada: - Atomic modesetting support completed. exynos: - IPPv2 fixes - Move g2d to component framework - Suspend/resume support cleanups - Driver cleanups imx: - CSI configuration improvements - Driver cleanups - Use atomic suspend/resume helpers - ipu-v3 V4L2 XRGB32/XBGR32 support pl111: - Add Nomadik LCDC variant v3d: - GPU scheduler jobs management sun4i: - R40 display engine support - TCON TOP driver mediatek: - MT2712 SoC support rockchip: - vop fixes omapdrm: - Workaround for DRA7 errata i932 - Fix mm_list locking mali-dp: - Writeback implementation PM improvements - Internal error reporting debugfs tilcdc: - Single fix for deferred probing hdlcd: - Teardown fixes tda998x: - Converted to a bridge driver. etnaviv: - Misc fixes" * tag 'drm-next-2018-08-15' of git://anongit.freedesktop.org/drm/drm: (1506 commits) drm/amdgpu/sriov: give 8s for recover vram under RUNTIME drm/scheduler: fix param documentation drm/i2c: tda998x: correct PLL divider calculation drm/i2c: tda998x: get rid of private fill_modes function drm/i2c: tda998x: move mode_valid() to bridge drm/i2c: tda998x: register bridge outside of component helper drm/i2c: tda998x: cleanup from previous changes drm/i2c: tda998x: allocate tda998x_priv inside tda998x_create() drm/i2c: tda998x: convert to bridge driver drm/scheduler: fix timeout worker setup for out of order job completions drm/amd/display: display connected to dp-1 does not light up drm/amd/display: update clk for various HDMI color depths drm/amd/display: program display clock on cache match drm/amd/display: Add NULL check for enabling dp ss drm/amd/display: add vbios table check for enabling dp ss drm/amd/display: Don't share clk source between DP and HDMI drm/amd/display: Fix DP HBR2 Eye Diagram Pattern on Carrizo drm/amd/display: Use calculated disp_clk_khz value for dce110 drm/amd/display: Implement custom degamma lut on dcn drm/amd/display: Destroy aux_engines only once ...
- Loading branch information
Showing
1,126 changed files
with
77,636 additions
and
25,181 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
27 changes: 27 additions & 0 deletions
27
Documentation/devicetree/bindings/display/ilitek,ili9341.txt
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,27 @@ | ||
Ilitek ILI9341 display panels | ||
|
||
This binding is for display panels using an Ilitek ILI9341 controller in SPI | ||
mode. | ||
|
||
Required properties: | ||
- compatible: "adafruit,yx240qv29", "ilitek,ili9341" | ||
- dc-gpios: D/C pin | ||
- reset-gpios: Reset pin | ||
|
||
The node for this driver must be a child node of a SPI controller, hence | ||
all mandatory properties described in ../spi/spi-bus.txt must be specified. | ||
|
||
Optional properties: | ||
- rotation: panel rotation in degrees counter clockwise (0,90,180,270) | ||
- backlight: phandle of the backlight device attached to the panel | ||
|
||
Example: | ||
display@0{ | ||
compatible = "adafruit,yx240qv29", "ilitek,ili9341"; | ||
reg = <0>; | ||
spi-max-frequency = <32000000>; | ||
dc-gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>; | ||
reset-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>; | ||
rotation = <270>; | ||
backlight = <&backlight>; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
Qualcomm Technologies, Inc. DPU KMS | ||
|
||
Description: | ||
|
||
Device tree bindings for MSM Mobile Display Subsytem(MDSS) that encapsulates | ||
sub-blocks like DPU display controller, DSI and DP interfaces etc. | ||
The DPU display controller is found in SDM845 SoC. | ||
|
||
MDSS: | ||
Required properties: | ||
- compatible: "qcom,sdm845-mdss" | ||
- reg: physical base address and length of contoller's registers. | ||
- reg-names: register region names. The following region is required: | ||
* "mdss" | ||
- power-domains: a power domain consumer specifier according to | ||
Documentation/devicetree/bindings/power/power_domain.txt | ||
- clocks: list of clock specifiers for clocks needed by the device. | ||
- clock-names: device clock names, must be in same order as clocks property. | ||
The following clocks are required: | ||
* "iface" | ||
* "bus" | ||
* "core" | ||
- interrupts: interrupt signal from MDSS. | ||
- interrupt-controller: identifies the node as an interrupt controller. | ||
- #interrupt-cells: specifies the number of cells needed to encode an interrupt | ||
source, should be 1. | ||
- iommus: phandle of iommu device node. | ||
- #address-cells: number of address cells for the MDSS children. Should be 1. | ||
- #size-cells: Should be 1. | ||
- ranges: parent bus address space is the same as the child bus address space. | ||
|
||
Optional properties: | ||
- assigned-clocks: list of clock specifiers for clocks needing rate assignment | ||
- assigned-clock-rates: list of clock frequencies sorted in the same order as | ||
the assigned-clocks property. | ||
|
||
MDP: | ||
Required properties: | ||
- compatible: "qcom,sdm845-dpu" | ||
- reg: physical base address and length of controller's registers. | ||
- reg-names : register region names. The following region is required: | ||
* "mdp" | ||
* "vbif" | ||
- clocks: list of clock specifiers for clocks needed by the device. | ||
- clock-names: device clock names, must be in same order as clocks property. | ||
The following clocks are required. | ||
* "bus" | ||
* "iface" | ||
* "core" | ||
* "vsync" | ||
- interrupts: interrupt line from DPU to MDSS. | ||
- ports: 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. | ||
|
||
Each output port contains an endpoint that describes how it is connected to an | ||
external interface. These are described by the standard properties documented | ||
here: | ||
Documentation/devicetree/bindings/graph.txt | ||
Documentation/devicetree/bindings/media/video-interfaces.txt | ||
|
||
Port 0 -> DPU_INTF1 (DSI1) | ||
Port 1 -> DPU_INTF2 (DSI2) | ||
|
||
Optional properties: | ||
- assigned-clocks: list of clock specifiers for clocks needing rate assignment | ||
- assigned-clock-rates: list of clock frequencies sorted in the same order as | ||
the assigned-clocks property. | ||
|
||
Example: | ||
|
||
mdss: mdss@ae00000 { | ||
compatible = "qcom,sdm845-mdss"; | ||
reg = <0xae00000 0x1000>; | ||
reg-names = "mdss"; | ||
|
||
power-domains = <&clock_dispcc 0>; | ||
|
||
clocks = <&gcc GCC_DISP_AHB_CLK>, <&gcc GCC_DISP_AXI_CLK>, | ||
<&clock_dispcc DISP_CC_MDSS_MDP_CLK>; | ||
clock-names = "iface", "bus", "core"; | ||
|
||
assigned-clocks = <&clock_dispcc DISP_CC_MDSS_MDP_CLK>; | ||
assigned-clock-rates = <300000000>; | ||
|
||
interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
|
||
iommus = <&apps_iommu 0>; | ||
|
||
#address-cells = <2>; | ||
#size-cells = <1>; | ||
ranges = <0 0 0xae00000 0xb2008>; | ||
|
||
mdss_mdp: mdp@ae01000 { | ||
compatible = "qcom,sdm845-dpu"; | ||
reg = <0 0x1000 0x8f000>, <0 0xb0000 0x2008>; | ||
reg-names = "mdp", "vbif"; | ||
|
||
clocks = <&clock_dispcc DISP_CC_MDSS_AHB_CLK>, | ||
<&clock_dispcc DISP_CC_MDSS_AXI_CLK>, | ||
<&clock_dispcc DISP_CC_MDSS_MDP_CLK>, | ||
<&clock_dispcc DISP_CC_MDSS_VSYNC_CLK>; | ||
clock-names = "iface", "bus", "core", "vsync"; | ||
|
||
assigned-clocks = <&clock_dispcc DISP_CC_MDSS_MDP_CLK>, | ||
<&clock_dispcc DISP_CC_MDSS_VSYNC_CLK>; | ||
assigned-clock-rates = <0 0 300000000 19200000>; | ||
|
||
interrupts = <0 IRQ_TYPE_LEVEL_HIGH>; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@0 { | ||
reg = <0>; | ||
dpu_intf1_out: endpoint { | ||
remote-endpoint = <&dsi0_in>; | ||
}; | ||
}; | ||
|
||
port@1 { | ||
reg = <1>; | ||
dpu_intf2_out: endpoint { | ||
remote-endpoint = <&dsi1_in>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
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
29 changes: 29 additions & 0 deletions
29
Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt
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,29 @@ | ||
AU Optronics Corporation 7.0" FHD (800 x 480) TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "auo,g070vvn01" | ||
- backlight: phandle of the backlight device attached to the panel | ||
- power-supply: single regulator to provide the supply voltage | ||
|
||
Required nodes: | ||
- port: Parallel port mapping to connect this display | ||
|
||
This panel needs single power supply voltage. Its backlight is conntrolled | ||
via PWM signal. | ||
|
||
Example: | ||
-------- | ||
|
||
Example device-tree definition when connected to iMX6Q based board | ||
|
||
lcd_panel: lcd-panel { | ||
compatible = "auo,g070vvn01"; | ||
backlight = <&backlight_lcd>; | ||
power-supply = <®_display>; | ||
|
||
port { | ||
lcd_panel_in: endpoint { | ||
remote-endpoint = <&lcd_display_out>; | ||
}; | ||
}; | ||
}; |
28 changes: 28 additions & 0 deletions
28
Documentation/devicetree/bindings/display/panel/boe,hv070wsa-100.txt
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,28 @@ | ||
BOE HV070WSA-100 7.01" WSVGA TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "boe,hv070wsa-100" | ||
- power-supply: regulator to provide the VCC supply voltage (3.3 volts) | ||
- enable-gpios: GPIO pin to enable and disable panel (active high) | ||
|
||
This binding is compatible with the simple-panel binding, which is specified | ||
in simple-panel.txt in this directory. | ||
|
||
The device node can contain one 'port' child node with one child | ||
'endpoint' node, according to the bindings defined in [1]. This | ||
node should describe panel's video bus. | ||
|
||
[1]: Documentation/devicetree/bindings/media/video-interfaces.txt | ||
|
||
Example: | ||
|
||
panel: panel { | ||
compatible = "boe,hv070wsa-100"; | ||
power-supply = <&vcc_3v3_reg>; | ||
enable-gpios = <&gpd1 3 GPIO_ACTIVE_HIGH>; | ||
port { | ||
panel_ep: endpoint { | ||
remote-endpoint = <&bridge_out_ep>; | ||
}; | ||
}; | ||
}; |
8 changes: 8 additions & 0 deletions
8
Documentation/devicetree/bindings/display/panel/dataimage,scf0700c48ggu18.txt
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,8 @@ | ||
DataImage, Inc. 7" WVGA (800x480) TFT LCD panel with 24-bit parallel interface. | ||
|
||
Required properties: | ||
- compatible: should be "dataimage,scf0700c48ggu18" | ||
- power-supply: as specified in the base binding | ||
|
||
This binding is compatible with the simple-panel binding, which is specified | ||
in simple-panel.txt in this directory. |
13 changes: 13 additions & 0 deletions
13
Documentation/devicetree/bindings/display/panel/dlc,dlc0700yzg-1.txt
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,13 @@ | ||
DLC Display Co. DLC0700YZG-1 7.0" WSVGA TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "dlc,dlc0700yzg-1" | ||
- power-supply: See simple-panel.txt | ||
|
||
Optional properties: | ||
- reset-gpios: See panel-common.txt | ||
- enable-gpios: See simple-panel.txt | ||
- backlight: See simple-panel.txt | ||
|
||
This binding is compatible with the simple-panel binding, which is specified | ||
in simple-panel.txt in this directory. |
39 changes: 39 additions & 0 deletions
39
Documentation/devicetree/bindings/display/panel/edt,et-series.txt
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,39 @@ | ||
Emerging Display Technology Corp. Displays | ||
========================================== | ||
|
||
|
||
Display bindings for EDT Display Technology Corp. Displays which are | ||
compatible with the simple-panel binding, which is specified in | ||
simple-panel.txt | ||
|
||
|
||
5,7" WVGA TFT Panels | ||
-------------------- | ||
|
||
+-----------------+---------------------+-------------------------------------+ | ||
| Identifier | compatbile | description | | ||
+=================+=====================+=====================================+ | ||
| ET057090DHU | edt,et057090dhu | 5.7" VGA TFT LCD panel | | ||
+-----------------+---------------------+-------------------------------------+ | ||
|
||
|
||
7,0" WVGA TFT Panels | ||
-------------------- | ||
|
||
+-----------------+---------------------+-------------------------------------+ | ||
| Identifier | compatbile | description | | ||
+=================+=====================+=====================================+ | ||
| ETM0700G0DH6 | edt,etm070080dh6 | WVGA TFT Display with capacitive | | ||
| | | Touchscreen | | ||
+-----------------+---------------------+-------------------------------------+ | ||
| ETM0700G0BDH6 | edt,etm070080bdh6 | Same as ETM0700G0DH6 but with | | ||
| | | inverted pixel clock. | | ||
+-----------------+---------------------+-------------------------------------+ | ||
| ETM0700G0EDH6 | edt,etm070080edh6 | Same display as the ETM0700G0BDH6, | | ||
| | | but with changed Hardware for the | | ||
| | | backlight and the touch interface | | ||
+-----------------+---------------------+-------------------------------------+ | ||
| ET070080DH6 | edt,etm070080dh6 | Same timings as the ETM0700G0DH6, | | ||
| | | but with resistive touch. | | ||
+-----------------+---------------------+-------------------------------------+ | ||
|
10 changes: 0 additions & 10 deletions
10
Documentation/devicetree/bindings/display/panel/edt,et070080dh6.txt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
Documentation/devicetree/bindings/display/panel/edt,etm0700g0dh6.txt
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
Documentation/devicetree/bindings/display/panel/ilitek,ili9881c.txt
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,20 @@ | ||
Ilitek ILI9881c based MIPI-DSI panels | ||
|
||
Required properties: | ||
- compatible: must be "ilitek,ili9881c" and one of: | ||
* "bananapi,lhr050h41" | ||
- reg: DSI virtual channel used by that screen | ||
- power-supply: phandle to the power regulator | ||
- reset-gpios: a GPIO phandle for the reset pin | ||
|
||
Optional properties: | ||
- backlight: phandle to the backlight used | ||
|
||
Example: | ||
panel@0 { | ||
compatible = "bananapi,lhr050h41", "ilitek,ili9881c"; | ||
reg = <0>; | ||
power-supply = <®_display>; | ||
reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */ | ||
backlight = <&pwm_bl>; | ||
}; |
12 changes: 12 additions & 0 deletions
12
Documentation/devicetree/bindings/display/panel/innolux,g070y2-l01.txt
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,12 @@ | ||
Innolux G070Y2-L01 7" WVGA (800x480) TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "innolux,g070y2-l01" | ||
- power-supply: as specified in the base binding | ||
|
||
Optional properties: | ||
- backlight: as specified in the base binding | ||
- enable-gpios: as specified in the base binding | ||
|
||
This binding is compatible with the simple-panel binding, which is specified | ||
in simple-panel.txt in this directory. |
Oops, something went wrong.