* [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform
@ 2024-01-12 5:43 Chancel Liu
2024-01-12 5:43 ` [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for " Chancel Liu
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Chancel Liu @ 2024-01-12 5:43 UTC (permalink / raw)
To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev
Cc: Chancel Liu
Support SAI and MICFIL on i.MX95 platform
changes in v2
- Remove unnecessary "item" in fsl,micfil.yaml
- Don't change alphabetical order in fsl,sai.yaml
Chancel Liu (3):
ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
ASoC: fsl_sai: Add support for i.MX95 platform
ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95
platform
.../devicetree/bindings/sound/fsl,micfil.yaml | 14 ++++++++++----
.../devicetree/bindings/sound/fsl,sai.yaml | 1 +
sound/soc/fsl/fsl_sai.c | 13 +++++++++++++
3 files changed, 24 insertions(+), 4 deletions(-)
--
2.42.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
@ 2024-01-12 5:43 ` Chancel Liu
2024-01-12 7:13 ` Krzysztof Kozlowski
2024-01-12 5:43 ` [PATCH v2 2/3] ASoC: fsl_sai: Add support " Chancel Liu
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Chancel Liu @ 2024-01-12 5:43 UTC (permalink / raw)
To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev
Cc: Chancel Liu
Add compatible string "fsl,imx95-sai" for i.MX95 platform.
Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
---
Documentation/devicetree/bindings/sound/fsl,sai.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/sound/fsl,sai.yaml b/Documentation/devicetree/bindings/sound/fsl,sai.yaml
index 088c26b001cc..d81c8fe1893e 100644
--- a/Documentation/devicetree/bindings/sound/fsl,sai.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,sai.yaml
@@ -39,6 +39,7 @@ properties:
- fsl,imx8qm-sai
- fsl,imx8ulp-sai
- fsl,imx93-sai
+ - fsl,imx95-sai
- fsl,vf610-sai
reg:
--
2.42.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/3] ASoC: fsl_sai: Add support for i.MX95 platform
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
2024-01-12 5:43 ` [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for " Chancel Liu
@ 2024-01-12 5:43 ` Chancel Liu
2024-01-12 5:43 ` [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string " Chancel Liu
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Chancel Liu @ 2024-01-12 5:43 UTC (permalink / raw)
To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev
Cc: Chancel Liu
Add compatible string and specific soc data to support SAI on i.MX95
platform.
Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
---
sound/soc/fsl/fsl_sai.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c
index 546bd4e333b5..0e2c31439670 100644
--- a/sound/soc/fsl/fsl_sai.c
+++ b/sound/soc/fsl/fsl_sai.c
@@ -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);
--
2.42.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95 platform
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
2024-01-12 5:43 ` [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for " Chancel Liu
2024-01-12 5:43 ` [PATCH v2 2/3] ASoC: fsl_sai: Add support " Chancel Liu
@ 2024-01-12 5:43 ` Chancel Liu
2024-01-12 7:14 ` Krzysztof Kozlowski
2024-01-15 8:44 ` [PATCH v2 0/3] ASoC: Support SAI and MICFIL on " Daniel Baluta
2024-01-22 20:44 ` Mark Brown
4 siblings, 1 reply; 8+ messages in thread
From: Chancel Liu @ 2024-01-12 5:43 UTC (permalink / raw)
To: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev
Cc: Chancel Liu
Add compatible string "fsl,imx95-micfil" for i.MX95 platform.
Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
---
.../devicetree/bindings/sound/fsl,micfil.yaml | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
index b7e605835639..c1e9803fc113 100644
--- a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
@@ -15,10 +15,16 @@ description: |
properties:
compatible:
- enum:
- - fsl,imx8mm-micfil
- - fsl,imx8mp-micfil
- - fsl,imx93-micfil
+ oneOf:
+ - items:
+ - enum:
+ - fsl,imx95-micfil
+ - const: fsl,imx93-micfil
+
+ - enum:
+ - fsl,imx8mm-micfil
+ - fsl,imx8mp-micfil
+ - fsl,imx93-micfil
reg:
maxItems: 1
--
2.42.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
2024-01-12 5:43 ` [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for " Chancel Liu
@ 2024-01-12 7:13 ` Krzysztof Kozlowski
0 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-01-12 7:13 UTC (permalink / raw)
To: Chancel Liu, lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt,
conor+dt, shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex,
tiwai, linux-sound, devicetree, linux-kernel, alsa-devel,
linuxppc-dev
On 12/01/2024 06:43, Chancel Liu wrote:
> Add compatible string "fsl,imx95-sai" for i.MX95 platform.
>
> Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
> ---
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95 platform
2024-01-12 5:43 ` [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string " Chancel Liu
@ 2024-01-12 7:14 ` Krzysztof Kozlowski
0 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-01-12 7:14 UTC (permalink / raw)
To: Chancel Liu, lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt,
conor+dt, shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex,
tiwai, linux-sound, devicetree, linux-kernel, alsa-devel,
linuxppc-dev
On 12/01/2024 06:43, Chancel Liu wrote:
> Add compatible string "fsl,imx95-micfil" for i.MX95 platform.
>
> Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
` (2 preceding siblings ...)
2024-01-12 5:43 ` [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string " Chancel Liu
@ 2024-01-15 8:44 ` Daniel Baluta
2024-01-22 20:44 ` Mark Brown
4 siblings, 0 replies; 8+ messages in thread
From: Daniel Baluta @ 2024-01-15 8:44 UTC (permalink / raw)
To: Chancel Liu
Cc: lgirdwood, broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev
On Fri, Jan 12, 2024 at 7:44 AM Chancel Liu <chancel.liu@nxp.com> wrote:
>
> Support SAI and MICFIL on i.MX95 platform
>
> changes in v2
> - Remove unnecessary "item" in fsl,micfil.yaml
> - Don't change alphabetical order in fsl,sai.yaml
>
> Chancel Liu (3):
> ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
> ASoC: fsl_sai: Add support for i.MX95 platform
> ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95
> platform
For all patches in the series:
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
` (3 preceding siblings ...)
2024-01-15 8:44 ` [PATCH v2 0/3] ASoC: Support SAI and MICFIL on " Daniel Baluta
@ 2024-01-22 20:44 ` Mark Brown
4 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2024-01-22 20:44 UTC (permalink / raw)
To: lgirdwood, robh+dt, krzysztof.kozlowski+dt, conor+dt,
shengjiu.wang, Xiubo.Lee, festevam, nicoleotsuka, perex, tiwai,
linux-sound, devicetree, linux-kernel, alsa-devel, linuxppc-dev,
Chancel Liu
On Fri, 12 Jan 2024 14:43:28 +0900, Chancel Liu wrote:
> Support SAI and MICFIL on i.MX95 platform
>
> changes in v2
> - Remove unnecessary "item" in fsl,micfil.yaml
> - Don't change alphabetical order in fsl,sai.yaml
>
> Chancel Liu (3):
> ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
> ASoC: fsl_sai: Add support for i.MX95 platform
> ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95
> platform
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for i.MX95 platform
commit: 52523f70fdf9b2cb0bfd1999eba4aa3a30b04fa6
[2/3] ASoC: fsl_sai: Add support for i.MX95 platform
commit: 2f2d78e2c29347a96268f6f34092538b307ed056
[3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string for i.MX95 platform
commit: 20d2719937cf439602566a8f041d3208274abc01
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-22 20:44 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-12 5:43 [PATCH v2 0/3] ASoC: Support SAI and MICFIL on i.MX95 platform Chancel Liu
2024-01-12 5:43 ` [PATCH v2 1/3] ASoC: dt-bindings: fsl,sai: Add compatible string for " Chancel Liu
2024-01-12 7:13 ` Krzysztof Kozlowski
2024-01-12 5:43 ` [PATCH v2 2/3] ASoC: fsl_sai: Add support " Chancel Liu
2024-01-12 5:43 ` [PATCH v2 3/3] ASoC: dt-bindings: fsl,micfil: Add compatible string " Chancel Liu
2024-01-12 7:14 ` Krzysztof Kozlowski
2024-01-15 8:44 ` [PATCH v2 0/3] ASoC: Support SAI and MICFIL on " Daniel Baluta
2024-01-22 20:44 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).