blob: 133c4470acad67f3a94354e607b0536180cc3bb9 [file] [log] [blame]
Shawn Guo4762fba2012-03-05 22:30:55 +08001/*
2 * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
3 *
4 * This code is based on code copyrighted by Freescale,
5 * Liam Girdwood, Javier Martin and probably others.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
12
13#ifndef _IMX_PCM_H
14#define _IMX_PCM_H
15
Lars-Peter Clausen312bb4f2013-03-22 14:12:12 +010016#include <linux/platform_data/dma-imx.h>
17
Shawn Guo4762fba2012-03-05 22:30:55 +080018/*
19 * Do not change this as the FIQ handler depends on this size
20 */
21#define IMX_SSI_DMABUF_SIZE (64 * 1024)
22
Shengjiu Wang0d69e0d2015-06-23 18:23:53 +080023#define IMX_DEFAULT_DMABUF_SIZE (64 * 1024)
24#define IMX_SAI_DMABUF_SIZE (64 * 1024)
25#define IMX_SPDIF_DMABUF_SIZE (64 * 1024)
26#define IMX_ESAI_DMABUF_SIZE (256 * 1024)
27
Lars-Peter Clausen312bb4f2013-03-22 14:12:12 +010028static inline void
Lars-Peter Clausena8909c92013-04-03 11:06:04 +020029imx_pcm_dma_params_init_data(struct imx_dma_data *dma_data,
Nicolin Chen32bd8cd2013-07-25 17:41:41 +080030 int dma, enum sdma_peripheral_type peripheral_type)
Lars-Peter Clausen312bb4f2013-03-22 14:12:12 +010031{
Lars-Peter Clausena8909c92013-04-03 11:06:04 +020032 dma_data->dma_request = dma;
33 dma_data->priority = DMA_PRIO_HIGH;
Nicolin Chen32bd8cd2013-07-25 17:41:41 +080034 dma_data->peripheral_type = peripheral_type;
Lars-Peter Clausen312bb4f2013-03-22 14:12:12 +010035}
36
Markus Pargmann9051cba2013-06-20 15:20:21 +020037struct imx_pcm_fiq_params {
38 int irq;
39 void __iomem *base;
40
41 /* Pointer to original ssi driver to setup tx rx sizes */
42 struct snd_dmaengine_dai_dma_data *dma_params_rx;
43 struct snd_dmaengine_dai_dma_data *dma_params_tx;
44};
45
Fabio Estevam3f1a91a2013-07-29 18:37:32 -030046#if IS_ENABLED(CONFIG_SND_SOC_IMX_PCM_DMA)
Shengjiu Wang0d69e0d2015-06-23 18:23:53 +080047int imx_pcm_dma_init(struct platform_device *pdev, size_t size);
Shawn Guo19276612013-01-28 14:25:43 +080048#else
Shengjiu Wang0d69e0d2015-06-23 18:23:53 +080049static inline int imx_pcm_dma_init(struct platform_device *pdev, size_t size)
Shawn Guo19276612013-01-28 14:25:43 +080050{
51 return -ENODEV;
52}
53#endif
54
Fabio Estevam3f1a91a2013-07-29 18:37:32 -030055#if IS_ENABLED(CONFIG_SND_SOC_IMX_PCM_FIQ)
Markus Pargmann9051cba2013-06-20 15:20:21 +020056int imx_pcm_fiq_init(struct platform_device *pdev,
57 struct imx_pcm_fiq_params *params);
Shawn Guo88e89f52013-04-25 11:18:48 +080058void imx_pcm_fiq_exit(struct platform_device *pdev);
Shawn Guo19276612013-01-28 14:25:43 +080059#else
Markus Pargmann9051cba2013-06-20 15:20:21 +020060static inline int imx_pcm_fiq_init(struct platform_device *pdev,
61 struct imx_pcm_fiq_params *params)
Shawn Guo19276612013-01-28 14:25:43 +080062{
63 return -ENODEV;
64}
Shawn Guo88e89f52013-04-25 11:18:48 +080065
66static inline void imx_pcm_fiq_exit(struct platform_device *pdev)
67{
68}
Shawn Guo19276612013-01-28 14:25:43 +080069#endif
70
Shawn Guo4762fba2012-03-05 22:30:55 +080071#endif /* _IMX_PCM_H */