All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Rob Herring <robh+dt@kernel.org>,
	dri-devel@lists.freedesktop.org,
	Michal Simek <michal.simek@xilinx.com>,
	Jianqiang Chen <jianqian@xilinx.com>,
	devicetree@vger.kernel.org
Subject: Re: [PATCH 01/36] dt-bindings: display: xlnx: zynqmp-dpsub: Add OF graph ports
Date: Fri, 13 Aug 2021 15:54:52 -0500	[thread overview]
Message-ID: <YRbcHBZn5QX5Q5mQ@robh.at.kernel.org> (raw)
In-Reply-To: <20210809013457.11266-2-laurent.pinchart@ideasonboard.com>

On Mon, 09 Aug 2021 04:34:22 +0300, Laurent Pinchart wrote:
> The DPSUB doesn't live in isolation, but is connected to the
> programmable logic for live inputs and outputs, and also has a
> DisplayPort output. Model all those using OF graph.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
>  .../display/xlnx/xlnx,zynqmp-dpsub.yaml       | 67 +++++++++++++++++++
>  1 file changed, 67 insertions(+)
> 

Reviewed-by: Rob Herring <robh@kernel.org>

  reply	other threads:[~2021-08-13 20:54 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-09  1:34 [PATCH 00/36] drm: xlnx: zynqmp_dpsub: Initial live video input support Laurent Pinchart
2021-08-09  1:34 ` [PATCH 01/36] dt-bindings: display: xlnx: zynqmp-dpsub: Add OF graph ports Laurent Pinchart
2021-08-13 20:54   ` Rob Herring [this message]
2021-08-09  1:34 ` [PATCH 02/36] drm: xlnx: zynqmp_dpsub: Switch to atomic encoder enable/disable Laurent Pinchart
2021-08-09  1:34 ` [PATCH 03/36] drm: xlnx: zynqmp_dpsub: Constify mode argument to function Laurent Pinchart
2021-08-09  1:34 ` [PATCH 04/36] drm: xlnx: zynqmp_dpsub: Create DRM bridge to model DP encoder Laurent Pinchart
2021-08-09  1:34 ` [PATCH 05/36] drm: xlnx: zynqmp_dpsub: Don't access connector in zynqmp_dp_set_format() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 06/36] drm: xlnx: zynqmp_dpsub: Move connector registration to bridge attach Laurent Pinchart
2021-08-09  1:34 ` [PATCH 07/36] drm: xlnx: zynqmp_dpsub: Move encoder to DPSUB core Laurent Pinchart
2021-08-09  1:34 ` [PATCH 08/36] drm: xlnx: zynqmp_dpsub: Attach to the next bridge Laurent Pinchart
2021-08-09  1:34 ` [PATCH 09/36] drm: xlnx: zynqmp_dpsub: Use DRM connector bridge helper Laurent Pinchart
2021-08-09  1:34 ` [PATCH 10/36] drm: xlnx: zynqmp_dpsub: Report HPD through the bridge Laurent Pinchart
2021-08-09  1:34 ` [PATCH 11/36] drm: xlnx: zynqmp_dpsub: Drop unused zynqmp_disp.event field Laurent Pinchart
2021-08-09  1:34 ` [PATCH 12/36] drm: xlnx: zynqmp_dpsub: Drop unused zynqmp_disp_format.bus_fmt field Laurent Pinchart
2021-08-09  1:34 ` [PATCH 13/36] drm: xlnx: zynqmp_dpsub: Don't pass CRTC to zynqmp_disp_setup_clock() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 14/36] drm: xlnx: zynqmp_dpsub: Configure blender in zynqmp_disp_enable() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 15/36] drm: xlnx: zynqmp_dpsub: Use local variable in zynqmp_disp_layer_update() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 16/36] drm: xlnx: zynqmp_dpsub: Pass format info to zynqmp_disp_layer_set_format() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 17/36] drm: xlnx: zynqmp_dpsub: Remplace hardcoded values with ARRAY_SIZE() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 18/36] drm: xlnx: zynqmp_dpsub: Don't use drmm_kcalloc() for temporary data Laurent Pinchart
2021-08-09  1:34 ` [PATCH 19/36] drm: xlnx: zynqmp_dpsub: Move pclk from zynqmp_disp to zynqmp_dpsub Laurent Pinchart
2021-08-09  1:34 ` [PATCH 20/36] drm: xlnx: zynqmp_dpsub: Move audio clk " Laurent Pinchart
2021-08-09  1:34 ` [PATCH 21/36] drm: xlnx: zynqmp_dpsub: Move CRTC to zynqmp_dpsub structure Laurent Pinchart
2021-08-09  1:34 ` [PATCH 22/36] drm: xlnx: zynqmp_dpsub: Move planes " Laurent Pinchart
2021-08-09  1:34 ` [PATCH 23/36] drm: xlnx: zynqmp_dpsub: Move CRTC handling to zynqmp_kms.c Laurent Pinchart
2021-08-09  1:34 ` [PATCH 24/36] drm: xlnx: zynqmp_dpsub: Move planes " Laurent Pinchart
2021-08-09  1:34 ` [PATCH 25/36] drm: xlnx: zynqmp_dpsub: Register AUX bus at bridge attach time Laurent Pinchart
2021-08-09  1:34 ` [PATCH 26/36] drm: xlnx: zynqmp_dpsub: Move DP bridge init to zynqmp_dp_probe() Laurent Pinchart
2021-08-09  1:34 ` [PATCH 27/36] drm: xlnx: zynqmp_dpsub: Manage DP and DISP allocations manually Laurent Pinchart
2021-08-09  1:34 ` [PATCH 28/36] drm: xlnx: zynqmp_dpsub: Move all DRM init and cleanup to zynqmp_kms.c Laurent Pinchart
2021-08-09  1:34 ` [PATCH 29/36] drm: xlnx: zynqmp_dpsub: Decouple DRM device from zynqmp_dpsub Laurent Pinchart
2021-08-09  1:34 ` [PATCH 30/36] drm: xlnx: zynqmp_dpsub: Rename zynqmp_dpsub_handle_vblank with DRM prefix Laurent Pinchart
2021-08-09  1:34 ` [PATCH 31/36] drm: xlnx: zynqmp_dpsub: Parse DT to find connected ports Laurent Pinchart
2021-08-09  1:34 ` [PATCH 32/36] drm: xlnx: zynqmp_dpsub: Allow configuration of layer mode Laurent Pinchart
2021-08-09  1:34 ` [PATCH 33/36] drm: xlnx: zynqmp_dpsub: Support operation without DMA engine Laurent Pinchart
2021-08-09  1:34 ` [PATCH 34/36] drm: xlnx: zynqmp_dpsub: Add support for live video input Laurent Pinchart
2021-08-09  1:34 ` [PATCH 35/36] arm64: dts: zynqmp: Add ports for the DisplayPort subsystem Laurent Pinchart
2021-08-09  1:34 ` [PATCH 36/36] arm64: dts: zynqmp: zcu106a: Describe DisplayPort connector Laurent Pinchart

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=YRbcHBZn5QX5Q5mQ@robh.at.kernel.org \
    --to=robh@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jianqian@xilinx.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=michal.simek@xilinx.com \
    --cc=robh+dt@kernel.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.