From patchwork Wed Feb 10 10:18:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srinivas Kandagatla X-Patchwork-Id: 61621 Delivered-To: patch@linaro.org Received: by 10.112.43.199 with SMTP id y7csp2552169lbl; Wed, 10 Feb 2016 02:18:23 -0800 (PST) X-Received: by 10.98.18.8 with SMTP id a8mr57422364pfj.41.1455099503622; Wed, 10 Feb 2016 02:18:23 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id pr6si4154360pac.155.2016.02.10.02.18.23; Wed, 10 Feb 2016 02:18:23 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-arm-msm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-arm-msm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-arm-msm-owner@vger.kernel.org; dkim=neutral (body hash did not verify) header.i=@linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755918AbcBJKSW (ORCPT + 7 others); Wed, 10 Feb 2016 05:18:22 -0500 Received: from mail-wm0-f43.google.com ([74.125.82.43]:33084 "EHLO mail-wm0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751713AbcBJKSU (ORCPT ); Wed, 10 Feb 2016 05:18:20 -0500 Received: by mail-wm0-f43.google.com with SMTP id g62so20263339wme.0 for ; Wed, 10 Feb 2016 02:18:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=afd3BdrSef72HK6USdqgmoynce3siEHEP9gLhLvvh68=; b=Us0+GG8CKiCj8eQOvr63O/ecFntQdJ4LeNoPEFOZw/QUpgzsGUezNUTpNk9uPNda1s fcV0dtBCQbwtwuJ3r8ivroc4gEKcPjH8K9CinDMydsUml/lcnwWivSLfAdVuYu4nIphy C5PesKBg/UARJ1AYWjR5ofcCZMOHFIa0XEVRc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=afd3BdrSef72HK6USdqgmoynce3siEHEP9gLhLvvh68=; b=QIRX5xZSz7fkTRC0sucdfPtNyQUNPTrSJXLaFuvZ2T+TRu+wAq/NjpPH/ByGay+438 0809AqnZ/7DhIClGlg+WA+NkqfI2d9qg4xhFqKoAfRW+ryg/Jgyo5X1Z7SAjXqoVcUne KSLG+ZuGk25aLbk2EKub4r60Xohij8MoHg6a858D1LJ+2sINw+EsVIno28aMEfQWaPLc +gAVxJJF1SggC/enEfSxaiKhYMZSLl/noy5cbBZy3AAVcVc+7Zq+AiMuLM39yN69uIT1 7HgD39VsDrvwvOin2rDxxdwUfGw5g5p/WTa7XtKJ6G357Y6Ks642cqtjzEtLkerM33Vh ru/Q== X-Gm-Message-State: AG10YOQq1K6dojUZ0Zx16mibmEmX6HviU9fjs4uv9RaVjUzgCRkQW1fYs+NnWRnZt8Ql3pfW X-Received: by 10.28.55.74 with SMTP id e71mr3038970wma.26.1455099498869; Wed, 10 Feb 2016 02:18:18 -0800 (PST) Received: from localhost.localdomain (host-92-13-246-184.as43234.net. [92.13.246.184]) by smtp.gmail.com with ESMTPSA id e19sm18682953wmd.1.2016.02.10.02.18.17 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 10 Feb 2016 02:18:18 -0800 (PST) From: Srinivas Kandagatla To: Patrick Lai , alsa-devel@alsa-project.org, Mark Brown Cc: Banajit Goswami , Liam Girdwood , Jaroslav Kysela , Takashi Iwai , linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, kwestfie@codeaurora.org, Srinivas Kandagatla Subject: [PATCH v1 01/14] ASoC: qcom: use snd_dma_alloc/free* apis Date: Wed, 10 Feb 2016 10:18:13 +0000 Message-Id: <1455099493-359-1-git-send-email-srinivas.kandagatla@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1455099418-311-1-git-send-email-srinivas.kandagatla@linaro.org> References: <1455099418-311-1-git-send-email-srinivas.kandagatla@linaro.org> Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org There is no point in having local allocation functions when the driver can use snd_dma_alloc/free() apis. This patch replaces the local versions of the dma allocation apis with the snd_dma_alloc/free() apis. Signed-off-by: Srinivas Kandagatla --- sound/soc/qcom/lpass-platform.c | 42 ++++++----------------------------------- 1 file changed, 6 insertions(+), 36 deletions(-) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c index 4aeb8e1..ec2414d 100644 --- a/sound/soc/qcom/lpass-platform.c +++ b/sound/soc/qcom/lpass-platform.c @@ -439,39 +439,6 @@ static irqreturn_t lpass_platform_lpaif_irq(int irq, void *data) return IRQ_HANDLED; } -static int lpass_platform_alloc_buffer(struct snd_pcm_substream *substream, - struct snd_soc_pcm_runtime *rt) -{ - struct snd_dma_buffer *buf = &substream->dma_buffer; - size_t size = lpass_platform_pcm_hardware.buffer_bytes_max; - - buf->dev.type = SNDRV_DMA_TYPE_DEV; - buf->dev.dev = rt->platform->dev; - buf->private_data = NULL; - buf->area = dma_alloc_coherent(rt->platform->dev, size, &buf->addr, - GFP_KERNEL); - if (!buf->area) { - dev_err(rt->platform->dev, "%s: Could not allocate DMA buffer\n", - __func__); - return -ENOMEM; - } - buf->bytes = size; - - return 0; -} - -static void lpass_platform_free_buffer(struct snd_pcm_substream *substream, - struct snd_soc_pcm_runtime *rt) -{ - struct snd_dma_buffer *buf = &substream->dma_buffer; - - if (buf->area) { - dma_free_coherent(rt->dev, buf->bytes, buf->area, - buf->addr); - } - buf->area = NULL; -} - static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime) { struct snd_pcm *pcm = soc_runtime->pcm; @@ -483,6 +450,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime) struct lpass_variant *v = drvdata->variant; int ret; struct lpass_pcm_data *data; + size_t size = lpass_platform_pcm_hardware.buffer_bytes_max; data = devm_kzalloc(soc_runtime->dev, sizeof(*data), GFP_KERNEL); if (!data) @@ -499,7 +467,9 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime) snd_soc_pcm_set_drvdata(soc_runtime, data); - ret = lpass_platform_alloc_buffer(substream, soc_runtime); + ret = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, + soc_runtime->platform->dev, + size, &substream->dma_buffer); if (ret) return ret; @@ -514,7 +484,7 @@ static int lpass_platform_pcm_new(struct snd_soc_pcm_runtime *soc_runtime) return 0; err_buf: - lpass_platform_free_buffer(substream, soc_runtime); + snd_dma_free_pages(&substream->dma_buffer); return ret; } @@ -533,7 +503,7 @@ static void lpass_platform_pcm_free(struct snd_pcm *pcm) if (v->free_dma_channel) v->free_dma_channel(drvdata, data->rdma_ch); - lpass_platform_free_buffer(substream, soc_runtime); + snd_dma_free_pages(&substream->dma_buffer); } static struct snd_soc_platform_driver lpass_platform_driver = {