[PATCH v2 02/11] ARM: dts: imx7s: Update coresight DT bindings

2019-05-07 Thread Leo Yan
CoreSight DT bindings have been updated, thus the old compatible strings
are obsolete and the drivers will report warning if DTS uses these
obsolete strings.

This patch switches to the new bindings for CoreSight dynamic funnel and
static replicator, so can dismiss warning during initialisation.

Cc: Shawn Guo 
Cc: Chris Healy 
Cc: Andrew Lunn 
Cc: Fabio Estevam 
Cc: Mathieu Poirier 
Cc: Suzuki K Poulose 
Signed-off-by: Leo Yan 
---
 arch/arm/boot/dts/imx7s.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi
index 106711d2c01b..d8b4eb67146d 100644
--- a/arch/arm/boot/dts/imx7s.dtsi
+++ b/arch/arm/boot/dts/imx7s.dtsi
@@ -117,7 +117,7 @@
 * non-configurable replicators don't show up on the
 * AMBA bus.  As such no need to add "arm,primecell"
 */
-   compatible = "arm,coresight-replicator";
+   compatible = "arm,coresight-static-replicator";
 
out-ports {
#address-cells = <1>;
@@ -175,7 +175,7 @@
ranges;
 
funnel@30041000 {
-   compatible = "arm,coresight-funnel", "arm,primecell";
+   compatible = "arm,coresight-dynamic-funnel", 
"arm,primecell";
reg = <0x30041000 0x1000>;
clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
clock-names = "apb_pclk";
@@ -217,7 +217,7 @@
};
 
funnel@30083000 {
-   compatible = "arm,coresight-funnel", "arm,primecell";
+   compatible = "arm,coresight-dynamic-funnel", 
"arm,primecell";
reg = <0x30083000 0x1000>;
clocks = <&clks IMX7D_MAIN_AXI_ROOT_CLK>;
clock-names = "apb_pclk";
-- 
2.17.1



Re: [PATCH v2 02/11] ARM: dts: imx7s: Update coresight DT bindings

2019-05-19 Thread Shawn Guo
On Wed, May 08, 2019 at 10:18:53AM +0800, Leo Yan wrote:
> CoreSight DT bindings have been updated, thus the old compatible strings
> are obsolete and the drivers will report warning if DTS uses these
> obsolete strings.
> 
> This patch switches to the new bindings for CoreSight dynamic funnel and
> static replicator, so can dismiss warning during initialisation.
> 
> Cc: Shawn Guo 
> Cc: Chris Healy 
> Cc: Andrew Lunn 
> Cc: Fabio Estevam 
> Cc: Mathieu Poirier 
> Cc: Suzuki K Poulose 
> Signed-off-by: Leo Yan 

Applied, thanks.