Merge branch 'v3.10/topic/misc' into linux-linaro-lsk
[firefly-linux-kernel-4.4.55.git] / sound / soc / blackfin / bf5xx-i2s.c
1 /*
2  * File:         sound/soc/blackfin/bf5xx-i2s.c
3  * Author:       Cliff Cai <Cliff.Cai@analog.com>
4  *
5  * Created:      Tue June 06 2008
6  * Description:  Blackfin I2S CPU DAI driver
7  *
8  * Modified:
9  *               Copyright 2008 Analog Devices Inc.
10  *
11  * Bugs:         Enter bugs at http://blackfin.uclinux.org/
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, see the file COPYING, or write
25  * to the Free Software Foundation, Inc.,
26  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
27  */
28
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/device.h>
32 #include <linux/delay.h>
33 #include <sound/core.h>
34 #include <sound/pcm.h>
35 #include <sound/pcm_params.h>
36 #include <sound/initval.h>
37 #include <sound/soc.h>
38
39 #include <asm/irq.h>
40 #include <asm/portmux.h>
41 #include <linux/mutex.h>
42 #include <linux/gpio.h>
43
44 #include "bf5xx-sport.h"
45
46 struct bf5xx_i2s_port {
47         u16 tcr1;
48         u16 rcr1;
49         u16 tcr2;
50         u16 rcr2;
51         int configured;
52 };
53
54 static int bf5xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
55                 unsigned int fmt)
56 {
57         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(cpu_dai);
58         struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
59         int ret = 0;
60
61         /* interface format:support I2S,slave mode */
62         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
63         case SND_SOC_DAIFMT_I2S:
64                 bf5xx_i2s->tcr1 |= TFSR | TCKFE;
65                 bf5xx_i2s->rcr1 |= RFSR | RCKFE;
66                 bf5xx_i2s->tcr2 |= TSFSE;
67                 bf5xx_i2s->rcr2 |= RSFSE;
68                 break;
69         case SND_SOC_DAIFMT_DSP_A:
70                 bf5xx_i2s->tcr1 |= TFSR;
71                 bf5xx_i2s->rcr1 |= RFSR;
72                 break;
73         case SND_SOC_DAIFMT_LEFT_J:
74                 ret = -EINVAL;
75                 break;
76         default:
77                 printk(KERN_ERR "%s: Unknown DAI format type\n", __func__);
78                 ret = -EINVAL;
79                 break;
80         }
81
82         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
83         case SND_SOC_DAIFMT_CBM_CFM:
84                 break;
85         case SND_SOC_DAIFMT_CBS_CFS:
86         case SND_SOC_DAIFMT_CBM_CFS:
87         case SND_SOC_DAIFMT_CBS_CFM:
88                 ret = -EINVAL;
89                 break;
90         default:
91                 printk(KERN_ERR "%s: Unknown DAI master type\n", __func__);
92                 ret = -EINVAL;
93                 break;
94         }
95
96         return ret;
97 }
98
99 static int bf5xx_i2s_hw_params(struct snd_pcm_substream *substream,
100                                 struct snd_pcm_hw_params *params,
101                                 struct snd_soc_dai *dai)
102 {
103         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
104         struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
105         int ret = 0;
106
107         bf5xx_i2s->tcr2 &= ~0x1f;
108         bf5xx_i2s->rcr2 &= ~0x1f;
109         switch (params_format(params)) {
110         case SNDRV_PCM_FORMAT_S8:
111                 bf5xx_i2s->tcr2 |= 7;
112                 bf5xx_i2s->rcr2 |= 7;
113                 sport_handle->wdsize = 1;
114                 break;
115         case SNDRV_PCM_FORMAT_S16_LE:
116                 bf5xx_i2s->tcr2 |= 15;
117                 bf5xx_i2s->rcr2 |= 15;
118                 sport_handle->wdsize = 2;
119                 break;
120         case SNDRV_PCM_FORMAT_S24_LE:
121                 bf5xx_i2s->tcr2 |= 23;
122                 bf5xx_i2s->rcr2 |= 23;
123                 sport_handle->wdsize = 3;
124                 break;
125         case SNDRV_PCM_FORMAT_S32_LE:
126                 bf5xx_i2s->tcr2 |= 31;
127                 bf5xx_i2s->rcr2 |= 31;
128                 sport_handle->wdsize = 4;
129                 break;
130         }
131
132         if (!bf5xx_i2s->configured) {
133                 /*
134                  * TX and RX are not independent,they are enabled at the
135                  * same time, even if only one side is running. So, we
136                  * need to configure both of them at the time when the first
137                  * stream is opened.
138                  *
139                  * CPU DAI:slave mode.
140                  */
141                 bf5xx_i2s->configured = 1;
142                 ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1,
143                                       bf5xx_i2s->rcr2, 0, 0);
144                 if (ret) {
145                         pr_err("SPORT is busy!\n");
146                         return -EBUSY;
147                 }
148
149                 ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1,
150                                       bf5xx_i2s->tcr2, 0, 0);
151                 if (ret) {
152                         pr_err("SPORT is busy!\n");
153                         return -EBUSY;
154                 }
155         }
156
157         return 0;
158 }
159
160 static void bf5xx_i2s_shutdown(struct snd_pcm_substream *substream,
161                                struct snd_soc_dai *dai)
162 {
163         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
164         struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
165
166         pr_debug("%s enter\n", __func__);
167         /* No active stream, SPORT is allowed to be configured again. */
168         if (!dai->active)
169                 bf5xx_i2s->configured = 0;
170 }
171
172 #ifdef CONFIG_PM
173 static int bf5xx_i2s_suspend(struct snd_soc_dai *dai)
174 {
175         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
176
177         pr_debug("%s : sport %d\n", __func__, dai->id);
178
179         if (dai->capture_active)
180                 sport_rx_stop(sport_handle);
181         if (dai->playback_active)
182                 sport_tx_stop(sport_handle);
183         return 0;
184 }
185
186 static int bf5xx_i2s_resume(struct snd_soc_dai *dai)
187 {
188         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
189         struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
190         int ret;
191
192         pr_debug("%s : sport %d\n", __func__, dai->id);
193
194         ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1,
195                                       bf5xx_i2s->rcr2, 0, 0);
196         if (ret) {
197                 pr_err("SPORT is busy!\n");
198                 return -EBUSY;
199         }
200
201         ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1,
202                                       bf5xx_i2s->tcr2, 0, 0);
203         if (ret) {
204                 pr_err("SPORT is busy!\n");
205                 return -EBUSY;
206         }
207
208         return 0;
209 }
210
211 #else
212 #define bf5xx_i2s_suspend       NULL
213 #define bf5xx_i2s_resume        NULL
214 #endif
215
216 #define BF5XX_I2S_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
217                 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | \
218                 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | \
219                 SNDRV_PCM_RATE_96000)
220
221 #define BF5XX_I2S_FORMATS \
222         (SNDRV_PCM_FMTBIT_S8 | \
223          SNDRV_PCM_FMTBIT_S16_LE | \
224          SNDRV_PCM_FMTBIT_S24_LE | \
225          SNDRV_PCM_FMTBIT_S32_LE)
226
227 static const struct snd_soc_dai_ops bf5xx_i2s_dai_ops = {
228         .shutdown       = bf5xx_i2s_shutdown,
229         .hw_params      = bf5xx_i2s_hw_params,
230         .set_fmt        = bf5xx_i2s_set_dai_fmt,
231 };
232
233 static struct snd_soc_dai_driver bf5xx_i2s_dai = {
234         .suspend = bf5xx_i2s_suspend,
235         .resume = bf5xx_i2s_resume,
236         .playback = {
237                 .channels_min = 1,
238                 .channels_max = 2,
239                 .rates = BF5XX_I2S_RATES,
240                 .formats = BF5XX_I2S_FORMATS,},
241         .capture = {
242                 .channels_min = 1,
243                 .channels_max = 2,
244                 .rates = BF5XX_I2S_RATES,
245                 .formats = BF5XX_I2S_FORMATS,},
246         .ops = &bf5xx_i2s_dai_ops,
247 };
248
249 static const struct snd_soc_component_driver bf5xx_i2s_component = {
250         .name           = "bf5xx-i2s",
251 };
252
253 static int bf5xx_i2s_probe(struct platform_device *pdev)
254 {
255         struct sport_device *sport_handle;
256         int ret;
257
258         /* configure SPORT for I2S */
259         sport_handle = sport_init(pdev, 4, 2 * sizeof(u32),
260                 sizeof(struct bf5xx_i2s_port));
261         if (!sport_handle)
262                 return -ENODEV;
263
264         /* register with the ASoC layers */
265         ret = snd_soc_register_component(&pdev->dev, &bf5xx_i2s_component,
266                                          &bf5xx_i2s_dai, 1);
267         if (ret) {
268                 pr_err("Failed to register DAI: %d\n", ret);
269                 sport_done(sport_handle);
270                 return ret;
271         }
272
273         return 0;
274 }
275
276 static int bf5xx_i2s_remove(struct platform_device *pdev)
277 {
278         struct sport_device *sport_handle = platform_get_drvdata(pdev);
279
280         pr_debug("%s enter\n", __func__);
281
282         snd_soc_unregister_component(&pdev->dev);
283         sport_done(sport_handle);
284
285         return 0;
286 }
287
288 static struct platform_driver bfin_i2s_driver = {
289         .probe  = bf5xx_i2s_probe,
290         .remove = bf5xx_i2s_remove,
291         .driver = {
292                 .name = "bfin-i2s",
293                 .owner = THIS_MODULE,
294         },
295 };
296
297 module_platform_driver(bfin_i2s_driver);
298
299 /* Module information */
300 MODULE_AUTHOR("Cliff Cai");
301 MODULE_DESCRIPTION("I2S driver for ADI Blackfin");
302 MODULE_LICENSE("GPL");
303