diff options
author | Marek Vasut <marex@denx.de> | 2023-03-01 17:32:54 +0100 |
---|---|---|
committer | Abel Vesa <abel.vesa@linaro.org> | 2023-03-31 14:03:19 +0200 |
commit | 6cd95f7b151cdd7852ed9f212faeea8f98ecba10 (patch) | |
tree | 7f8771d1d9399c8c99c4ca83d7430349fe49b0d3 /drivers/clk/imx/Makefile | |
parent | clk: Introduce devm_clk_hw_register_gate_parent_data() (diff) | |
download | linux-6cd95f7b151cdd7852ed9f212faeea8f98ecba10.tar.xz linux-6cd95f7b151cdd7852ed9f212faeea8f98ecba10.zip |
clk: imx: imx8mp: Add audiomix block control
Unlike the other block control IPs in i.MX8M, the audiomix is mostly a
series of clock gates and muxes. Model it as a large static table of
gates and muxes with one exception, which is the PLL14xx . The PLL14xx
SAI PLL has to be registered separately.
Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Tested-by: Adam Ford <aford173@gmail.com> #imx8mp-beacon-kit
Tested-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Marek Vasut <marex@denx.de>
Tested-by: Richard Leitner <richard.leitner@skidata.com>
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
Link: https://lore.kernel.org/r/20230301163257.49005-2-marex@denx.de
Diffstat (limited to 'drivers/clk/imx/Makefile')
-rw-r--r-- | drivers/clk/imx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/Makefile b/drivers/clk/imx/Makefile index a75d59f7cb8a..ae9d84ef046b 100644 --- a/drivers/clk/imx/Makefile +++ b/drivers/clk/imx/Makefile @@ -27,7 +27,7 @@ obj-$(CONFIG_MXC_CLK) += mxc-clk.o obj-$(CONFIG_CLK_IMX8MM) += clk-imx8mm.o obj-$(CONFIG_CLK_IMX8MN) += clk-imx8mn.o -obj-$(CONFIG_CLK_IMX8MP) += clk-imx8mp.o +obj-$(CONFIG_CLK_IMX8MP) += clk-imx8mp.o clk-imx8mp-audiomix.o obj-$(CONFIG_CLK_IMX8MQ) += clk-imx8mq.o obj-$(CONFIG_CLK_IMX93) += clk-imx93.o |