[PATCH v7 2/2] i2c: aspeed: support ast2600 i2c new register mode driver
Ryan Chen
ryan_chen at aspeedtech.com
Tue Mar 28 18:06:48 PDT 2023
Hello Andi,
> -----Original Message-----
> From: Andi Shyti <andi.shyti at kernel.org>
> Sent: Tuesday, March 28, 2023 9:12 PM
> To: Ryan Chen <ryan_chen at aspeedtech.com>
> Cc: jk at codeconstruct.com.au; openbmc at lists.ozlabs.org;
> linux-arm-kernel at lists.infradead.org; linux-i2c at vger.kernel.org; Rob Herring
> <robh+dt at kernel.org>; Krzysztof Kozlowski
> <krzysztof.kozlowski+dt at linaro.org>; Joel Stanley <joel at jms.id.au>; Andrew
> Jeffery <andrew at aj.id.au>; Linus Walleij <linus.walleij at linaro.org>;
> linux-aspeed at lists.ozlabs.org
> Subject: Re: [PATCH v7 2/2] i2c: aspeed: support ast2600 i2c new register mode
> driver
>
> Hi Ryan,
>
> [...]
>
> > + ret = of_property_read_u32(dev->of_node,
> > + "i2c-scl-clk-low-timeout-us",
> > + &i2c_bus->timeout);
>
> in your v6 patch this was a boolean value. If you need to keep it boolean you
> have the "i2c-scl-has-clk-low-timeout".
Thank your remind, I will keep " i2c-scl-clk-low-timeout-us", if property is empty, will disable it.
If not, will enable the timeout. It is ok for me.
>
> > + if (ret < 0) {
> > + i2c_bus->timeout = 0;
> > + } else {
> > + /* i2c timeout counter: use base clk4 1Mhz
> > + * per unit: 1/(1000/4096) = 4096us
> > + */
> > + i2c_bus->timeout /= 4096;
> > + }
>
> Can you please run checkpatch.pl before sending the patch?
>
> [...]
>
> > + dev_info(dev, "%s [%d]: adapter [%d khz] mode [%d]\n",
> > + dev->of_node->name, i2c_bus->adap.nr, i2c_bus->bus_frequency /
> 1000,
> > + i2c_bus->mode);
> > +
> > + return 0;
> > +
> > + return ret;
>
> can you also please do some cleanups before sending the patch?
Sorry, will update these two. And send next patch.
Best Regards,
Ryan.
More information about the linux-arm-kernel
mailing list