From: Rob Herring <robh@kernel.org>
To: Devarsh Thakkar <devarsht@ti.com>
Cc: jyri.sarha@iki.fi, tomi.valkeinen@ideasonboard.com,
airlied@gmail.com, daniel@ffwll.ch,
maarten.lankhorst@linux.intel.com, mripard@kernel.org,
tzimmermann@suse.de, krzysztof.kozlowski+dt@linaro.org,
conor+dt@kernel.org, dri-devel@lists.freedesktop.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, nm@ti.com, vigneshr@ti.com,
kristo@kernel.org, praneeth@ti.com, a-bhatia1@ti.com,
j-luthra@ti.com
Subject: Re: [RFC PATCH 1/3] dt-bindings: display: ti,am65x-dss: Add support for display sharing mode
Date: Wed, 17 Jan 2024 14:13:42 -0600 [thread overview]
Message-ID: <20240117201342.GA3041972-robh@kernel.org> (raw)
In-Reply-To: <20240116134142.2092483-2-devarsht@ti.com>
On Tue, Jan 16, 2024 at 07:11:40PM +0530, Devarsh Thakkar wrote:
> Add support for using TI Keystone DSS hardware present in display
> sharing mode.
>
> TI Keystone DSS hardware supports partitioning of resources between
> multiple hosts as it provides separate register space and unique
> interrupt line to each host.
>
> The DSS hardware can be used in shared mode in such a way that one or
> more of video planes can be owned by Linux wherease other planes can be
> owned by remote cores.
>
> One or more of the video ports can be dedicated exclusively to a
> processing core, wherease some of the video ports can be shared between
> two hosts too with only one of them having write access.
>
> Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
> ---
> .../bindings/display/ti/ti,am65x-dss.yaml | 82 +++++++++++++++++++
> 1 file changed, 82 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml b/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
> index 55e3e490d0e6..d9bc69fbf1fb 100644
> --- a/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
> +++ b/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
> @@ -112,6 +112,86 @@ properties:
> Input memory (from main memory to dispc) bandwidth limit in
> bytes per second
>
> + ti,dss-shared-mode:
> + type: boolean
> + description:
> + TI DSS7 supports sharing of display between multiple hosts
> + as it provides separate register space for display configuration and
> + unique interrupt line to each host.
If you care about line breaks, you need '|'.
> + One of the host is provided access to the global display
> + configuration labelled as "common" region of DSS allows that host
> + exclusive access to global registers of DSS while other host can
> + configure the display for it's usage using a separate register
> + space labelled as "common1".
> + The DSS resources can be partitioned in such a way that one or more
> + of the video planes are owned by Linux whereas other video planes
Your h/w can only run Linux?
What if you want to use this same binding to define the configuration to
the 'remote processor'? You can easily s/Linux/the OS/, but it all
should be reworded to describe things in terms of the local processor.
> + can be owned by a remote core.
> + The video port controlling these planes acts as a shared video port
> + and it can be configured with write access either by Linux or the
> + remote core in which case Linux only has read-only access to that
> + video port.
What is the purpose of this property when all the other properties are
required?
> +
> + ti,dss-shared-mode-planes:
> + description:
> + The video layer that is owned by processing core running Linux.
> + The display driver running from Linux has exclusive write access to
> + this video layer.
> + $ref: /schemas/types.yaml#/definitions/string
> + enum: [vidl, vid]
> +
> + ti,dss-shared-mode-vp:
> + description:
> + The video port that is being used in context of processing core
> + running Linux with display susbsytem being used in shared mode.
> + This can be owned either by the processing core running Linux in
> + which case Linux has the write access and the responsibility to
> + configure this video port and the associated overlay manager or
> + it can be shared between core running Linux and a remote core
> + with remote core provided with write access to this video port and
> + associated overlay managers and remote core configures and drives
> + this video port also feeding data from one or more of the
> + video planes owned by Linux, with Linux only having read-only access
> + to this video port and associated overlay managers.
> +
> + $ref: /schemas/types.yaml#/definitions/string
> + enum: [vp1, vp2]
> +
> + ti,dss-shared-mode-common:
> + description:
> + The DSS register region owned by processing core running Linux.
> + $ref: /schemas/types.yaml#/definitions/string
> + enum: [common, common1]
> +
> + ti,dss-shared-mode-vp-owned:
> + description:
> + This tells whether processing core running Linux has write access to
> + the video ports enlisted in ti,dss-shared-mode-vps.
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [0, 1]
This can be boolean. Do writes abort or just get ignored? The latter can
be probed and doesn't need a property.
> +
> + ti,dss-shared-mode-plane-zorder:
> + description:
> + The zorder of the planes owned by Linux.
> + For the scenario where Linux is not having write access to associated
> + video port, this field is just for
> + informational purpose to enumerate the zorder configuration
> + being used by remote core.
> +
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [0, 1]
I don't understand how 0 or 1 defines Z-order.
> +
> +dependencies:
> + ti,dss-shared-mode: [ 'ti,dss-shared-mode-planes', 'ti,dss-shared-mode-vp',
> + 'ti,dss-shared-mode-plane-zorder', 'ti,dss-shared-mode-vp-owned']
> + ti,dss-shared-mode-vp: ['ti,dss-shared-mode', 'ti,dss-shared-mode-planes',
> + 'ti,dss-shared-mode-plane-zorder', 'ti,dss-shared-mode-vp-owned']
> + ti,dss-shared-mode-planes: ['ti,dss-shared-mode', 'ti,dss-shared-mode-vp',
> + 'ti,dss-shared-mode-plane-zorder', 'ti,dss-shared-mode-vp-owned']
> + ti,dss-shared-mode-plane-zorder: ['ti,dss-shared-mode-planes', 'ti,dss-shared-mode-vp',
> + 'ti,dss-shared-mode', 'ti,dss-shared-mode-vp-owned']
> + ti,dss-shared-mode-vp-owned: ['ti,dss-shared-mode-planes', 'ti,dss-shared-mode-vp',
> + 'ti,dss-shared-mode', 'ti,dss-shared-mode-plane-zorder']
> +
> allOf:
> - if:
> properties:
> @@ -123,6 +203,8 @@ allOf:
> ports:
> properties:
> port@0: false
> + ti,dss-shared-mode-vp:
> + enum: [vp2]
This should throw a warning. You just defined a property called 'enum'.
Rob
next prev parent reply other threads:[~2024-01-17 20:13 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-16 13:41 [RFC PATCH 0/3] Add display sharing support in tidss Devarsh Thakkar
2024-01-16 13:41 ` [RFC PATCH 1/3] dt-bindings: display: ti,am65x-dss: Add support for display sharing mode Devarsh Thakkar
2024-01-17 20:13 ` Rob Herring [this message]
2024-01-17 22:37 ` Rob Herring
2024-01-18 13:58 ` Devarsh Thakkar
2024-01-19 13:55 ` Rob Herring
2024-02-08 10:43 ` Devarsh Thakkar
2024-01-16 13:41 ` [RFC PATCH 2/3] drm/tidss: Add support for display sharing Devarsh Thakkar
2024-01-23 8:26 ` Tomi Valkeinen
2024-01-26 12:15 ` Maxime Ripard
2024-02-08 12:56 ` Devarsh Thakkar
2024-02-13 14:04 ` Maxime Ripard
2024-02-14 15:47 ` Devarsh Thakkar
2024-03-14 14:34 ` Maxime Ripard
2024-03-22 15:29 ` Devarsh Thakkar
2024-05-15 14:45 ` Javier Martinez Canillas
2024-05-16 12:51 ` Daniel Vetter
2024-05-29 14:46 ` Devarsh Thakkar
2024-06-06 17:20 ` Maxime Ripard
2024-01-16 13:41 ` [RFC PATCH 3/3] arm64: dts: ti: k3-am62x: Add overlay to use DSS in display sharing mode Devarsh Thakkar
2024-01-23 8:29 ` Tomi Valkeinen
2024-02-08 11:05 ` Devarsh Thakkar
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=20240117201342.GA3041972-robh@kernel.org \
--to=robh@kernel.org \
--cc=a-bhatia1@ti.com \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=daniel@ffwll.ch \
--cc=devarsht@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=j-luthra@ti.com \
--cc=jyri.sarha@iki.fi \
--cc=kristo@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=nm@ti.com \
--cc=praneeth@ti.com \
--cc=tomi.valkeinen@ideasonboard.com \
--cc=tzimmermann@suse.de \
--cc=vigneshr@ti.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).