summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorBaolin Wang <baolin.wang@linaro.org>2019-04-12 02:40:17 -0400
committerMark Brown <broonie@kernel.org>2019-05-06 09:48:03 -0400
commit1587a061ef562de0d97c82a95863e191bcd69d63 (patch)
tree28c61360f6669210b7483213c283f2c44f1fd2c6 /sound
parent16ec5dfe0327ddcf279957bffe4c8fe527088c63 (diff)
ASoC: sprd: Add reserved DMA memory support
For Spreadtrum audio platform driver, it need allocate a larger DMA buffer dynamically to copy audio data between userspace and kernel space, but that will increase the risk of memory allocation failure especially the system is under heavy load situation. To make sure the audio can work in this scenario, we usually reserve one region of memory to be used as a shared pool of DMA buffers for the platform component. So add of_reserved_mem_device_init_by_idx() function to initialize the shared pool of DMA buffers to be used by the platform component. Signed-off-by: Baolin Wang <baolin.wang@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/sprd/sprd-pcm-dma.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/sprd/sprd-pcm-dma.c b/sound/soc/sprd/sprd-pcm-dma.c
index 9be6d4b2bf74..d38ebbbbf169 100644
--- a/sound/soc/sprd/sprd-pcm-dma.c
+++ b/sound/soc/sprd/sprd-pcm-dma.c
@@ -6,6 +6,7 @@
6#include <linux/dma/sprd-dma.h> 6#include <linux/dma/sprd-dma.h>
7#include <linux/kernel.h> 7#include <linux/kernel.h>
8#include <linux/module.h> 8#include <linux/module.h>
9#include <linux/of_reserved_mem.h>
9#include <linux/platform_device.h> 10#include <linux/platform_device.h>
10#include <sound/pcm.h> 11#include <sound/pcm.h>
11#include <sound/pcm_params.h> 12#include <sound/pcm_params.h>
@@ -530,8 +531,14 @@ static const struct snd_soc_component_driver sprd_soc_component = {
530 531
531static int sprd_soc_platform_probe(struct platform_device *pdev) 532static int sprd_soc_platform_probe(struct platform_device *pdev)
532{ 533{
534 struct device_node *np = pdev->dev.of_node;
533 int ret; 535 int ret;
534 536
537 ret = of_reserved_mem_device_init_by_idx(&pdev->dev, np, 0);
538 if (ret)
539 dev_warn(&pdev->dev,
540 "no reserved DMA memory for audio platform device\n");
541
535 ret = devm_snd_soc_register_component(&pdev->dev, &sprd_soc_component, 542 ret = devm_snd_soc_register_component(&pdev->dev, &sprd_soc_component,
536 NULL, 0); 543 NULL, 0);
537 if (ret) 544 if (ret)