From: Michal Simek <michal.simek@amd.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>
Cc: linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
"Vishal Sagar" <vishal.sagar@amd.com>,
"Anatoliy Klymenko" <anatoliy.klymenko@amd.com>,
"Péter Ujfalusi" <peter.ujfalusi@gmail.com>
Subject: Re: [PATCH v3 2/3] arm64: dts: zynqmp: Add DMA for DP audio
Date: Wed, 23 Oct 2024 14:50:15 +0200 [thread overview]
Message-ID: <c1d30ad1-868a-480a-9601-32106e8d2baf@amd.com> (raw)
In-Reply-To: <9f7f0fd7-bca9-4c92-9590-ce621dce7f5f@ideasonboard.com>
Hi Tomi,
On 10/23/24 14:00, Tomi Valkeinen wrote:
> Hi Michal,
>
> On 08/10/2024 11:22, Michal Simek wrote:
>>
>>
>> On 9/10/24 13:19, Tomi Valkeinen wrote:
>>> Add the two DMA channels used for the DisplayPort audio to the
>>> zynqmp_dpsub node.
>>>
>>> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
>>> ---
>>> arch/arm64/boot/dts/xilinx/zynqmp.dtsi | 7 +++++--
>>> 1 file changed, 5 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/ dts/
>>> xilinx/zynqmp.dtsi
>>> index b1b31dcf6291..673ca8422e6b 100644
>>> --- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
>>> +++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi
>>> @@ -1207,11 +1207,14 @@ zynqmp_dpsub: display@fd4a0000 {
>>> "dp_vtc_pixel_clk_in";
>>> power-domains = <&zynqmp_firmware PD_DP>;
>>> resets = <&zynqmp_reset ZYNQMP_RESET_DP>;
>>> - dma-names = "vid0", "vid1", "vid2", "gfx0";
>>> + dma-names = "vid0", "vid1", "vid2", "gfx0",
>>> + "aud0", "aud1";
>>> dmas = <&zynqmp_dpdma ZYNQMP_DPDMA_VIDEO0>,
>>> <&zynqmp_dpdma ZYNQMP_DPDMA_VIDEO1>,
>>> <&zynqmp_dpdma ZYNQMP_DPDMA_VIDEO2>,
>>> - <&zynqmp_dpdma ZYNQMP_DPDMA_GRAPHICS>;
>>> + <&zynqmp_dpdma ZYNQMP_DPDMA_GRAPHICS>,
>>> + <&zynqmp_dpdma ZYNQMP_DPDMA_AUDIO0>,
>>> + <&zynqmp_dpdma ZYNQMP_DPDMA_AUDIO1>;
>>> ports {
>>> #address-cells = <1>;
>>>
>>
>> Acked-by: Michal Simek <michal.simek@amd.com>
>>
>> If you want me to take this patch via my tree please let me know.
>
> Thanks. I've sent a v4, but no changes to this patch.
>
> I'm not sure what is the custom with xilinx dts changes. With the other
> platforms dts changes have always gone through a single tree, not via driver trees.
>
> I don't have a preference either way, so if there's no clear rule here, I can
> take this one with the other patches.
I have seen it both ways. If this is done with patches it is easier because I
can't really send it before dt binding patch reaches upstream. It means there is
going to be delay.
Normally it should be enough that I gave you my tag that you can also change the
DT files too.
Thanks,
Michal
next prev parent reply other threads:[~2024-10-23 12:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-10 11:19 [PATCH v3 0/3] drm: xlnx: zynqmp: Add DP audio support Tomi Valkeinen
2024-09-10 11:19 ` [PATCH v3 1/3] dt-bindings: display/xlnx/zynqmp-dpsub: Add audio DMAs Tomi Valkeinen
2024-09-11 15:19 ` Rob Herring (Arm)
2024-09-10 11:19 ` [PATCH v3 2/3] arm64: dts: zynqmp: Add DMA for DP audio Tomi Valkeinen
2024-10-08 8:22 ` Michal Simek
2024-10-23 12:00 ` Tomi Valkeinen
2024-10-23 12:50 ` Michal Simek [this message]
2024-09-10 11:19 ` [PATCH v3 3/3] drm: xlnx: zynqmp_dpsub: Add DP audio support Tomi Valkeinen
2024-09-10 15:30 ` Markus Elfring
2024-09-10 15:55 ` Markus Elfring
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=c1d30ad1-868a-480a-9601-32106e8d2baf@amd.com \
--to=michal.simek@amd.com \
--cc=airlied@gmail.com \
--cc=anatoliy.klymenko@amd.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=daniel@ffwll.ch \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=krzk+dt@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lars@metafoo.de \
--cc=laurent.pinchart@ideasonboard.com \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=perex@perex.cz \
--cc=peter.ujfalusi@gmail.com \
--cc=robh+dt@kernel.org \
--cc=tiwai@suse.com \
--cc=tomi.valkeinen@ideasonboard.com \
--cc=tzimmermann@suse.de \
--cc=vishal.sagar@amd.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