Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c771633d authored by Daniel Vetter's avatar Daniel Vetter
Browse files

Merge airlied/drm-next into drm-misc-next



Backmerge the main pull request to sync up with all the newly landed
drivers. Otherwise we'll have chaos even before 4.12 started in
earnest.

Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
parents 62b69566 64a57719
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
Multi-Inno MI0283QT display panel

Required properties:
- compatible:	"multi-inno,mi0283qt".

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:
- dc-gpios:	D/C pin. The presence/absence of this GPIO determines
		the panel interface mode (IM[3:0] pins):
		- present: IM=x110 4-wire 8-bit data serial interface
		- absent:  IM=x101 3-wire 9-bit data serial interface
- reset-gpios:	Reset pin
- power-supply:	A regulator node for the supply voltage.
- backlight:	phandle of the backlight device attached to the panel
- rotation:	panel rotation in degrees counter clockwise (0,90,180,270)

Example:
	mi0283qt@0{
		compatible = "multi-inno,mi0283qt";
		reg = <0>;
		spi-max-frequency = <32000000>;
		rotation = <90>;
		dc-gpios = <&gpio 25 0>;
		backlight = <&backlight>;
	};
+7 −0
Original line number Diff line number Diff line
BOE OPTOELECTRONICS TECHNOLOGY 10.1" WXGA TFT LCD panel

Required properties:
- compatible: should be "boe,nv101wxmn51"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+7 −0
Original line number Diff line number Diff line
Netron-DY E231732 7.0" WSVGA TFT LCD panel

Required properties:
- compatible: should be "netron-dy,e231732"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+4 −0
Original line number Diff line number Diff line
Common display properties
-------------------------

- rotation:	Display rotation in degrees counter clockwise (0,90,180,270)
+7 −0
Original line number Diff line number Diff line
Tianma Micro-electronics TM070JDHG30 7.0" WXGA TFT LCD panel

Required properties:
- compatible: should be "tianma,tm070jdhg30"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
Loading