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

Commit 07ade844 authored by Dave Airlie's avatar Dave Airlie
Browse files

Merge tag 'drm/panel/for-4.5-rc1' of git://anongit.freedesktop.org/tegra/linux into drm-next

drm/panel: Changes for v4.5-rc1

This set of changes brings in a few more helpers for DSI support as well
as a couple of new drivers and support for some more simple panels.

* tag 'drm/panel/for-4.5-rc1' of git://anongit.freedesktop.org/tegra/linux:
  drm/panel: simple: Add QiaoDian qd43003c0-40
  of: Add vendor prefix for QiaoDian Xianshi
  drm/panel: add kernel doc for size attributes in panel_desc
  drm/panel: simple: Add support for Kyocera TCG121XGLP panel
  devicetree: add vendor prefix for Kyocera Corporation
  drm/bridge: Remove gratuitous blank line
  drm/bridge: dw-hdmi: Use dashes in filenames
  drm/panel: Add Sharp LS043T1LE01 MIPI DSI panel
  dt-bindings: Add Sharp LS043T1LE01 panel binding
  drm/dsi: Add Turn On/Shutdown Peripheral command helpers
  drm/panel: Add Panasonic VVX10F034N00 MIPI DSI panel
  dt-bindings: Add Panasonic VVX10F034N00 panel binding
  drm/panel: simple: Add support for Innolux G121X1-L03
  drm/panel: simple: Add support for BOE TV080WUM-NL0
  dt-bindings: Add BOE TV080WUM-NL0 panel binding
  of: Add vendor prefix for BOE Technology Group
  drm/dsi: Add a helper to get bits per pixel of MIPI DSI pixel format
parents 51bce5bc d2a6f0f5
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
Boe Corporation 8.0" WUXGA TFT LCD panel

Required properties:
- compatible: should be "boe,tv080wum-nl0"

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
Innolux Corporation 12.1" G121X1-L03 XGA (1024x768) TFT LCD panel

Required properties:
- compatible: should be "innolux,g121x1-l03"

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
Kyocera Corporation 12.1" XGA (1024x768) TFT LCD panel

Required properties:
- compatible: should be "kyo,tcg121xglp"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+22 −0
Original line number Diff line number Diff line
Sharp Microelectronics 4.3" qHD TFT LCD panel

Required properties:
- compatible: should be "sharp,ls043t1le01-qhd"
- reg: DSI virtual channel of the peripheral
- power-supply: phandle of the regulator that provides the supply voltage

Optional properties:
- backlight: phandle of the backlight device attached to the panel
- reset-gpios: a GPIO spec for the reset pin

Example:

	mdss_dsi@fd922800 {
		panel@0 {
			compatible = "sharp,ls043t1le01-qhd";
			reg = <0>;
			avdd-supply = <&pm8941_l22>;
			backlight = <&pm8941_wled>;
			reset-gpios = <&pm8941_gpios 19 GPIO_ACTIVE_HIGH>;
		};
	};
+20 −0
Original line number Diff line number Diff line
Panasonic 10" WUXGA TFT LCD panel

Required properties:
- compatible: should be "panasonic,vvx10f034n00"
- reg: DSI virtual channel of the peripheral
- power-supply: phandle of the regulator that provides the supply voltage

Optional properties:
- backlight: phandle of the backlight device attached to the panel

Example:

	mdss_dsi@fd922800 {
		panel@0 {
			compatible = "panasonic,vvx10f034n00";
			reg = <0>;
			power-supply = <&vreg_vsp>;
			backlight = <&lp8566_wled>;
		};
	};
Loading