clk: imx7d: Add PXP clock
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 9 Mar 2020 16:17:09 +0000 (18:17 +0200)
committerShawn Guo <shawnguo@kernel.org>
Mon, 16 Mar 2020 00:56:59 +0000 (08:56 +0800)
The PXP has a single CCGR clock gate, gating both the IPG_CLK_ROOT and
the MAIN_AXI_CLK_ROOT. Add a single clock to cover both.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
drivers/clk/imx/clk-imx7d.c
include/dt-bindings/clock/imx7d-clock.h

index 0c9f7adb41ae8139964fe29f81a4e3fe609ed333..b2057bd42e2500eb4666b359369260b008b5b178 100644 (file)
@@ -802,6 +802,7 @@ static void __init imx7d_clocks_init(struct device_node *ccm_node)
        hws[IMX7D_PCIE_PHY_ROOT_CLK] = imx_clk_hw_gate4("pcie_phy_root_clk", "pcie_phy_post_div", base + 0x4600, 0);
        hws[IMX7D_EPDC_PIXEL_ROOT_CLK] = imx_clk_hw_gate4("epdc_pixel_root_clk", "epdc_pixel_post_div", base + 0x44a0, 0);
        hws[IMX7D_LCDIF_PIXEL_ROOT_CLK] = imx_clk_hw_gate4("lcdif_pixel_root_clk", "lcdif_pixel_post_div", base + 0x44b0, 0);
+       hws[IMX7D_PXP_CLK] = imx_clk_hw_gate4("pxp_clk", "main_axi_root_clk", base + 0x44c0, 0);
        hws[IMX7D_MIPI_DSI_ROOT_CLK] = imx_clk_hw_gate4("mipi_dsi_root_clk", "mipi_dsi_post_div", base + 0x4650, 0);
        hws[IMX7D_MIPI_CSI_ROOT_CLK] = imx_clk_hw_gate4("mipi_csi_root_clk", "mipi_csi_post_div", base + 0x4640, 0);
        hws[IMX7D_MIPI_DPHY_ROOT_CLK] = imx_clk_hw_gate4("mipi_dphy_root_clk", "mipi_dphy_post_div", base + 0x4660, 0);
index e6a670e1a3f8ceecf80e0a747f6eaebbd5ba4979..1d4c0dfe020268937d18268bb5242a9883ccccf7 100644 (file)
 #define IMX7D_SNVS_CLK                 442
 #define IMX7D_CAAM_CLK                 443
 #define IMX7D_KPP_ROOT_CLK             444
-#define IMX7D_CLK_END                  445
+#define IMX7D_PXP_CLK                  445
+#define IMX7D_CLK_END                  446
 #endif /* __DT_BINDINGS_CLOCK_IMX7D_H */