Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752228AbbFVUGH (ORCPT ); Mon, 22 Jun 2015 16:06:07 -0400 Received: from mail-pd0-f169.google.com ([209.85.192.169]:33759 "EHLO mail-pd0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751408AbbFVUGE convert rfc822-to-8bit (ORCPT ); Mon, 22 Jun 2015 16:06:04 -0400 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT To: Geert Uytterhoeven , "Stephen Boyd" , "Simon Horman" , "Magnus Damm" , "Laurent Pinchart" , "Rafael J. Wysocki" , "Kevin Hilman" , "Ulf Hansson" From: Michael Turquette In-Reply-To: <1432839219-475-14-git-send-email-geert+renesas@glider.be> Cc: linux-clk@vger.kernel.org, linux-pm@vger.kernel.org, linux-sh@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, "Geert Uytterhoeven" References: <1432839219-475-1-git-send-email-geert+renesas@glider.be> <1432839219-475-14-git-send-email-geert+renesas@glider.be> Message-ID: <20150622200549.9112.2411@quantum> User-Agent: alot/0.3.5 Subject: Re: [PATCH v2 13/14] clk: shmobile: mstp: Consider "zb_clk" suitable for power management Date: Mon, 22 Jun 2015 13:05:49 -0700 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1888 Lines: 54 Quoting Geert Uytterhoeven (2015-05-28 11:53:38) > Currently the CPG Clock Domain code looks for MSTP clocks to power > manage a device. > > Unfortunately, on R-Mobile APE6 (r8a73a4) and SH-Mobile AG5 (sh73a0), > the Bus State Controller (BSC) is not power-managed by an MSTP clock, > but by a plain CPG clock (zb_clk). Add a special case to handle this, > so the clock is properly managed, and devices connected to the BSC work > as expected. > > Signed-off-by: Geert Uytterhoeven > --- > v2: > - New. > --- > drivers/clk/shmobile/clk-mstp.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/clk/shmobile/clk-mstp.c b/drivers/clk/shmobile/clk-mstp.c > index 619f3eccefd4884f..19e2b11953383587 100644 > --- a/drivers/clk/shmobile/clk-mstp.c > +++ b/drivers/clk/shmobile/clk-mstp.c > @@ -258,6 +258,10 @@ int cpg_mstp_attach_dev(struct generic_pm_domain *domain, struct device *dev) > "renesas,cpg-mstp-clocks")) > goto found; > > + /* BSC on r8a73a4/sh73a0 uses zb_clk instead of an mstp clock*/ > + if (!strcmp(clkspec.np->name, "zb_clk")) > + goto found; Hello Geert, Is the driver the right place to handle this corner case? What do you think about linking zb_clk up to the bsc devicetree node for r8a73a4/sh73a0? Regards, Mike > + > of_node_put(clkspec.np); > i++; > } > -- > 1.9.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/