From: Sam Ravnborg <sam@ravnborg.org>
To: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
Cc: edmund.j.dea@intel.com, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v10 1/6] dt-bindings: display: Add support for Intel KeemBay Display
Date: Thu, 29 Oct 2020 23:20:46 +0100 [thread overview]
Message-ID: <20201029222046.GA904738@ravnborg.org> (raw)
In-Reply-To: <1604006877-20092-2-git-send-email-anitha.chrisanthus@intel.com>
Hi Anitha.
On Thu, Oct 29, 2020 at 02:27:52PM -0700, Anitha Chrisanthus wrote:
> This patch adds bindings for Intel KeemBay Display
>
> v2: review changes from Rob Herring
> v3: review changes from Sam Ravnborg (removed mipi dsi entries, and
> encoder entry, connect port to dsi)
> MSSCAM is part of the display submodule and its used to reset LCD
> and MIPI DSI clocks, so its best to be on this device tree.
>
> Signed-off-by: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Daniel Vetter <daniel@ffwll.ch>
Looks good - and the split betwwen the display and the mipi<->dsi parts
matches the understanding of the HW I have developed.
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
> .../bindings/display/intel,keembay-display.yaml | 75 ++++++++++++++++++++++
> 1 file changed, 75 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/display/intel,keembay-display.yaml
>
> diff --git a/Documentation/devicetree/bindings/display/intel,keembay-display.yaml b/Documentation/devicetree/bindings/display/intel,keembay-display.yaml
> new file mode 100644
> index 0000000..8a8effe
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/intel,keembay-display.yaml
> @@ -0,0 +1,75 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/display/intel,keembay-display.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Devicetree bindings for Intel Keem Bay display controller
> +
> +maintainers:
> + - Anitha Chrisanthus <anitha.chrisanthus@intel.com>
> + - Edmond J Dea <edmund.j.dea@intel.com>
> +
> +properties:
> + compatible:
> + const: intel,keembay-display
> +
> + reg:
> + items:
> + - description: LCD registers range
> + - description: Msscam registers range
> +
> + reg-names:
> + items:
> + - const: lcd
> + - const: msscam
> +
> + clocks:
> + items:
> + - description: LCD controller clock
> + - description: pll0 clock
> +
> + clock-names:
> + items:
> + - const: clk_lcd
> + - const: clk_pll0
> +
> + interrupts:
> + maxItems: 1
> +
> + port:
> + type: object
> + description: Display output node to DSI.
> +
> +required:
> + - compatible
> + - reg
> + - reg-names
> + - clocks
> + - clock-names
> + - interrupts
> + - port
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/irq.h>
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> + display@20930000 {
> + compatible = "intel,keembay-display";
> + reg = <0x20930000 0x3000>,
> + <0x20910000 0x30>;
> + reg-names = "lcd", "msscam";
> + interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&scmi_clk 0x83>,
> + <&scmi_clk 0x0>;
> + clock-names = "clk_lcd", "clk_pll0";
> +
> + port {
> + disp_out: endpoint {
> + remote-endpoint = <&dsi_in>;
> + };
> + };
> + };
> --
> 2.7.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2020-10-29 22:20 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-29 21:27 [PATCH v10 0/6] Add support for KeemBay DRM driver Anitha Chrisanthus
2020-10-29 21:27 ` [PATCH v10 1/6] dt-bindings: display: Add support for Intel KeemBay Display Anitha Chrisanthus
2020-10-29 22:20 ` Sam Ravnborg [this message]
2020-10-30 8:31 ` Neil Armstrong
2020-10-30 21:15 ` Sam Ravnborg
2020-11-02 15:16 ` Rob Herring
2020-11-02 16:38 ` Neil Armstrong
2020-11-02 18:04 ` Sam Ravnborg
2020-11-03 2:05 ` Rob Herring
2020-11-03 9:37 ` Neil Armstrong
2020-11-03 17:11 ` Sam Ravnborg
2020-11-03 2:02 ` Rob Herring
2020-11-03 9:36 ` Neil Armstrong
2020-10-29 21:27 ` [PATCH v10 2/6] dt-bindings: display: bridge: Intel KeemBay DSI Anitha Chrisanthus
2020-10-29 22:22 ` Sam Ravnborg
2020-10-30 8:32 ` Neil Armstrong
2020-10-29 21:27 ` [PATCH v10 3/6] drm/kmb: Keem Bay driver register definition Anitha Chrisanthus
2020-10-29 22:23 ` Sam Ravnborg
2020-10-29 21:27 ` [PATCH v10 4/6] drm/kmb: Add support for KeemBay Display Anitha Chrisanthus
2020-10-29 22:27 ` Sam Ravnborg
2020-10-29 21:27 ` [PATCH v10 5/6] drm/kmb: Mipi DSI part of the display driver Anitha Chrisanthus
2020-10-29 22:31 ` Sam Ravnborg
2020-10-29 21:27 ` [PATCH v10 6/6] drm/kmb: Build files for KeemBay Display driver Anitha Chrisanthus
2020-10-29 22:31 ` Sam Ravnborg
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=20201029222046.GA904738@ravnborg.org \
--to=sam@ravnborg.org \
--cc=anitha.chrisanthus@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=edmund.j.dea@intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).