|
@@ -130,6 +130,12 @@ static inline int clk_on_imx6dl(void)
|
|
|
return of_machine_is_compatible("fsl,imx6dl");
|
|
|
}
|
|
|
|
|
|
+static struct clk ** const uart_clks[] __initconst = {
|
|
|
+ &clk[IMX6QDL_CLK_UART_IPG],
|
|
|
+ &clk[IMX6QDL_CLK_UART_SERIAL],
|
|
|
+ NULL
|
|
|
+};
|
|
|
+
|
|
|
static void __init imx6q_clocks_init(struct device_node *ccm_node)
|
|
|
{
|
|
|
struct device_node *np;
|
|
@@ -541,5 +547,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
|
|
|
/* All existing boards with PCIe use LVDS1 */
|
|
|
if (IS_ENABLED(CONFIG_PCI_IMX6))
|
|
|
clk_set_parent(clk[IMX6QDL_CLK_LVDS1_SEL], clk[IMX6QDL_CLK_SATA_REF_100M]);
|
|
|
+
|
|
|
+ imx_register_uart_clocks(uart_clks);
|
|
|
}
|
|
|
CLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init);
|