From: Andrew Lunn <andrew@lunn.ch>
To: Piyush Malgujar <pmalgujar@marvell.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org,
cchavva@marvell.com, deppel@marvell.com,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Subject: Re: [PATCH v2 3/3] net: mdio: mdio-thunder: support for clock-freq attribute
Date: Sun, 5 Jun 2022 05:24:33 +0200 [thread overview]
Message-ID: <Ypwh8e0jdQPVyJVq@lunn.ch> (raw)
In-Reply-To: <20220530125329.30717-4-pmalgujar@marvell.com>
> +static inline u32 clk_freq(u32 phase)
Please keep with the naming scheme in the rest of the driver,
thunder_mdiobus_clk_freq()
> +{
> + return (100000000U / (2 * (phase)));
> +}
> +
> +static inline u32 calc_sample(u32 phase)
> +{
thunder_mdiobus_calc_sample()
> + return (2 * (phase) - 3);
> +}
> +
> +static u32 _config_clk(u32 req_freq, u32 *phase, u32 *sample)
thunder_mdiobus_config_clk().
> +{
> + unsigned int p;
> + u32 freq = 0, freq_prev;
> +
> + for (p = PHASE_MIN; p < PHASE_DFLT; p++) {
> + freq_prev = freq;
> + freq = clk_freq(p);
> +
> + if (req_freq >= freq)
> + break;
> + }
> +
> + if (p == PHASE_DFLT)
> + freq = clk_freq(PHASE_DFLT);
> +
> + if (p == PHASE_MIN || p == PHASE_DFLT)
> + goto out;
> +
> + /* Check which clock value from the identified range
> + * is closer to the requested value
> + */
> + if ((freq_prev - req_freq) < (req_freq - freq)) {
> + p = p - 1;
> + freq = freq_prev;
> + }
> +out:
> + *phase = p;
> + *sample = calc_sample(p);
> + return freq;
> +}
> +
> static int thunder_mdiobus_pci_probe(struct pci_dev *pdev,
> const struct pci_device_id *ent)
> {
> @@ -56,6 +101,7 @@ static int thunder_mdiobus_pci_probe(struct pci_dev *pdev,
> i = 0;
> device_for_each_child_node(&pdev->dev, fwn) {
> struct resource r;
> + u32 req_clk_freq;
> struct mii_bus *mii_bus;
> struct cavium_mdiobus *bus;
> union cvmx_smix_clk smi_clk;
> @@ -90,6 +136,23 @@ static int thunder_mdiobus_pci_probe(struct pci_dev *pdev,
>
> smi_clk.u64 = oct_mdio_readq(bus->register_base + SMI_CLK);
> smi_clk.s.clk_idle = 1;
> +
> + if (!of_property_read_u32(node, "clock-frequency", &req_clk_freq)) {
> + u32 phase, sample;
> +
> + dev_dbg(&pdev->dev, "requested bus clock frequency=%d\n",
> + req_clk_freq);
> +
> + bus->clk_freq = _config_clk(req_clk_freq,
> + &phase, &sample);
> +
> + smi_clk.s.phase = phase;
> + smi_clk.s.sample_hi = (sample >> 4) & 0x1f;
> + smi_clk.s.sample = sample & 0xf;
> + } else {
> + bus->clk_freq = clk_freq(PHASE_DFLT);
> + }
You can make this simpler by setting req_clk_freq to your odd
default. Then call of_property_read_u32(). If the property is not
defined, the value of req_clk_freq will not be changed, and the
calculation should come out with the correct value.
Andrew
next prev parent reply other threads:[~2022-06-05 3:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-30 12:53 [PATCH v2 0/3] net: mdio: mdio-thunder: MDIO clock related changes for Marvell Octeon Family Piyush Malgujar
2022-05-30 12:53 ` [PATCH v2 1/3] net: mdio: mdio-thunder: stop toggling SMI clock on idle Piyush Malgujar
2022-05-30 12:53 ` [PATCH v2 2/3] dt-bindings: net: cavium-mdio.txt: add clock-frequency attribute Piyush Malgujar
2022-06-02 15:07 ` Rob Herring
2022-06-05 14:59 ` Andrew Lunn
2022-05-30 12:53 ` [PATCH v2 3/3] net: mdio: mdio-thunder: support for clock-freq attribute Piyush Malgujar
2022-06-01 3:56 ` Jakub Kicinski
2022-06-05 3:24 ` Andrew Lunn [this message]
2022-06-01 3:54 ` [PATCH v2 0/3] net: mdio: mdio-thunder: MDIO clock related changes for Marvell Octeon Family Jakub Kicinski
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=Ypwh8e0jdQPVyJVq@lunn.ch \
--to=andrew@lunn.ch \
--cc=cchavva@marvell.com \
--cc=davem@davemloft.net \
--cc=deppel@marvell.com \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pmalgujar@marvell.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;
as well as URLs for NNTP newsgroup(s).