[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAL_JsqJk1qdKzeM+1n3ve65S43-B4Q93ns7Z7mOKidbFPA7KWw@mail.gmail.com>
Date: Wed, 17 Apr 2019 08:48:26 -0500
From: Rob Herring <robh+dt@...nel.org>
To: Paul Cercueil <paul@...pouillou.net>
Cc: David Airlie <airlied@...ux.ie>, Daniel Vetter <daniel@...ll.ch>,
Mark Rutland <mark.rutland@....com>,
Maarten Lankhorst <maarten.lankhorst@...ux.intel.com>,
Maxime Ripard <maxime.ripard@...tlin.com>,
Sean Paul <sean@...rly.run>, od@...c.me,
dri-devel <dri-devel@...ts.freedesktop.org>,
devicetree@...r.kernel.org,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v3 1/3] dt-bindings: Add doc for the ingenic-drm driver
On Sun, Apr 14, 2019 at 3:08 PM Paul Cercueil <paul@...pouillou.net> wrote:
>
> Add documentation for the devicetree bindings of the DRM driver for the
DRM is a Linuxism. What is the LCD controller h/w block called?
> JZ47xx family of SoCs from Ingenic.
>
> Signed-off-by: Paul Cercueil <paul@...pouillou.net>
> Tested-by: Artur Rojek <contact@...ur-rojek.eu>
> ---
>
> Notes:
> v2: Remove ingenic,panel property.
>
> v3: - Rename compatible strings from ingenic,jz47XX-drm to ingenic,jz47XX-lcd
> - The ingenic,lcd-mode property is now read from the panel node instead
> of from the driver node
>
> .../devicetree/bindings/display/ingenic,drm.txt | 53 ++++++++++++++++++++++
> 1 file changed, 53 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/display/ingenic,drm.txt
>
> diff --git a/Documentation/devicetree/bindings/display/ingenic,drm.txt b/Documentation/devicetree/bindings/display/ingenic,drm.txt
> new file mode 100644
> index 000000000000..9de47db8a515
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/ingenic,drm.txt
> @@ -0,0 +1,53 @@
> +Ingenic JZ47xx DRM driver
> +
> +Required properties:
> +- compatible: one of:
> + * ingenic,jz4740-lcd
> + * ingenic,jz4725b-lcd
> +- reg: LCD registers location and length
> +- clocks: LCD pixclock and device clock specifiers.
> + The device clock is only required on the JZ4740.
> +- clock-names: "lcd_pclk" and "lcd"
> +- interrupts: Specifies the interrupt line the LCD controller is connected to.
> +
> +Optional properties in the panel mode:
> +- ingenic,lcd-mode: LCD mode to use with the display panel.
> + See <dt-bindings/display/ingenic,drm.h> for all the
> + possible values.
> +
> +Example:
> +
> +#include <dt-bindings/display/ingenic,drm.h>
> +
> +panel {
> + compatible = "sharp,ls020b1dd01d", "simple-panel";
'simple-panel' is not a valid compatible string.
> +
> + backlight = <&backlight>;
> + power-supply = <&vcc>;
> +
> + ingenic,lcd-mode = <JZ_LCD_SPECIAL_TFT_2>;
> +
> + port {
> + panel_input: endpoint {
> + remote-endpoint = <&panel_output>;
> + };
> + };
> +};
> +
> +
> +lcd: lcd-controller@...50000 {
> + compatible = "ingenic,jz4725b-lcd";
> + reg = <0x13050000 0x1000>;
> +
> + interrupt-parent = <&intc>;
> + interrupts = <31>;
> +
> + clocks = <&cgu JZ4725B_CLK_LCD>;
> + clock-names = "lcd";
> +
> + port {
> + panel_output: endpoint {
> + remote-endpoint = <&panel_input>;
> + };
> + };
> +};
> --
> 2.11.0
>
Powered by blists - more mailing lists