ASoC: fsl_mqs: Add support for i.MX93 platform
Add i.MX93 compatible string and specific soc data Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com> Link: https://lore.kernel.org/r/1654840042-7069-2-git-send-email-shengjiu.wang@nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
81ae0635df
commit
047c69a3a9
@ -338,9 +338,23 @@ static const struct fsl_mqs_soc_data fsl_mqs_imx6sx_data = {
|
||||
.div_shift = IMX6SX_GPR2_MQS_CLK_DIV_SHIFT,
|
||||
};
|
||||
|
||||
static const struct fsl_mqs_soc_data fsl_mqs_imx93_data = {
|
||||
.use_gpr = true,
|
||||
.ctrl_off = 0x20,
|
||||
.en_mask = BIT(1),
|
||||
.en_shift = 1,
|
||||
.rst_mask = BIT(2),
|
||||
.rst_shift = 2,
|
||||
.osr_mask = BIT(3),
|
||||
.osr_shift = 3,
|
||||
.div_mask = GENMASK(15, 8),
|
||||
.div_shift = 8,
|
||||
};
|
||||
|
||||
static const struct of_device_id fsl_mqs_dt_ids[] = {
|
||||
{ .compatible = "fsl,imx8qm-mqs", .data = &fsl_mqs_imx8qm_data },
|
||||
{ .compatible = "fsl,imx6sx-mqs", .data = &fsl_mqs_imx6sx_data },
|
||||
{ .compatible = "fsl,imx93-mqs", .data = &fsl_mqs_imx93_data },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, fsl_mqs_dt_ids);
|
||||
|
Loading…
Reference in New Issue
Block a user