new file mode 100644
@@ -0,0 +1,39 @@
+SSD2858 bridge + Innolux P097PFG 9.7" 1536x2048 TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,p097pfg_ssd2858"
+- reg: DSI virtual channel of the peripheral
+- avdd-supply: phandle of the regulator that provides panel positive voltage
+- avee-supply: phandle of the regulator that provides panel negative voltage
+- pp1800-supply: phandle of the regulator that provides panel 1.8V IO power
+- pp3300-supply: phandle of the regulator that provides ssd2858 3.3V URAM power
+- pp1200-bridge-supply: phandle of the regulator that provides ssd2858 1.2V core power
+- vddio-bridge-supply: phandle of the regulator that provides ssd2858 1.8V IO power
+- enable-gpios: panel enable gpio
+
+Optional properties:
+- backlight: phandle of the backlight device attached to the panel
+
+Example:
+
+ &dsi0 {
+ panel: panel@0 {
+ compatible = "innolux,p097pfg_ssd2858";
+ reg = <0>;
+ enable-gpios = <&pio 45 0 &pio 73 0>;
+ avdd-supply = <...>;
+ avee-supply = <...>;
+ pp1800-supply = <...>;
+ pp3300-supply = <...>;
+ pp1200-bridge-supply = <...>;
+ vddio-bridge-supply = <...>;
+ backlight = <&backlight_lcd0>;
+ status = "okay";
+ port {
+ panel_in: endpoint {
+ remote-endpoint = <&dsi_out>;
+ };
+ };
+ };
+
+ };
This adds documentation for innolux,p097pfg panel with bridge chip ssd2858. Signed-off-by: Jitao Shi <jitao.shi@mediatek.com> --- .../display/panel/innolux,p097pfg_ssd2858.txt | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/panel/innolux,p097pfg_ssd2858.txt