Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clk: imx93: Add PDM IPG clk

The IPG clk and MCLK of PDM share the same control gate.

Reviewed-by: Shengjiu Wang <shengjiu.wang@nxp.com>
Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
Signed-off-by: Jacky Bai <ping.bai@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20230628061724.2056520-2-ping.bai@nxp.com
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>

authored by

Chancel Liu and committed by
Abel Vesa
3ea57048 2fe182dd

+3 -1
+3 -1
drivers/clk/imx/clk-imx93.c
··· 32 32 static u32 share_count_sai2; 33 33 static u32 share_count_sai3; 34 34 static u32 share_count_mub; 35 + static u32 share_count_pdm; 35 36 36 37 static const char * const a55_core_sels[] = {"a55_alt", "arm_pll"}; 37 38 static const char *parent_names[MAX_SEL][4] = { ··· 237 236 { IMX93_CLK_USB_CONTROLLER_GATE, "usb_controller", "hsio_root", 0x9a00, }, 238 237 { IMX93_CLK_USB_TEST_60M_GATE, "usb_test_60m", "hsio_usb_test_60m_root", 0x9a40, }, 239 238 { IMX93_CLK_HSIO_TROUT_24M_GATE, "hsio_trout_24m", "osc_24m", 0x9a80, }, 240 - { IMX93_CLK_PDM_GATE, "pdm", "pdm_root", 0x9ac0, }, 239 + { IMX93_CLK_PDM_GATE, "pdm", "pdm_root", 0x9ac0, 0, &share_count_pdm}, 240 + { IMX93_CLK_PDM_IPG, "pdm_ipg_clk", "bus_aon_root", 0x9ac0, 0, &share_count_pdm}, 241 241 { IMX93_CLK_MQS1_GATE, "mqs1", "sai1_root", 0x9b00, }, 242 242 { IMX93_CLK_MQS2_GATE, "mqs2", "sai3_root", 0x9b40, }, 243 243 { IMX93_CLK_AUD_XCVR_GATE, "aud_xcvr", "audio_xcvr_root", 0x9b80, },