mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [RESEND 0/2] ASoC: mt8188: add memory-region support
@ 2023-07-12  7:08 Trevor Wu
  2023-07-12  7:08 ` [RESEND 1/2] ASoC: mediatek: " Trevor Wu
  2023-07-12  7:08 ` [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region Trevor Wu
  0 siblings, 2 replies; 5+ messages in thread
From: Trevor Wu @ 2023-07-12  7:08 UTC (permalink / raw)
  To: broonie, lgirdwood, tiwai, perex, robh+dt,
	krzysztof.kozlowski+dt, conor+dt, matthias.bgg,
	angelogioacchino.delregno
  Cc: trevor.wu, alsa-devel, linux-mediatek, linux-arm-kernel,
	linux-kernel, devicetree

This series introduces support for memory-region, allowing afe memif to
utilize the region specified in dts.

Trevor Wu (2):
  ASoC: mediatek: mt8188: add memory-region support
  ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region

 .../devicetree/bindings/sound/mediatek,mt8188-afe.yaml    | 7 +++++++
 sound/soc/mediatek/mt8188/mt8188-afe-pcm.c                | 8 ++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

-- 
2.18.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [RESEND 1/2] ASoC: mediatek: mt8188: add memory-region support
  2023-07-12  7:08 [RESEND 0/2] ASoC: mt8188: add memory-region support Trevor Wu
@ 2023-07-12  7:08 ` Trevor Wu
  2023-07-12 12:40   ` Alexandre Mergnat
  2023-07-12  7:08 ` [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region Trevor Wu
  1 sibling, 1 reply; 5+ messages in thread
From: Trevor Wu @ 2023-07-12  7:08 UTC (permalink / raw)
  To: broonie, lgirdwood, tiwai, perex, robh+dt,
	krzysztof.kozlowski+dt, conor+dt, matthias.bgg,
	angelogioacchino.delregno
  Cc: trevor.wu, alsa-devel, linux-mediatek, linux-arm-kernel,
	linux-kernel, devicetree

In certain projects, it is necessary to utilize the reserved memory
region for audio dma. The patch takes into account the dts property
'memory-region', allowing for the specification of memory for afe memif
through device tree.

Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
---
 sound/soc/mediatek/mt8188/mt8188-afe-pcm.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c b/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
index 6a24b339444b..5e14655c5617 100644
--- a/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
+++ b/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
@@ -16,6 +16,7 @@
 #include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/of_platform.h>
+#include <linux/of_reserved_mem.h>
 #include <linux/pm_runtime.h>
 #include <linux/soc/mediatek/infracfg.h>
 #include <linux/reset.h>
@@ -3193,11 +3194,15 @@ static int mt8188_afe_pcm_dev_probe(struct platform_device *pdev)
 {
 	struct mtk_base_afe *afe;
 	struct mt8188_afe_private *afe_priv;
-	struct device *dev;
+	struct device *dev = &pdev->dev;
 	struct reset_control *rstc;
 	struct regmap *infra_ao;
 	int i, irq_id, ret;
 
+	ret = of_reserved_mem_device_init(dev);
+	if (ret)
+		dev_dbg(dev, "failed to assign memory region: %d\n", ret);
+
 	ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(33));
 	if (ret)
 		return ret;
@@ -3213,7 +3218,6 @@ static int mt8188_afe_pcm_dev_probe(struct platform_device *pdev)
 
 	afe_priv = afe->platform_priv;
 	afe->dev = &pdev->dev;
-	dev = afe->dev;
 
 	afe->base_addr = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(afe->base_addr))
-- 
2.18.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region
  2023-07-12  7:08 [RESEND 0/2] ASoC: mt8188: add memory-region support Trevor Wu
  2023-07-12  7:08 ` [RESEND 1/2] ASoC: mediatek: " Trevor Wu
@ 2023-07-12  7:08 ` Trevor Wu
  2023-07-12 12:50   ` Alexandre Mergnat
  1 sibling, 1 reply; 5+ messages in thread
From: Trevor Wu @ 2023-07-12  7:08 UTC (permalink / raw)
  To: broonie, lgirdwood, tiwai, perex, robh+dt,
	krzysztof.kozlowski+dt, conor+dt, matthias.bgg,
	angelogioacchino.delregno
  Cc: trevor.wu, alsa-devel, linux-mediatek, linux-arm-kernel,
	linux-kernel, devicetree

Add memory-region property to utilize the reserved memory region.

Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
Acked-by: Rob Herring <robh@kernel.org>
---
 .../devicetree/bindings/sound/mediatek,mt8188-afe.yaml     | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Documentation/devicetree/bindings/sound/mediatek,mt8188-afe.yaml b/Documentation/devicetree/bindings/sound/mediatek,mt8188-afe.yaml
index e6cb711ece77..0b92c71d8779 100644
--- a/Documentation/devicetree/bindings/sound/mediatek,mt8188-afe.yaml
+++ b/Documentation/devicetree/bindings/sound/mediatek,mt8188-afe.yaml
@@ -25,6 +25,12 @@ properties:
   reset-names:
     const: audiosys
 
+  memory-region:
+    maxItems: 1
+    description: |
+      Shared memory region for AFE memif.  A "shared-dma-pool".
+      See ../reserved-memory/reserved-memory.yaml for details.
+
   mediatek,topckgen:
     $ref: /schemas/types.yaml#/definitions/phandle
     description: The phandle of the mediatek topckgen controller
@@ -176,6 +182,7 @@ examples:
         interrupts = <GIC_SPI 822 IRQ_TYPE_LEVEL_HIGH 0>;
         resets = <&watchdog 14>;
         reset-names = "audiosys";
+        memory-region = <&snd_dma_mem_reserved>;
         mediatek,topckgen = <&topckgen>;
         mediatek,infracfg = <&infracfg_ao>;
         power-domains = <&spm 13>; //MT8188_POWER_DOMAIN_AUDIO
-- 
2.18.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RESEND 1/2] ASoC: mediatek: mt8188: add memory-region support
  2023-07-12  7:08 ` [RESEND 1/2] ASoC: mediatek: " Trevor Wu
@ 2023-07-12 12:40   ` Alexandre Mergnat
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Mergnat @ 2023-07-12 12:40 UTC (permalink / raw)
  To: Trevor Wu, broonie, lgirdwood, tiwai, perex, robh+dt,
	krzysztof.kozlowski+dt, conor+dt, matthias.bgg,
	angelogioacchino.delregno
  Cc: alsa-devel, linux-mediatek, linux-arm-kernel, linux-kernel, devicetree



On 12/07/2023 09:08, Trevor Wu wrote:
> In certain projects, it is necessary to utilize the reserved memory
> region for audio dma. The patch takes into account the dts property
> 'memory-region', allowing for the specification of memory for afe memif
> through device tree.
> 
> Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
> ---
>   sound/soc/mediatek/mt8188/mt8188-afe-pcm.c | 8 ++++++--
>   1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c b/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
> index 6a24b339444b..5e14655c5617 100644
> --- a/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
> +++ b/sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
> @@ -16,6 +16,7 @@
>   #include <linux/of.h>
>   #include <linux/of_address.h>
>   #include <linux/of_platform.h>
> +#include <linux/of_reserved_mem.h>
>   #include <linux/pm_runtime.h>
>   #include <linux/soc/mediatek/infracfg.h>
>   #include <linux/reset.h>
> @@ -3193,11 +3194,15 @@ static int mt8188_afe_pcm_dev_probe(struct platform_device *pdev)
>   {
>   	struct mtk_base_afe *afe;
>   	struct mt8188_afe_private *afe_priv;
> -	struct device *dev;
> +	struct device *dev = &pdev->dev;

I think that make sense to replace all "&pdev->dev" by "dev" in the next 
called functions:
- dma_set_mask_and_coherent
- devm_kzalloc
- devm_kzalloc

>   	struct reset_control *rstc;
>   	struct regmap *infra_ao;
>   	int i, irq_id, ret;
>   
> +	ret = of_reserved_mem_device_init(dev);
> +	if (ret)
> +		dev_dbg(dev, "failed to assign memory region: %d\n", ret);
> +
>   	ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(33));
>   	if (ret)
>   		return ret;
> @@ -3213,7 +3218,6 @@ static int mt8188_afe_pcm_dev_probe(struct platform_device *pdev)
>   
>   	afe_priv = afe->platform_priv;
>   	afe->dev = &pdev->dev;
> -	dev = afe->dev;
>   
>   	afe->base_addr = devm_platform_ioremap_resource(pdev, 0);
>   	if (IS_ERR(afe->base_addr))

-- 
Regards,
Alexandre

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region
  2023-07-12  7:08 ` [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region Trevor Wu
@ 2023-07-12 12:50   ` Alexandre Mergnat
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Mergnat @ 2023-07-12 12:50 UTC (permalink / raw)
  To: Trevor Wu, broonie, lgirdwood, tiwai, perex, robh+dt,
	krzysztof.kozlowski+dt, conor+dt, matthias.bgg,
	angelogioacchino.delregno
  Cc: alsa-devel, linux-mediatek, linux-arm-kernel, linux-kernel, devicetree



On 12/07/2023 09:08, Trevor Wu wrote:
> Add memory-region property to utilize the reserved memory region.

Reviewed-by: Alexandre Mergnat <amergnat@baylibre.com>

-- 
Regards,
Alexandre

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-12 12:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-12  7:08 [RESEND 0/2] ASoC: mt8188: add memory-region support Trevor Wu
2023-07-12  7:08 ` [RESEND 1/2] ASoC: mediatek: " Trevor Wu
2023-07-12 12:40   ` Alexandre Mergnat
2023-07-12  7:08 ` [RESEND 2/2] ASoC: dt-bindings: mediatek,mt8188-afe: add memory-region Trevor Wu
2023-07-12 12:50   ` Alexandre Mergnat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®