-
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/panel/for-4.3-rc1' of git://anongit.freedesktop.org/te…
…gra/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
- Loading branch information
Showing
19 changed files
with
481 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
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. |
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,19 @@ | ||
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 changes: 7 additions & 0 deletions
7
Documentation/devicetree/bindings/panel/nec,nl4827hc19-05b.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,7 @@ | ||
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 changes: 7 additions & 0 deletions
7
Documentation/devicetree/bindings/panel/okaya,rs800480t-7x0gp.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,7 @@ | ||
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. |
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
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 |
---|---|---|
@@ -1,24 +1,32 @@ | ||
config DRM_BRIDGE | ||
def_bool y | ||
depends on DRM | ||
help | ||
Bridge registration and lookup framework. | ||
|
||
menu "Display Interface Bridges" | ||
depends on DRM && DRM_BRIDGE | ||
|
||
config DRM_DW_HDMI | ||
tristate | ||
depends on DRM | ||
select DRM_KMS_HELPER | ||
|
||
config DRM_PTN3460 | ||
tristate "PTN3460 DP/LVDS bridge" | ||
depends on DRM | ||
config DRM_NXP_PTN3460 | ||
tristate "NXP PTN3460 DP/LVDS bridge" | ||
depends on OF | ||
select DRM_KMS_HELPER | ||
select DRM_PANEL | ||
---help--- | ||
ptn3460 eDP-LVDS bridge chip driver. | ||
NXP PTN3460 eDP-LVDS bridge chip driver. | ||
|
||
config DRM_PS8622 | ||
config DRM_PARADE_PS8622 | ||
tristate "Parade eDP/LVDS bridge" | ||
depends on DRM | ||
depends on OF | ||
select DRM_PANEL | ||
select DRM_KMS_HELPER | ||
select BACKLIGHT_LCD_SUPPORT | ||
select BACKLIGHT_CLASS_DEVICE | ||
---help--- | ||
parade eDP-LVDS bridge chip driver. | ||
Parade eDP-LVDS bridge chip driver. | ||
|
||
endmenu |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ccflags-y := -Iinclude/drm | ||
|
||
obj-$(CONFIG_DRM_PS8622) += ps8622.o | ||
obj-$(CONFIG_DRM_PTN3460) += ptn3460.o | ||
obj-$(CONFIG_DRM_DW_HDMI) += dw_hdmi.o | ||
obj-$(CONFIG_DRM_NXP_PTN3460) += nxp-ptn3460.o | ||
obj-$(CONFIG_DRM_PARADE_PS8622) += parade-ps8622.o |
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
obj-$(CONFIG_DRM_PANEL_SIMPLE) += panel-simple.o | ||
obj-$(CONFIG_DRM_PANEL_LD9040) += panel-ld9040.o | ||
obj-$(CONFIG_DRM_PANEL_S6E8AA0) += panel-s6e8aa0.o | ||
obj-$(CONFIG_DRM_PANEL_LG_LG4573) += panel-lg-lg4573.o | ||
obj-$(CONFIG_DRM_PANEL_SAMSUNG_LD9040) += panel-samsung-ld9040.o | ||
obj-$(CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0) += panel-samsung-s6e8aa0.o | ||
obj-$(CONFIG_DRM_PANEL_SHARP_LQ101R1SX01) += panel-sharp-lq101r1sx01.o |
Oops, something went wrong.