summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/panel
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/panel')
-rw-r--r--dts/Bindings/panel/auo,b116xw03.txt7
-rw-r--r--dts/Bindings/panel/hannstar,hsd070pww1.txt7
-rw-r--r--dts/Bindings/panel/hit,tx23d38vm0caa.txt7
-rw-r--r--dts/Bindings/panel/innolux,g121i1-l01.txt7
-rw-r--r--dts/Bindings/panel/sharp,lq101r1sx01.txt49
5 files changed, 77 insertions, 0 deletions
diff --git a/dts/Bindings/panel/auo,b116xw03.txt b/dts/Bindings/panel/auo,b116xw03.txt
new file mode 100644
index 0000000000..690d0a568e
--- /dev/null
+++ b/dts/Bindings/panel/auo,b116xw03.txt
@@ -0,0 +1,7 @@
+AU Optronics Corporation 11.6" HD (1366x768) color TFT-LCD panel
+
+Required properties:
+- compatible: should be "auo,b116xw03"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/dts/Bindings/panel/hannstar,hsd070pww1.txt b/dts/Bindings/panel/hannstar,hsd070pww1.txt
new file mode 100644
index 0000000000..7da1d5c038
--- /dev/null
+++ b/dts/Bindings/panel/hannstar,hsd070pww1.txt
@@ -0,0 +1,7 @@
+HannStar Display Corp. HSD070PWW1 7.0" WXGA TFT LCD panel
+
+Required properties:
+- compatible: should be "hannstar,hsd070pww1"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/dts/Bindings/panel/hit,tx23d38vm0caa.txt b/dts/Bindings/panel/hit,tx23d38vm0caa.txt
new file mode 100644
index 0000000000..04caaae19a
--- /dev/null
+++ b/dts/Bindings/panel/hit,tx23d38vm0caa.txt
@@ -0,0 +1,7 @@
+Hitachi Ltd. Corporation 9" WVGA (800x480) TFT LCD panel
+
+Required properties:
+- compatible: should be "hit,tx23d38vm0caa"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/dts/Bindings/panel/innolux,g121i1-l01.txt b/dts/Bindings/panel/innolux,g121i1-l01.txt
new file mode 100644
index 0000000000..2743b07cd2
--- /dev/null
+++ b/dts/Bindings/panel/innolux,g121i1-l01.txt
@@ -0,0 +1,7 @@
+Innolux Corporation 12.1" WXGA (1280x800) TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,g121i1-l01"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/dts/Bindings/panel/sharp,lq101r1sx01.txt b/dts/Bindings/panel/sharp,lq101r1sx01.txt
new file mode 100644
index 0000000000..f522bb8e47
--- /dev/null
+++ b/dts/Bindings/panel/sharp,lq101r1sx01.txt
@@ -0,0 +1,49 @@
+Sharp Microelectronics 10.1" WQXGA TFT LCD panel
+
+This panel requires a dual-channel DSI host to operate. It supports two modes:
+- left-right: each channel drives the left or right half of the screen
+- even-odd: each channel drives the even or odd lines of the screen
+
+Each of the DSI channels controls a separate DSI peripheral. The peripheral
+driven by the first link (DSI-LINK1), left or even, is considered the primary
+peripheral and controls the device. The 'link2' property contains a phandle
+to the peripheral driven by the second link (DSI-LINK2, right or odd).
+
+Note that in video mode the DSI-LINK1 interface always provides the left/even
+pixels and DSI-LINK2 always provides the right/odd pixels. In command mode it
+is possible to program either link to drive the left/even or right/odd pixels
+but for the sake of consistency this binding assumes that the same assignment
+is chosen as for video mode.
+
+Required properties:
+- compatible: should be "sharp,lq101r1sx01"
+- reg: DSI virtual channel of the peripheral
+
+Required properties (for DSI-LINK1 only):
+- link2: phandle to the DSI peripheral on the secondary link. Note that the
+ presence of this property marks the containing node as DSI-LINK1.
+- power-supply: phandle of the regulator that provides the supply voltage
+
+Optional properties (for DSI-LINK1 only):
+- backlight: phandle of the backlight device attached to the panel
+
+Example:
+
+ dsi@54300000 {
+ panel: panel@0 {
+ compatible = "sharp,lq101r1sx01";
+ reg = <0>;
+
+ link2 = <&secondary>;
+
+ power-supply = <...>;
+ backlight = <...>;
+ };
+ };
+
+ dsi@54400000 {
+ secondary: panel@0 {
+ compatible = "sharp,lq101r1sx01";
+ reg = <0>;
+ };
+ };