Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751621AbdITUai (ORCPT ); Wed, 20 Sep 2017 16:30:38 -0400 Received: from mail-pg0-f44.google.com ([74.125.83.44]:55189 "EHLO mail-pg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751450AbdITUag (ORCPT ); Wed, 20 Sep 2017 16:30:36 -0400 X-Google-Smtp-Source: AOwi7QDRsf1IUpnlTkojdYxCLqq3YVEamX+12HqquohNja5LlIDxHw6yEJm9vC1IHL0o2Pu2GdvmAQ== Date: Wed, 20 Sep 2017 13:30:33 -0700 From: Viresh Kumar To: Dong Aisheng Cc: Dong Aisheng , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, sboyd@codeaurora.org, vireshk@kernel.org, nm@ti.com, rjw@rjwysocki.net, shawnguo@kernel.org, Anson.Huang@nxp.com, ping.bai@nxp.com Subject: Re: [PATCH 1/7] PM / OPP: Add platform specific set_clk function Message-ID: <20170920203033.GD3001@ubuntu> References: <1503504610-12880-1-git-send-email-aisheng.dong@nxp.com> <1503504610-12880-2-git-send-email-aisheng.dong@nxp.com> <20170919225840.GI30848@ubuntu> <20170920070343.GA32187@b29396-OptiPlex-7040> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170920070343.GA32187@b29396-OptiPlex-7040> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2991 Lines: 71 On 20-09-17, 15:03, Dong Aisheng wrote: > I've been thinking of that before. > Actually IMX already does some similar thing for MX5 (no for MX6). > See: clk_cpu_set_rate() in drivers/clk/imx/clk-cpu.c. > > After some diggings, it seems MX7ULP is a bit more complicated than before > mainly due to two reasons: > 1) It requires to switch to different CPU mode accordingly when setting > clocks rate. That means we need handle this in clock driver as well > which looks not quite suitable although we could do if really want. > > 2) It uses different clocks for different CPU mode (RUN 416M or > HSRUN 528M), and those clocks have some dependency. > e.g. when setting HSRUN clock, we need change RUN clock parent to make sure > the SPLL_PFD is got disabled before changing rate, as both CPU mode using > the same parent SPLL_PFD clock. Doing this in clock driver also make things > a bit more complicated. > > The whole follow would be something like below: > static int imx7ulp_set_clk(struct device *dev, struct clk *clk, > unsigned long old_freq, unsigned long new_freq) > { > u32 val; > > /* > * Before changing the ARM core PLL, change the ARM clock soure > * to FIRC first. > */ > if (new_freq >= HSRUN_FREQ) { > clk_set_parent(clks[RUN_SCS_SEL].clk, clks[FIRC].clk); > > /* switch to HSRUN mode */ > val = readl_relaxed(smc_base + SMC_PMCTRL); > val |= (0x3 << 8); > writel_relaxed(val, smc_base + SMC_PMCTRL); > > /* change the clock rate in HSRUN */ > clk_set_rate(clks[SPLL_PFD0].clk, new_freq); > clk_set_parent(clks[HSRUN_SCS_SEL].clk, clks[SPLL_SEL].clk); > } else { > /* change the HSRUN clock to firc */ > clk_set_parent(clks[HSRUN_SCS_SEL].clk, clks[FIRC].clk); > > /* switch to RUN mode */ > val = readl_relaxed(smc_base + SMC_PMCTRL); > val &= ~(0x3 << 8); > writel_relaxed(val, smc_base + SMC_PMCTRL); > > clk_set_rate(clks[SPLL_PFD0].clk, new_freq); > clk_set_parent(clks[RUN_SCS_SEL].clk, clks[SPLL_SEL].clk); > } > > return 0; > } Right and we have the same thing in the cpufreq driver now. It will stay at some place and we need to find the best one, keeping in mind that we may or may not want to solve this problem in a generic way. > That's why i thought if we can make OPP core provide a way to handle such > complicated things in platform specific cpufreq driver. > > How would you suggest for this issue? I wouldn't add an API into the OPP framework if I were you. There is just too much code to add to the core to handle such platform specific stuff, which you are anyway going to keep somewhere as it is. IMHO, keeping that in the clock driver is a better thing to do than this. -- viresh