[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1b568e12-dd45-f371-a1a8-576c97a6b58e@ti.com>
Date: Wed, 17 Jan 2018 17:55:16 +0530
From: Sekhar Nori <nsekhar@...com>
To: David Lechner <david@...hnology.com>, <linux-clk@...r.kernel.org>,
<devicetree@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>
CC: Michael Turquette <mturquette@...libre.com>,
Stephen Boyd <sboyd@...eaurora.org>,
Rob Herring <robh+dt@...nel.org>,
Mark Rutland <mark.rutland@....com>,
Kevin Hilman <khilman@...nel.org>,
Adam Ford <aford173@...il.com>, <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v5 10/44] clk: davinci: New driver for davinci PSC clocks
On Tuesday 16 January 2018 10:21 PM, David Lechner wrote:
>>> +static struct clk *davinci_psc_clk_register(const char *name,
>>> + const char *parent_name,
>>> + struct regmap *regmap,
>>> + u32 lpsc, u32 pd, u32 flags)
>>> +{
>>> + struct clk_init_data init;
>>> + struct davinci_psc_clk *psc;
>>> + struct clk *clk;
>>> +
>>> + psc = kzalloc(sizeof(*psc), GFP_KERNEL);
>>> + if (!psc)
>>> + return ERR_PTR(-ENOMEM);
>>> +
>>> + init.name = name;
>>> + init.ops = &davinci_psc_clk_ops;
>>> + init.parent_names = (parent_name ? &parent_name : NULL);
>>> + init.num_parents = (parent_name ? 1 : 0);
>>> + init.flags = CLK_SET_RATE_PARENT;
>>
>> Is this needed since PSC does not cause any rate change?
>
> Yes, because one of the PSCs is the ARM clock and for cpufreq, we
> need to propagate the rate change up the chain to SYSCLK6.
Good point. But how about treating that as an exception with a new LPSC_
quirk flag?
Thanks,
Sekhar
Powered by blists - more mailing lists