All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org,
	Daniel Vetter <daniel.vetter@intel.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/4] drm/tve200: Add DT bindings
Date: Thu, 17 Aug 2017 15:46:39 -0500	[thread overview]
Message-ID: <20170817204639.euyygue22s33atak@rob-hp-laptop> (raw)
In-Reply-To: <20170813151132.24736-2-linus.walleij@linaro.org>

On Sun, Aug 13, 2017 at 05:11:29PM +0200, Linus Walleij wrote:
> This adds device tree bindings for the Faraday TVE200 IP block.
> This IP block is present in the Gemini ARM SoC and also in some
> Grain Media GMxxxx SoCs.
> 
> Cc: devicetree@vger.kernel.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  .../devicetree/bindings/display/faraday,tve200.txt | 41 ++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/faraday,tve200.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/faraday,tve200.txt b/Documentation/devicetree/bindings/display/faraday,tve200.txt
> new file mode 100644
> index 000000000000..95d588fbb2f2
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/faraday,tve200.txt
> @@ -0,0 +1,41 @@
> +* Faraday TV Encoder TVE200
> +
> +Required properties:
> +
> +- compatible: must be one of:
> +	"faraday,tve200"
> +	"cortina,gemini-tvc", "faraday,tve200"
> +
> +- reg: base address and size of the control registers block
> +
> +- interrupts: contains an interrupt specifier for the interrupt
> +	line from the TVE200
> +
> +- clock-names: should contain "PCLK" for the clock line clocking the
> +	silicon and "TVE" for the 27MHz clock to the video driver
> +
> +- clocks: contains phandle and clock specifier pairs for the entries
> +	in the clock-names property. See
> +	Documentation/devicetree/bindings/clock/clock-bindings.txt
> +
> +Optional properties:
> +
> +- resets: contains the reset line phandle for the block
> +
> +Required sub-nodes:
> +
> +- port: describes LCD panel signals, following the common binding
> +	for video transmitter interfaces; see
> +	Documentation/devicetree/bindings/media/video-interfaces.txt

Need to explicitly list ports and endpoints.

Also, needs to be in the example as it is required.

> +
> +Example:
> +
> +tvc@6a000000 {

display-controller@...

> +	compatible = "faraday,tve200";
> +	reg = <0x6a000000 0x1000>;
> +	interrupts = <13 IRQ_TYPE_EDGE_RISING>;
> +	resets = <&syscon GEMINI_RESET_TVC>;
> +	clocks = <&syscon GEMINI_CLK_GATE_TVC>,
> +		 <&syscon GEMINI_CLK_TVC>;
> +	clock-names = "PCLK", "TVE";
> +};
> -- 
> 2.13.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: robh@kernel.org (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/4] drm/tve200: Add DT bindings
Date: Thu, 17 Aug 2017 15:46:39 -0500	[thread overview]
Message-ID: <20170817204639.euyygue22s33atak@rob-hp-laptop> (raw)
In-Reply-To: <20170813151132.24736-2-linus.walleij@linaro.org>

On Sun, Aug 13, 2017 at 05:11:29PM +0200, Linus Walleij wrote:
> This adds device tree bindings for the Faraday TVE200 IP block.
> This IP block is present in the Gemini ARM SoC and also in some
> Grain Media GMxxxx SoCs.
> 
> Cc: devicetree at vger.kernel.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  .../devicetree/bindings/display/faraday,tve200.txt | 41 ++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/faraday,tve200.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/faraday,tve200.txt b/Documentation/devicetree/bindings/display/faraday,tve200.txt
> new file mode 100644
> index 000000000000..95d588fbb2f2
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/faraday,tve200.txt
> @@ -0,0 +1,41 @@
> +* Faraday TV Encoder TVE200
> +
> +Required properties:
> +
> +- compatible: must be one of:
> +	"faraday,tve200"
> +	"cortina,gemini-tvc", "faraday,tve200"
> +
> +- reg: base address and size of the control registers block
> +
> +- interrupts: contains an interrupt specifier for the interrupt
> +	line from the TVE200
> +
> +- clock-names: should contain "PCLK" for the clock line clocking the
> +	silicon and "TVE" for the 27MHz clock to the video driver
> +
> +- clocks: contains phandle and clock specifier pairs for the entries
> +	in the clock-names property. See
> +	Documentation/devicetree/bindings/clock/clock-bindings.txt
> +
> +Optional properties:
> +
> +- resets: contains the reset line phandle for the block
> +
> +Required sub-nodes:
> +
> +- port: describes LCD panel signals, following the common binding
> +	for video transmitter interfaces; see
> +	Documentation/devicetree/bindings/media/video-interfaces.txt

Need to explicitly list ports and endpoints.

Also, needs to be in the example as it is required.

> +
> +Example:
> +
> +tvc at 6a000000 {

display-controller at ...

> +	compatible = "faraday,tve200";
> +	reg = <0x6a000000 0x1000>;
> +	interrupts = <13 IRQ_TYPE_EDGE_RISING>;
> +	resets = <&syscon GEMINI_RESET_TVC>;
> +	clocks = <&syscon GEMINI_CLK_GATE_TVC>,
> +		 <&syscon GEMINI_CLK_TVC>;
> +	clock-names = "PCLK", "TVE";
> +};
> -- 
> 2.13.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2017-08-17 20:46 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-13 15:11 [PATCH 0/4] DRM driver for Faraday TVE200 Linus Walleij
2017-08-13 15:11 ` Linus Walleij
     [not found] ` <20170813151132.24736-1-linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2017-08-13 15:11   ` [PATCH 1/4] drm/tve200: Add DT bindings Linus Walleij
2017-08-13 15:11     ` Linus Walleij
2017-08-17 20:46     ` Rob Herring [this message]
2017-08-17 20:46       ` Rob Herring
2017-08-13 15:11 ` [PATCH 2/4] drm/tve200: Add new driver for TVE200 Linus Walleij
2017-08-13 15:11   ` Linus Walleij
2017-08-14 14:20   ` Daniel Vetter
2017-08-14 14:20     ` Daniel Vetter
2017-08-15 20:02     ` Linus Walleij
2017-08-15 20:02       ` Linus Walleij
2017-08-15 20:08       ` Daniel Vetter
2017-08-15 20:08         ` Daniel Vetter
2017-08-14 18:56   ` Eric Anholt
2017-08-14 18:56     ` Eric Anholt
2017-08-20 10:04     ` Linus Walleij
2017-08-20 10:04       ` Linus Walleij
2017-08-15 21:49   ` Noralf Trønnes
2017-08-15 21:49     ` Noralf Trønnes
2017-08-13 15:11 ` [PATCH 3/4] ARM: dts: Add TVE200 to the Gemini SoC DTSI Linus Walleij
2017-08-13 15:11   ` Linus Walleij
2017-08-13 15:11 ` [PATCH 4/4] ARM: dts: Add TVE/TVC and ILI9322 panel to DIR-685 Linus Walleij
2017-08-13 15:11   ` Linus Walleij

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170817204639.euyygue22s33atak@rob-hp-laptop \
    --to=robh@kernel.org \
    --cc=daniel.vetter@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.