From: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
To: Helen Koike <helen.koike@collabora.com>
Cc: linux-rockchip@lists.infradead.org, kernel@collabora.com,
ezequiel@collabora.com, laurent.pinchart@ideasonboard.com,
linux-arm-kernel@lists.infradead.org,
Vicente Bergas <vicencb@gmail.com>,
Heiko Stuebner <heiko@sntech.de>,
devicetree@vger.kernel.org,
Klaus Goger <klaus.goger@theobroma-systems.com>,
linux-kernel@vger.kernel.org,
Christoph Muellner <christoph.muellner@theobroma-systems.com>,
Randy Li <ayaka@soulik.info>,
Philipp Tomsich <philipp.tomsich@theobroma-systems.com>,
Rob Herring <robh+dt@kernel.org>,
Tony Xie <tony.xie@rock-chips.com>,
Mark Rutland <mark.rutland@arm.com>,
Viresh Kumar <viresh.kumar@linaro.org>,
Marc Zyngier <marc.zyngier@arm.com>,
Matthias Brugger <matthias.bgg@gmail.com>
Subject: Re: [PATCH] arm64: dts: rockchip: fix isp iommu clocks and power domain
Date: Mon, 3 Jun 2019 20:18:38 +0530 [thread overview]
Message-ID: <20190603144838.GA27534@mani> (raw)
In-Reply-To: <20190603142214.24686-1-helen.koike@collabora.com>
On Mon, Jun 03, 2019 at 11:22:15AM -0300, Helen Koike wrote:
> isp iommu requires wrapper variants of the clocks.
> noc variants are always on and using the wrapper variants will activate
> {A,H}CLK_ISP{0,1} due to the hierarchy.
>
> Also add the respective power domain.
>
> Refer:
> RK3399 TRM v1.4 Fig. 2-4 RK3399 Clock Architecture Diagram
> RK3399 TRM v1.4 Fig. 8-1 RK3399 Power Domain Partition
>
> Signed-off-by: Helen Koike <helen.koike@collabora.com>
Tested on Rock960 with ISP patches.
Tested-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Thanks,
Mani
>
> ---
> Hello,
>
> I tested this using the isp patch set (which is not upstream
> yet). Without this patch, streaming from the isp stalls.
>
> I'm also enabling the power domain and removing the disable status,
> please let me know if this should be done in a separated patch.
>
> Thanks
> Helen
>
> arch/arm64/boot/dts/rockchip/rk3399.dtsi | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/rockchip/rk3399.dtsi b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
> index 196ac9b78076..89594a7276f4 100644
> --- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi
> +++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
> @@ -1706,11 +1706,11 @@
> reg = <0x0 0xff914000 0x0 0x100>, <0x0 0xff915000 0x0 0x100>;
> interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH 0>;
> interrupt-names = "isp0_mmu";
> - clocks = <&cru ACLK_ISP0_NOC>, <&cru HCLK_ISP0_NOC>;
> + clocks = <&cru ACLK_ISP0_WRAPPER>, <&cru HCLK_ISP0_WRAPPER>;
> clock-names = "aclk", "iface";
> #iommu-cells = <0>;
> + power-domains = <&power RK3399_PD_ISP0>;
> rockchip,disable-mmu-reset;
> - status = "disabled";
> };
>
> isp1_mmu: iommu@ff924000 {
> @@ -1718,11 +1718,11 @@
> reg = <0x0 0xff924000 0x0 0x100>, <0x0 0xff925000 0x0 0x100>;
> interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH 0>;
> interrupt-names = "isp1_mmu";
> - clocks = <&cru ACLK_ISP1_NOC>, <&cru HCLK_ISP1_NOC>;
> + clocks = <&cru ACLK_ISP1_WRAPPER>, <&cru HCLK_ISP1_WRAPPER>;
> clock-names = "aclk", "iface";
> #iommu-cells = <0>;
> + power-domains = <&power RK3399_PD_ISP1>;
> rockchip,disable-mmu-reset;
> - status = "disabled";
> };
>
> hdmi_sound: hdmi-sound {
> --
> 2.20.1
>
next prev parent reply other threads:[~2019-06-03 14:48 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-03 14:22 [PATCH] arm64: dts: rockchip: fix isp iommu clocks and power domain Helen Koike
2019-06-03 14:44 ` Ezequiel Garcia
2019-06-03 14:48 ` Manivannan Sadhasivam [this message]
2019-06-04 13:37 ` Heiko Stuebner
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=20190603144838.GA27534@mani \
--to=manivannan.sadhasivam@linaro.org \
--cc=ayaka@soulik.info \
--cc=christoph.muellner@theobroma-systems.com \
--cc=devicetree@vger.kernel.org \
--cc=ezequiel@collabora.com \
--cc=heiko@sntech.de \
--cc=helen.koike@collabora.com \
--cc=kernel@collabora.com \
--cc=klaus.goger@theobroma-systems.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=marc.zyngier@arm.com \
--cc=mark.rutland@arm.com \
--cc=matthias.bgg@gmail.com \
--cc=philipp.tomsich@theobroma-systems.com \
--cc=robh+dt@kernel.org \
--cc=tony.xie@rock-chips.com \
--cc=vicencb@gmail.com \
--cc=viresh.kumar@linaro.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 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).