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 branch 'drm-misc-next-fixes' into drm-misc-fixes
Pick up 1ed134e drm/vc4: Fix VBLANK handling in crtc->enable() path From drm-misc-next-fixes, it was applied after the last pull request was sent from that branch. We'll send it through drm-fixes instead.
- Loading branch information
Showing
1,692 changed files
with
366,483 additions
and
30,235 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
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
8 changes: 8 additions & 0 deletions
8
Documentation/devicetree/bindings/display/panel/auo,p320hvn03.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 @@ | ||
AU Optronics Corporation 31.5" FHD (1920x1080) TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "auo,p320hvn03" | ||
- 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. |
23 changes: 23 additions & 0 deletions
23
Documentation/devicetree/bindings/display/panel/innolux,p079zca.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,23 @@ | ||
Innolux P079ZCA 7.85" 768x1024 TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "innolux,p079zca" | ||
- reg: DSI virtual channel of the peripheral | ||
- power-supply: phandle of the regulator that provides the supply voltage | ||
- enable-gpios: panel enable gpio | ||
|
||
Optional properties: | ||
- backlight: phandle of the backlight device attached to the panel | ||
|
||
Example: | ||
|
||
&mipi_dsi { | ||
panel { | ||
compatible = "innolux,p079zca"; | ||
reg = <0>; | ||
power-supply = <...>; | ||
backlight = <&backlight>; | ||
enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>; | ||
status = "okay"; | ||
}; | ||
}; |
8 changes: 8 additions & 0 deletions
8
Documentation/devicetree/bindings/display/panel/nec,nl12880b20-05.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 @@ | ||
NEC LCD Technologies, Ltd. 12.1" WXGA (1280x800) LVDS TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "nec,nl12880bc20-05" | ||
- 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. |
8 changes: 8 additions & 0 deletions
8
Documentation/devicetree/bindings/display/panel/nlt,nl192108ac18-02d.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 @@ | ||
NLT Technologies, Ltd. 15.6" FHD (1920x1080) LVDS TFT LCD panel | ||
|
||
Required properties: | ||
- compatible: should be "nlt,nl192108ac18-02d" | ||
- 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. |
5 changes: 4 additions & 1 deletion
5
Documentation/devicetree/bindings/display/panel/samsung,s6e3ha2.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
36 changes: 36 additions & 0 deletions
36
Documentation/devicetree/bindings/display/st,stm32-ltdc.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,36 @@ | ||
* STMicroelectronics STM32 lcd-tft display controller | ||
|
||
- ltdc: lcd-tft display controller host | ||
must be a sub-node of st-display-subsystem | ||
Required properties: | ||
- compatible: "st,stm32-ltdc" | ||
- reg: Physical base address of the IP registers and length of memory mapped region. | ||
- clocks: A list of phandle + clock-specifier pairs, one for each | ||
entry in 'clock-names'. | ||
- clock-names: A list of clock names. For ltdc it should contain: | ||
- "lcd" for the clock feeding the output pixel clock & IP clock. | ||
- resets: reset to be used by the device (defined by use of RCC macro). | ||
Required nodes: | ||
- Video port for RGB output. | ||
|
||
Example: | ||
|
||
/ { | ||
... | ||
soc { | ||
... | ||
ltdc: display-controller@40016800 { | ||
compatible = "st,stm32-ltdc"; | ||
reg = <0x40016800 0x200>; | ||
interrupts = <88>, <89>; | ||
resets = <&rcc STM32F4_APB2_RESET(LTDC)>; | ||
clocks = <&rcc 1 CLK_LCD>; | ||
clock-names = "lcd"; | ||
|
||
port { | ||
ltdc_out_rgb: endpoint { | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
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.