Commit 6406e45c authored by Dave Airlie's avatar Dave Airlie
Browse files

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

drm/panel: Changes for v4.3-rc1

This introduces support for a couple of new panels and also contains
some work to restructure the directories to get more consistency, to
deal better with more panel and bridge drivers getting added.

* tag 'drm/panel/for-4.3-rc1' of git://anongit.freedesktop.org/tegra/linux:
  drm/bridge: Put Kconfig entries in a separate menu
  drm/panel: Add support for LG LG4573 480x800 4.3" panel
  drm/panel: Add display timing for Okaya RS800480T-7X0GP
  of: Add Okaya Electric America vendor prefix
  drm/panel: simple: Add support for NEC NL4827HC19-05B 480x272 panel
  drm/panel: simple: Add support for AUO B080UAN01
  drm/panel: simple: Correct minimum hsync length of the HannStar HSD070PWW1 panel
  drm/panel: simple: Add bus format for HannStar HSD070PWW1 LVDS panel
  drm/bridge: Add vendor prefixes
  drm/panel: Add Samsung prefix to panel drivers
  drm/exynos: Remove PTN3460 dependency
parents bef2c7bd a33ee95f
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
AU Optronics Corporation 8.0" WUXGA TFT LCD panel

Required properties:
- compatible: should be "auo,b101ean01"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+19 −0
Original line number Original line Diff line number Diff line
LG LG4573 TFT Liquid Crystal Display with SPI control bus

Required properties:
  - compatible: "lg,lg4573"
  - reg: address of the panel on the SPI bus

The panel must obey rules for SPI slave device specified in document [1].

[1]: Documentation/devicetree/bindings/spi/spi-bus.txt

Example:

	lcd_panel: display@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "lg,lg4573";
		spi-max-frequency = <10000000>;
		reg = <0>;
	};
+7 −0
Original line number Original line Diff line number Diff line
NEC LCD Technologies,Ltd. WQVGA TFT LCD panel

Required properties:
- compatible: should be "nec,nl4827hc19-05b"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+7 −0
Original line number Original line Diff line number Diff line
OKAYA Electric America, Inc. RS800480T-7X0GP 7" WVGA LCD panel

Required properties:
- compatible: should be "okaya,rs800480t-7x0gp"

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+1 −0
Original line number Original line Diff line number Diff line
@@ -148,6 +148,7 @@ nintendo Nintendo
nokia	Nokia
nokia	Nokia
nvidia	NVIDIA
nvidia	NVIDIA
nxp	NXP Semiconductors
nxp	NXP Semiconductors
okaya	Okaya Electric America, Inc.
onnn	ON Semiconductor Corp.
onnn	ON Semiconductor Corp.
opencores	OpenCores.org
opencores	OpenCores.org
ortustech	Ortus Technology Co., Ltd.
ortustech	Ortus Technology Co., Ltd.
Loading