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-misc-next-2018-06-27' of git://anongit.freedesktop.org…
…/drm/drm-misc into drm-next drm-misc-next for 4.19: Cross-subsystem Changes: devicetree documentation dt-bindings defintions for sun8i (Jernej Skrabec) Core Changes: Consider drivers setting DRIVER_ATOMIC as atomic (Eric Anholt) Improvements for in-kernel clients (Noralf Trønnes) Export and rename drm_crtc_port_mask() (Jernej Skrabec) Driver Changes: v3d: Add looking for GPU scheduler jobs management (Eric Anholt) Add Ilitek ILI9881c panel driver(Maxime Ripard) rockchip: vop: fixup linebuffer mode calc error (Sandy Huang) tinydrm: new driver for ILI9341 display panels (David Lechner) sun4i: Add TCON TOP driver (Jernej Skrabec) Signed-off-by: Dave Airlie <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/20180628010018.GA10929@juma
- Loading branch information
Showing
45 changed files
with
1,854 additions
and
321 deletions.
There are no files selected for viewing
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>; | ||
}; |
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>; | ||
}; |
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.