From: Potin Lai <potin.lai.pt@gmail.com>
To: Brendan Higgins <brendanhiggins@google.com>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Joel Stanley <joel@jms.id.au>, Andrew Jeffery <andrew@aj.id.au>,
Rob Herring <robh+dt@kernel.org>,
Rayn Chen <rayn_chen@aspeedtech.com>
Cc: Patrick Williams <patrick@stwcx.xyz>,
Potin Lai <potin.lai@quantatw.com>,
linux-i2c@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-aspeed@lists.ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/2] aspeed: i2c: add clock duty cycle property
Date: Wed, 22 Jun 2022 22:50:51 +0800 [thread overview]
Message-ID: <47e7eb15-e38d-ead3-de84-b7454e2c6eb8@gmail.com> (raw)
In-Reply-To: <20220610054722.32229-2-potin.lai.pt@gmail.com>
Potin Lai 於 6/10/2022 1:47 PM 寫道:
> Introduce i2c-clk-high-min-percent property for setting a minimum clock
> high percentage.
>
> This driver calculate clk_high and clk_low with giving duty cycle. If it
> could not find a suit clk_high and clk_low, it apply default duty cycle
> 50%.
>
> Signed-off-by: Potin Lai <potin.lai.pt@gmail.com>
> ---
> drivers/i2c/busses/i2c-aspeed.c | 56 ++++++++++++++++++++++++++-------
> 1 file changed, 45 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c
> index 67e8b97c0c95..9715dc4f933f 100644
> --- a/drivers/i2c/busses/i2c-aspeed.c
> +++ b/drivers/i2c/busses/i2c-aspeed.c
> @@ -19,6 +19,7 @@
> #include <linux/irqchip/chained_irq.h>
> #include <linux/irqdomain.h>
> #include <linux/kernel.h>
> +#include <linux/math.h>
> #include <linux/module.h>
> #include <linux/of_address.h>
> #include <linux/of_irq.h>
> @@ -27,6 +28,8 @@
> #include <linux/reset.h>
> #include <linux/slab.h>
>
> +#define DEFAULT_I2C_CLK_DUTY_CYCLE 50
> +
> /* I2C Register */
> #define ASPEED_I2C_FUN_CTRL_REG 0x00
> #define ASPEED_I2C_AC_TIMING_REG1 0x04
> @@ -149,9 +152,11 @@ struct aspeed_i2c_bus {
> spinlock_t lock;
> struct completion cmd_complete;
> u32 (*get_clk_reg_val)(struct device *dev,
> - u32 divisor);
> + u32 divisor,
> + u32 duty_cycle);
> unsigned long parent_clk_frequency;
> u32 bus_frequency;
> + u32 duty_cycle;
> /* Transaction state. */
> enum aspeed_i2c_master_state master_state;
> struct i2c_msg *msgs;
> @@ -798,9 +803,11 @@ static const struct i2c_algorithm aspeed_i2c_algo = {
>
> static u32 aspeed_i2c_get_clk_reg_val(struct device *dev,
> u32 clk_high_low_mask,
> - u32 divisor)
> + u32 divisor,
> + u32 duty_cycle)
> {
> u32 base_clk_divisor, clk_high_low_max, clk_high, clk_low, tmp;
> + u32 tmp_base_clk_divisor;
>
> /*
> * SCL_high and SCL_low represent a value 1 greater than what is stored
> @@ -842,10 +849,32 @@ static u32 aspeed_i2c_get_clk_reg_val(struct device *dev,
> "clamping clock divider: divider requested, %u, is greater than largest possible divider, %u.\n",
> divisor, (1 << base_clk_divisor) * clk_high_low_max);
> } else {
> - tmp = (divisor + (1 << base_clk_divisor) - 1)
> + for (tmp_base_clk_divisor = base_clk_divisor;
> + tmp_base_clk_divisor <= ASPEED_I2CD_TIME_BASE_DIVISOR_MASK;
> + tmp_base_clk_divisor++) {
> + /* calculate clk_high and clk_low with duty cycle */
> + tmp = (divisor + (1 << tmp_base_clk_divisor) - 1)
> + >> tmp_base_clk_divisor;
> +
> + clk_high = DIV_ROUND_UP(tmp * duty_cycle, 100);
> + clk_low = tmp - clk_high;
> +
> + if (max(clk_high, clk_low) <= (clk_high_low_mask + 1))
> + break;
> + }
> +
> + if (tmp_base_clk_divisor <= ASPEED_I2CD_TIME_BASE_DIVISOR_MASK)
> + base_clk_divisor = tmp_base_clk_divisor;
> + else {
> + dev_err(dev,
> + "could not find clk_high and clk_low with duty cycle %u%%\n, recalculate with base_clk_divisor %u and duty_cycle 50%%",
> + duty_cycle, base_clk_divisor);
> + duty_cycle = 50;
> + tmp = (divisor + (1 << base_clk_divisor) - 1)
> >> base_clk_divisor;
> - clk_low = tmp / 2;
> - clk_high = tmp - clk_low;
> + clk_high = DIV_ROUND_UP(tmp * duty_cycle, 100);
> + clk_low = tmp - clk_high;
> + }
>
> if (clk_high)
> clk_high--;
> @@ -863,22 +892,22 @@ static u32 aspeed_i2c_get_clk_reg_val(struct device *dev,
> & ASPEED_I2CD_TIME_BASE_DIVISOR_MASK);
> }
>
> -static u32 aspeed_i2c_24xx_get_clk_reg_val(struct device *dev, u32 divisor)
> +static u32 aspeed_i2c_24xx_get_clk_reg_val(struct device *dev, u32 divisor, u32 duty_cycle)
> {
> /*
> * clk_high and clk_low are each 3 bits wide, so each can hold a max
> * value of 8 giving a clk_high_low_max of 16.
> */
> - return aspeed_i2c_get_clk_reg_val(dev, GENMASK(2, 0), divisor);
> + return aspeed_i2c_get_clk_reg_val(dev, GENMASK(2, 0), divisor, duty_cycle);
> }
>
> -static u32 aspeed_i2c_25xx_get_clk_reg_val(struct device *dev, u32 divisor)
> +static u32 aspeed_i2c_25xx_get_clk_reg_val(struct device *dev, u32 divisor, u32 duty_cycle)
> {
> /*
> * clk_high and clk_low are each 4 bits wide, so each can hold a max
> * value of 16 giving a clk_high_low_max of 32.
> */
> - return aspeed_i2c_get_clk_reg_val(dev, GENMASK(3, 0), divisor);
> + return aspeed_i2c_get_clk_reg_val(dev, GENMASK(3, 0), divisor, duty_cycle);
> }
>
> /* precondition: bus.lock has been acquired. */
> @@ -891,7 +920,7 @@ static int aspeed_i2c_init_clk(struct aspeed_i2c_bus *bus)
> clk_reg_val &= (ASPEED_I2CD_TIME_TBUF_MASK |
> ASPEED_I2CD_TIME_THDSTA_MASK |
> ASPEED_I2CD_TIME_TACST_MASK);
> - clk_reg_val |= bus->get_clk_reg_val(bus->dev, divisor);
> + clk_reg_val |= bus->get_clk_reg_val(bus->dev, divisor, bus->duty_cycle);
> writel(clk_reg_val, bus->base + ASPEED_I2C_AC_TIMING_REG1);
> writel(ASPEED_NO_TIMEOUT_CTRL, bus->base + ASPEED_I2C_AC_TIMING_REG2);
>
> @@ -1009,11 +1038,16 @@ static int aspeed_i2c_probe_bus(struct platform_device *pdev)
> bus->bus_frequency = I2C_MAX_STANDARD_MODE_FREQ;
> }
>
> + ret = of_property_read_u32(pdev->dev.of_node,
> + "i2c-clk-high-min-percent", &bus->duty_cycle);
> + if (ret < 0 || !bus->duty_cycle || bus->duty_cycle > 100)
> + bus->duty_cycle = DEFAULT_I2C_CLK_DUTY_CYCLE;
> +
> match = of_match_node(aspeed_i2c_bus_of_table, pdev->dev.of_node);
> if (!match)
> bus->get_clk_reg_val = aspeed_i2c_24xx_get_clk_reg_val;
> else
> - bus->get_clk_reg_val = (u32 (*)(struct device *, u32))
> + bus->get_clk_reg_val = (u32 (*)(struct device *, u32, u32))
> match->data;
>
> /* Initialize the I2C adapter */
Hi Maintainers,
Could someone please help me review this patch and give me some advice?
Thanks!
Potin
next prev parent reply other threads:[~2022-06-22 14:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-10 5:47 [PATCH v4 0/2] Add a property for setting minimum persentage of i2c clock high Potin Lai
2022-06-10 5:47 ` [PATCH v4 1/2] aspeed: i2c: add clock duty cycle property Potin Lai
2022-06-22 14:50 ` Potin Lai [this message]
2025-03-20 22:13 ` Andi Shyti
2022-06-10 5:47 ` [PATCH v4 2/2] dt-bindings: aspeed-i2c: add properties for setting i2c clock duty cycle Potin Lai
2022-06-14 21:41 ` Rob Herring
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=47e7eb15-e38d-ead3-de84-b7454e2c6eb8@gmail.com \
--to=potin.lai.pt@gmail.com \
--cc=andrew@aj.id.au \
--cc=benh@kernel.crashing.org \
--cc=brendanhiggins@google.com \
--cc=devicetree@vger.kernel.org \
--cc=joel@jms.id.au \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-aspeed@lists.ozlabs.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patrick@stwcx.xyz \
--cc=potin.lai@quantatw.com \
--cc=rayn_chen@aspeedtech.com \
--cc=robh+dt@kernel.org \
/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).