All of lore.kernel.org
 help / color / mirror / Atom feed
* imx: imx8mq: mxc_get_clock for MXC_I2C_CLK is missing
@ 2021-09-08 13:08 Heiko Thiery
  2021-09-08 14:07 ` Heiko Thiery
  2021-09-15  2:53 ` Peng Fan (OSS)
  0 siblings, 2 replies; 5+ messages in thread
From: Heiko Thiery @ 2021-09-08 13:08 UTC (permalink / raw)
  To: u-boot, Peng Fan; +Cc: Fabio Estevam, Michael Walle

Hi Peng,

I faced an issue with the I2C bus speed in SPL for the imx8mq. I
figured out that the bus frequency is set to about 1MHz. While digging
into that I found that the clk ID for the I2C is not returned for the
imx8mq correctly.

Can you confirm that this is missing here.

This is what I added and now it looks better.

diff --git a/arch/arm/mach-imx/imx8m/clock_imx8mq.c
b/arch/arm/mach-imx/imx8m/clock_imx8mq.c
index 60e2218a3c..9e45ffd66b 100644
--- a/arch/arm/mach-imx/imx8m/clock_imx8mq.c
+++ b/arch/arm/mach-imx/imx8m/clock_imx8mq.c
@@ -363,6 +363,12 @@ unsigned int mxc_get_clock(enum mxc_clock clk)
                return get_root_clk(USDHC1_CLK_ROOT);
        case MXC_ESDHC2_CLK:
                return get_root_clk(USDHC2_CLK_ROOT);
+       case MXC_I2C_CLK:
+               return get_root_clk(I2C1_CLK_ROOT);
+       case MXC_UART_CLK:
+               return get_root_clk(UART1_CLK_ROOT);
+       case MXC_QSPI_CLK:
+               return get_root_clk(QSPI_CLK_ROOT);
        default:
                return get_root_clk(clk);
        }


-- 
Heiko

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-15  2:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 13:08 imx: imx8mq: mxc_get_clock for MXC_I2C_CLK is missing Heiko Thiery
2021-09-08 14:07 ` Heiko Thiery
2021-09-08 15:45   ` Heiko Thiery
2021-09-09  8:08     ` Heiko Thiery
2021-09-15  2:53 ` Peng Fan (OSS)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.