From: Liang Yang <liang.yang@amlogic.com>
To: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Cc: <jianxin.pan@amlogic.com>, <boris.brezillon@bootlin.com>,
<linux-mtd@lists.infradead.org>, <yixun.lan@amlogic.com>,
<dwmw2@infradead.org>, <computersforpeace@gmail.com>,
<marek.vasut@gmail.com>, <richard@nod.at>, <jbrunet@baylibre.com>,
Neil Armstrong <narmstrong@baylibre.com>, <carlo@caione.org>,
<khilman@baylibre.com>, <robh@kernel.org>, <jian.hu@amlogic.com>,
<hanjie.lin@amlogic.com>, <victor.wan@amlogic.com>,
<linux-amlogic@lists.infradead.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 2/2] mtd: rawnand: meson: add support for Amlogic NAND flash controller
Date: Fri, 28 Sep 2018 16:31:26 +0800 [thread overview]
Message-ID: <6ed594d7-ca01-1b07-e68a-2998c1f9c263@amlogic.com> (raw)
In-Reply-To: <CAFBinCBLfoqnLK_hu6fufO4MXKKoRDPDuJgLasCNYWeuL6tCKw@mail.gmail.com>
On 9/27/2018 5:12 PM, Martin Blumenstingl wrote:
> Hello Liang,
>
> On Thu, Sep 27, 2018 at 10:19 AM Liang Yang <liang.yang@amlogic.com> wrote:
>>
>> Hello Martin,
>>
>> On 9/22/2018 11:32 PM, Martin Blumenstingl wrote:
>>> Hello,
>>>
>>> On Thu, Sep 20, 2018 at 10:51 AM Jianxin Pan <jianxin.pan@amlogic.com> wrote:
>>> [snip]
>>>> +static int meson_nfc_clk_init(struct meson_nfc *nfc)
>>>> +{
>>>> + int ret;
>>>> +
>>>> + /* request core clock */
>>>> + nfc->core_clk = devm_clk_get(nfc->dev, "core");
>>>> + if (IS_ERR(nfc->core_clk)) {
>>>> + dev_err(nfc->dev, "failed to get core clk\n");
>>>> + return PTR_ERR(nfc->core_clk);
>>>> + }
>>>> +
>>>> + nfc->device_clk = devm_clk_get(nfc->dev, "device");
>>>> + if (IS_ERR(nfc->device_clk)) {
>>>> + dev_err(nfc->dev, "failed to get device clk\n");
>>>> + return PTR_ERR(nfc->device_clk);
>>>> + }
>>>> +
>>>> + nfc->phase_tx = devm_clk_get(nfc->dev, "tx");
>>>> + if (IS_ERR(nfc->phase_tx)) {
>>>> + dev_err(nfc->dev, "failed to get tx clk\n");
>>>> + return PTR_ERR(nfc->phase_tx);
>>>> + }
>>>> +
>>>> + nfc->phase_rx = devm_clk_get(nfc->dev, "rx");
>>>> + if (IS_ERR(nfc->phase_rx)) {
>>>> + dev_err(nfc->dev, "failed to get rx clk\n");
>>>> + return PTR_ERR(nfc->phase_rx);
>>>> + }
>>> neither the "rx" nor the "tx" clock are documented in the dt-bindings patch
>>>
>>
>> ok, i will add them later.
>>
>>>> + /* init SD_EMMC_CLOCK to sane defaults w/min clock rate */
>>>> + regmap_update_bits(nfc->reg_clk, 0,
>>>> + CLK_SELECT_NAND | CLK_ALWAYS_ON | CLK_DIV_MASK,
>>>> + CLK_SELECT_NAND | CLK_ALWAYS_ON | CLK_DIV_MASK);
>>> clk_set_rate also works for clocks that are not enabled yet (except if
>>> they have the flag CLK_SET_RATE_UNGATE)
>>> this should help you to remove CLK_DIV_MASK here
>>>
>>
>> if not set clk_div_mask here, the value 0x00 of divider means nand clock
>> off, even read/write nand register is forbidden.
> ah, now I see the pattern here.
> Jerome has written a "sclk-div" driver (which is currently only used
> for the audio clocks on AXG). based on reading the code it seems that
> switching the driver of the divider clock to sclk-div would allow you
> to remove setting CLK_DIV_MASK here:
> - the "hi" parameter in struct meson_sclk_div_data is optional ->
> then the sclk-div clock won't try to change the duty cycle
> - sclk_div_init reads the divider at initialization time - if it's 0
> it takes the maximum possible divider value
> - sclk_div_enable (which you're going to call anyways, through
> clk_prepare_enable) will then set the divider to the greatest possible
> value
>
I read the code and it makes sense.
I try ro add mmc_clkc_regmap_divider_ops in clk-regmap.c and implement
the initial value when enable call. like this:
+static int mmc_clkc_regmap_div_enable(struct clk_hw *hw)
+{
+ struct clk_regmap *clk = to_clk_regmap(hw);
+ struct clk_regmap_div_data *div = clk_get_regmap_div_data(clk);
+ unsigned int val;
+
+ regmap_read(clk->map, div->offset, &val);
+ val &= clk_div_mask(div->width);
+ if (!val)
+ regmap_update_bits(clk->map, div->offset,
+ clk_div_mask(div->width) << div->shift,
+ clk_div_mask(div->width));
+ return 0;
+}
it works.
>>> is CLK_SELECT_NAND a bit that switches the clock output from the sdmmc
>>> controller to the NAND controller?
>>> if so: can this be modeled as a mux clock?
>>>
>>
>> it seems to like a gate. 1: nand is selected; 0: emmc is selected.
>> Is it suitable for making it as a mux clock?
> my understanding of a gate is:
> - register value X = OFF, value Y = ON
>
> but in your case it's:
> - 0 = eMMC is ON but NAND is OFF
> - 1 = eMMC is OFF but NAND is ON
> (so both values mean "on", just for different contexts)
>
> I believe you need to set this value for eMMC as well:
> what if the bootloader (or hardware defaults, etc.) incorrectly sets
> the value to 1 but the Linux .dts is configured to use eMMC?
>
en , we need set 0 for emmc as well.
>>> the public S905 datasheet doesn't mention CLK_ALWAYS_ON at bit 28 but
>>> uses bit 24 instead. the description from the datasheet:
>>> Cfg_always_on:
>>> 1: Keep clock always on
>>> 0: Clock on/off controlled by activities.
>>> Any APB3 access or descriptor execution will turn clock on.
>>> Recommended value: 0
>>>
>>> can you please explain what CLK_ALWAYS_ON does and why it has to be 1?
>>>
>>
>> em , it is the same as bit 24 in S905 datasheet, only moves to bit 28.
>> it means keeping internal clock on whether nand wroks or not.
>> it doesn't have to be 1; i have tried 0 successfully on AXG platform.
> my preference would be to use the recommended value from the datasheet
> unless there's a good argument why it has to be different
>
>
indeed, i will adopt the recommended value.
> Regards
> Martin
>
> .
>
next prev parent reply other threads:[~2018-09-28 8:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-20 8:50 [PATCH v4 0/2] mtd: rawnand: meson: add Amlogic NAND driver support Jianxin Pan
2018-09-20 8:50 ` [PATCH v4 1/2] dt-bindings: nand: meson: add Amlogic NAND controller driver Jianxin Pan
2018-09-27 18:16 ` Rob Herring
2018-09-28 8:33 ` Liang Yang
2018-09-20 8:50 ` [PATCH v4 2/2] mtd: rawnand: meson: add support for Amlogic NAND flash controller Jianxin Pan
2018-09-22 15:32 ` Martin Blumenstingl
2018-09-27 8:16 ` Liang Yang
2018-09-27 9:12 ` Martin Blumenstingl
2018-09-28 8:31 ` Liang Yang [this message]
2018-10-29 9:47 ` Miquel Raynal
2018-10-29 11:09 ` Jianxin Pan
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=6ed594d7-ca01-1b07-e68a-2998c1f9c263@amlogic.com \
--to=liang.yang@amlogic.com \
--cc=boris.brezillon@bootlin.com \
--cc=carlo@caione.org \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=hanjie.lin@amlogic.com \
--cc=jbrunet@baylibre.com \
--cc=jian.hu@amlogic.com \
--cc=jianxin.pan@amlogic.com \
--cc=khilman@baylibre.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=martin.blumenstingl@googlemail.com \
--cc=narmstrong@baylibre.com \
--cc=richard@nod.at \
--cc=robh@kernel.org \
--cc=victor.wan@amlogic.com \
--cc=yixun.lan@amlogic.com \
/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
Powered by JetHome