mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ASoC: fsl_sai: Add support for i.MX95 platform
Add compatible string and specific soc data to support SAI on i.MX95 platform. Signed-off-by: Chancel Liu <chancel.liu@nxp.com> Link: https://msgid.link/r/20240112054331.3244104-3-chancel.liu@nxp.com Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
52523f70fd
commit
2f2d78e2c2
@ -1639,6 +1639,18 @@ static const struct fsl_sai_soc_data fsl_sai_imx93_data = {
|
||||
.max_burst = {8, 8},
|
||||
};
|
||||
|
||||
static const struct fsl_sai_soc_data fsl_sai_imx95_data = {
|
||||
.use_imx_pcm = true,
|
||||
.use_edma = true,
|
||||
.fifo_depth = 128,
|
||||
.reg_offset = 8,
|
||||
.mclk0_is_mclk1 = false,
|
||||
.pins = 8,
|
||||
.flags = 0,
|
||||
.max_register = FSL_SAI_MCTL,
|
||||
.max_burst = {8, 8},
|
||||
};
|
||||
|
||||
static const struct of_device_id fsl_sai_ids[] = {
|
||||
{ .compatible = "fsl,vf610-sai", .data = &fsl_sai_vf610_data },
|
||||
{ .compatible = "fsl,imx6sx-sai", .data = &fsl_sai_imx6sx_data },
|
||||
@ -1651,6 +1663,7 @@ static const struct of_device_id fsl_sai_ids[] = {
|
||||
{ .compatible = "fsl,imx8ulp-sai", .data = &fsl_sai_imx8ulp_data },
|
||||
{ .compatible = "fsl,imx8mn-sai", .data = &fsl_sai_imx8mn_data },
|
||||
{ .compatible = "fsl,imx93-sai", .data = &fsl_sai_imx93_data },
|
||||
{ .compatible = "fsl,imx95-sai", .data = &fsl_sai_imx95_data },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, fsl_sai_ids);
|
||||
|
Loading…
Reference in New Issue
Block a user