Re: [PATCH v3 1/1] i2c: qcom-geni: Support systems with 32MHz serial engine clock

From: Andi Shyti
Date: Wed Oct 02 2024 - 05:01:57 EST


Hi Manikanta,

On Mon, Sep 30, 2024 at 08:17:09PM GMT, Manikanta Mylavarapu wrote:
> In existing socs, I2C serial engine is sourced from XO (19.2MHz).
> Where as in IPQ5424, I2C serial engine is sourced from GPLL0 (32MHz).
>
> The existing map table is based on 19.2MHz. This patch incorporates
> the clock map table to derive the SCL clock from the 32MHz source
> clock frequency.
>
> Signed-off-by: Manikanta Mylavarapu <quic_mmanikan@xxxxxxxxxxx>

merged to i2c/i2c-host.

...

> -static const struct geni_i2c_clk_fld geni_i2c_clk_map[] = {
> +static const struct geni_i2c_clk_fld geni_i2c_clk_map_19p2mhz[] = {
> {KHZ(100), 7, 10, 11, 26},
> {KHZ(400), 2, 5, 12, 24},
> {KHZ(1000), 1, 3, 9, 18},
> + {},
> +};
> +
> +/* source_clock = 32 MHz */
> +static const struct geni_i2c_clk_fld geni_i2c_clk_map_32mhz[] = {
> + {KHZ(100), 8, 14, 18, 40},
> + {KHZ(400), 4, 3, 11, 20},
> + {KHZ(1000), 2, 3, 6, 15},
> + {},

I took the freedom to remove the ',' as Bjorn suggested.

Thanks,
Andi