Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 1 | /* |
| 2 | * sst_platform.c - Intel MID Platform driver |
| 3 | * |
Vinod Koul | 0cd5751 | 2013-03-29 23:41:42 +0530 | [diff] [blame^] | 4 | * Copyright (C) 2010-2013 Intel Corp |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 5 | * Author: Vinod Koul <vinod.koul@intel.com> |
| 6 | * Author: Harsha Priya <priya.harsha@intel.com> |
| 7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; version 2 of the License. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 21 | * |
| 22 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 23 | * |
| 24 | * |
| 25 | */ |
| 26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 27 | |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/io.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 30 | #include <linux/module.h> |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 31 | #include <sound/core.h> |
| 32 | #include <sound/pcm.h> |
| 33 | #include <sound/pcm_params.h> |
| 34 | #include <sound/soc.h> |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 35 | #include <sound/compress_driver.h> |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 36 | #include "sst_platform.h" |
| 37 | |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 38 | static struct sst_device *sst; |
| 39 | static DEFINE_MUTEX(sst_lock); |
| 40 | |
| 41 | int sst_register_dsp(struct sst_device *dev) |
| 42 | { |
| 43 | BUG_ON(!dev); |
| 44 | if (!try_module_get(dev->dev->driver->owner)) |
| 45 | return -ENODEV; |
| 46 | mutex_lock(&sst_lock); |
| 47 | if (sst) { |
| 48 | pr_err("we already have a device %s\n", sst->name); |
| 49 | module_put(dev->dev->driver->owner); |
| 50 | mutex_unlock(&sst_lock); |
| 51 | return -EEXIST; |
| 52 | } |
| 53 | pr_debug("registering device %s\n", dev->name); |
| 54 | sst = dev; |
| 55 | mutex_unlock(&sst_lock); |
| 56 | return 0; |
| 57 | } |
| 58 | EXPORT_SYMBOL_GPL(sst_register_dsp); |
| 59 | |
| 60 | int sst_unregister_dsp(struct sst_device *dev) |
| 61 | { |
| 62 | BUG_ON(!dev); |
| 63 | if (dev != sst) |
| 64 | return -EINVAL; |
| 65 | |
| 66 | mutex_lock(&sst_lock); |
| 67 | |
| 68 | if (!sst) { |
| 69 | mutex_unlock(&sst_lock); |
| 70 | return -EIO; |
| 71 | } |
| 72 | |
| 73 | module_put(sst->dev->driver->owner); |
| 74 | pr_debug("unreg %s\n", sst->name); |
| 75 | sst = NULL; |
| 76 | mutex_unlock(&sst_lock); |
| 77 | return 0; |
| 78 | } |
| 79 | EXPORT_SYMBOL_GPL(sst_unregister_dsp); |
| 80 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 81 | static struct snd_pcm_hardware sst_platform_pcm_hw = { |
| 82 | .info = (SNDRV_PCM_INFO_INTERLEAVED | |
| 83 | SNDRV_PCM_INFO_DOUBLE | |
| 84 | SNDRV_PCM_INFO_PAUSE | |
| 85 | SNDRV_PCM_INFO_RESUME | |
| 86 | SNDRV_PCM_INFO_MMAP| |
| 87 | SNDRV_PCM_INFO_MMAP_VALID | |
| 88 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 89 | SNDRV_PCM_INFO_SYNC_START), |
| 90 | .formats = (SNDRV_PCM_FMTBIT_S16 | SNDRV_PCM_FMTBIT_U16 | |
| 91 | SNDRV_PCM_FMTBIT_S24 | SNDRV_PCM_FMTBIT_U24 | |
| 92 | SNDRV_PCM_FMTBIT_S32 | SNDRV_PCM_FMTBIT_U32), |
| 93 | .rates = (SNDRV_PCM_RATE_8000| |
| 94 | SNDRV_PCM_RATE_44100 | |
| 95 | SNDRV_PCM_RATE_48000), |
| 96 | .rate_min = SST_MIN_RATE, |
| 97 | .rate_max = SST_MAX_RATE, |
| 98 | .channels_min = SST_MIN_CHANNEL, |
| 99 | .channels_max = SST_MAX_CHANNEL, |
| 100 | .buffer_bytes_max = SST_MAX_BUFFER, |
| 101 | .period_bytes_min = SST_MIN_PERIOD_BYTES, |
| 102 | .period_bytes_max = SST_MAX_PERIOD_BYTES, |
| 103 | .periods_min = SST_MIN_PERIODS, |
| 104 | .periods_max = SST_MAX_PERIODS, |
| 105 | .fifo_size = SST_FIFO_SIZE, |
| 106 | }; |
| 107 | |
| 108 | /* MFLD - MSIC */ |
Axel Lin | d1b7328 | 2011-09-27 10:38:50 +0800 | [diff] [blame] | 109 | static struct snd_soc_dai_driver sst_platform_dai[] = { |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 110 | { |
| 111 | .name = "Headset-cpu-dai", |
| 112 | .id = 0, |
| 113 | .playback = { |
| 114 | .channels_min = SST_STEREO, |
| 115 | .channels_max = SST_STEREO, |
| 116 | .rates = SNDRV_PCM_RATE_48000, |
| 117 | .formats = SNDRV_PCM_FMTBIT_S24_LE, |
| 118 | }, |
Harsha Priya | a7bffdf | 2011-01-28 22:27:26 +0530 | [diff] [blame] | 119 | .capture = { |
| 120 | .channels_min = 1, |
| 121 | .channels_max = 5, |
| 122 | .rates = SNDRV_PCM_RATE_48000, |
| 123 | .formats = SNDRV_PCM_FMTBIT_S24_LE, |
| 124 | }, |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 125 | }, |
| 126 | { |
| 127 | .name = "Speaker-cpu-dai", |
| 128 | .id = 1, |
| 129 | .playback = { |
| 130 | .channels_min = SST_MONO, |
| 131 | .channels_max = SST_STEREO, |
| 132 | .rates = SNDRV_PCM_RATE_48000, |
| 133 | .formats = SNDRV_PCM_FMTBIT_S24_LE, |
| 134 | }, |
| 135 | }, |
| 136 | { |
| 137 | .name = "Vibra1-cpu-dai", |
| 138 | .id = 2, |
| 139 | .playback = { |
| 140 | .channels_min = SST_MONO, |
| 141 | .channels_max = SST_MONO, |
| 142 | .rates = SNDRV_PCM_RATE_48000, |
| 143 | .formats = SNDRV_PCM_FMTBIT_S24_LE, |
| 144 | }, |
| 145 | }, |
| 146 | { |
| 147 | .name = "Vibra2-cpu-dai", |
| 148 | .id = 3, |
| 149 | .playback = { |
| 150 | .channels_min = SST_MONO, |
| 151 | .channels_max = SST_STEREO, |
| 152 | .rates = SNDRV_PCM_RATE_48000, |
| 153 | .formats = SNDRV_PCM_FMTBIT_S24_LE, |
| 154 | }, |
| 155 | }, |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 156 | { |
| 157 | .name = "Compress-cpu-dai", |
| 158 | .compress_dai = 1, |
| 159 | .playback = { |
| 160 | .channels_min = SST_STEREO, |
| 161 | .channels_max = SST_STEREO, |
| 162 | .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000, |
| 163 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 164 | }, |
| 165 | }, |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 166 | }; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 167 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 168 | /* helper functions */ |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 169 | static inline void sst_set_stream_status(struct sst_runtime_stream *stream, |
| 170 | int state) |
| 171 | { |
Lu Guanqun | d89b0a1 | 2011-04-08 15:38:48 +0800 | [diff] [blame] | 172 | unsigned long flags; |
| 173 | spin_lock_irqsave(&stream->status_lock, flags); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 174 | stream->stream_status = state; |
Lu Guanqun | d89b0a1 | 2011-04-08 15:38:48 +0800 | [diff] [blame] | 175 | spin_unlock_irqrestore(&stream->status_lock, flags); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static inline int sst_get_stream_status(struct sst_runtime_stream *stream) |
| 179 | { |
| 180 | int state; |
Lu Guanqun | d89b0a1 | 2011-04-08 15:38:48 +0800 | [diff] [blame] | 181 | unsigned long flags; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 182 | |
Lu Guanqun | d89b0a1 | 2011-04-08 15:38:48 +0800 | [diff] [blame] | 183 | spin_lock_irqsave(&stream->status_lock, flags); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 184 | state = stream->stream_status; |
Lu Guanqun | d89b0a1 | 2011-04-08 15:38:48 +0800 | [diff] [blame] | 185 | spin_unlock_irqrestore(&stream->status_lock, flags); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 186 | return state; |
| 187 | } |
| 188 | |
| 189 | static void sst_fill_pcm_params(struct snd_pcm_substream *substream, |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 190 | struct sst_pcm_params *param) |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 191 | { |
| 192 | |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 193 | param->codec = SST_CODEC_TYPE_PCM; |
| 194 | param->num_chan = (u8) substream->runtime->channels; |
| 195 | param->pcm_wd_sz = substream->runtime->sample_bits; |
| 196 | param->reserved = 0; |
| 197 | param->sfreq = substream->runtime->rate; |
| 198 | param->ring_buffer_size = snd_pcm_lib_buffer_bytes(substream); |
| 199 | param->period_count = substream->runtime->period_size; |
| 200 | param->ring_buffer_addr = virt_to_phys(substream->dma_buffer.area); |
| 201 | pr_debug("period_cnt = %d\n", param->period_count); |
| 202 | pr_debug("sfreq= %d, wd_sz = %d\n", param->sfreq, param->pcm_wd_sz); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 203 | } |
| 204 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 205 | static int sst_platform_alloc_stream(struct snd_pcm_substream *substream) |
| 206 | { |
| 207 | struct sst_runtime_stream *stream = |
| 208 | substream->runtime->private_data; |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 209 | struct sst_pcm_params param = {0}; |
| 210 | struct sst_stream_params str_params = {0}; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 211 | int ret_val; |
| 212 | |
| 213 | /* set codec params and inform SST driver the same */ |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 214 | sst_fill_pcm_params(substream, ¶m); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 215 | substream->runtime->dma_area = substream->dma_buffer.area; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 216 | str_params.sparams = param; |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 217 | str_params.codec = param.codec; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 218 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 219 | str_params.ops = STREAM_OPS_PLAYBACK; |
| 220 | str_params.device_type = substream->pcm->device + 1; |
| 221 | pr_debug("Playbck stream,Device %d\n", |
| 222 | substream->pcm->device); |
| 223 | } else { |
| 224 | str_params.ops = STREAM_OPS_CAPTURE; |
| 225 | str_params.device_type = SND_SST_DEVICE_CAPTURE; |
| 226 | pr_debug("Capture stream,Device %d\n", |
| 227 | substream->pcm->device); |
| 228 | } |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 229 | ret_val = stream->ops->open(&str_params); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 230 | pr_debug("SST_SND_PLAY/CAPTURE ret_val = %x\n", ret_val); |
| 231 | if (ret_val < 0) |
| 232 | return ret_val; |
| 233 | |
| 234 | stream->stream_info.str_id = ret_val; |
| 235 | pr_debug("str id : %d\n", stream->stream_info.str_id); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 236 | return ret_val; |
| 237 | } |
| 238 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 239 | static void sst_period_elapsed(void *mad_substream) |
| 240 | { |
| 241 | struct snd_pcm_substream *substream = mad_substream; |
| 242 | struct sst_runtime_stream *stream; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 243 | int status; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 244 | |
| 245 | if (!substream || !substream->runtime) |
| 246 | return; |
| 247 | stream = substream->runtime->private_data; |
| 248 | if (!stream) |
| 249 | return; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 250 | status = sst_get_stream_status(stream); |
| 251 | if (status != SST_PLATFORM_RUNNING) |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 252 | return; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 253 | snd_pcm_period_elapsed(substream); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static int sst_platform_init_stream(struct snd_pcm_substream *substream) |
| 257 | { |
| 258 | struct sst_runtime_stream *stream = |
| 259 | substream->runtime->private_data; |
| 260 | int ret_val; |
| 261 | |
| 262 | pr_debug("setting buffer ptr param\n"); |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 263 | sst_set_stream_status(stream, SST_PLATFORM_INIT); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 264 | stream->stream_info.period_elapsed = sst_period_elapsed; |
| 265 | stream->stream_info.mad_substream = substream; |
| 266 | stream->stream_info.buffer_ptr = 0; |
| 267 | stream->stream_info.sfreq = substream->runtime->rate; |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 268 | ret_val = stream->ops->device_control( |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 269 | SST_SND_STREAM_INIT, &stream->stream_info); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 270 | if (ret_val) |
| 271 | pr_err("control_set ret error %d\n", ret_val); |
| 272 | return ret_val; |
| 273 | |
| 274 | } |
| 275 | /* end -- helper functions */ |
| 276 | |
| 277 | static int sst_platform_open(struct snd_pcm_substream *substream) |
| 278 | { |
Lu Guanqun | 22be504 | 2011-09-06 15:21:38 +0800 | [diff] [blame] | 279 | struct snd_pcm_runtime *runtime = substream->runtime; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 280 | struct sst_runtime_stream *stream; |
Joerg Roedel | c45471ea | 2011-12-15 18:24:54 +0100 | [diff] [blame] | 281 | int ret_val; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 282 | |
| 283 | pr_debug("sst_platform_open called\n"); |
Lu Guanqun | 22be504 | 2011-09-06 15:21:38 +0800 | [diff] [blame] | 284 | |
| 285 | snd_soc_set_runtime_hwparams(substream, &sst_platform_pcm_hw); |
Lu Guanqun | 283e42e | 2011-09-06 15:21:43 +0800 | [diff] [blame] | 286 | ret_val = snd_pcm_hw_constraint_integer(runtime, |
| 287 | SNDRV_PCM_HW_PARAM_PERIODS); |
| 288 | if (ret_val < 0) |
| 289 | return ret_val; |
Lu Guanqun | 22be504 | 2011-09-06 15:21:38 +0800 | [diff] [blame] | 290 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 291 | stream = kzalloc(sizeof(*stream), GFP_KERNEL); |
| 292 | if (!stream) |
| 293 | return -ENOMEM; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 294 | spin_lock_init(&stream->status_lock); |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 295 | |
| 296 | /* get the sst ops */ |
| 297 | mutex_lock(&sst_lock); |
| 298 | if (!sst) { |
| 299 | pr_err("no device available to run\n"); |
| 300 | mutex_unlock(&sst_lock); |
| 301 | kfree(stream); |
| 302 | return -ENODEV; |
| 303 | } |
| 304 | if (!try_module_get(sst->dev->driver->owner)) { |
| 305 | mutex_unlock(&sst_lock); |
| 306 | kfree(stream); |
| 307 | return -ENODEV; |
| 308 | } |
| 309 | stream->ops = sst->ops; |
| 310 | mutex_unlock(&sst_lock); |
| 311 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 312 | stream->stream_info.str_id = 0; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 313 | sst_set_stream_status(stream, SST_PLATFORM_INIT); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 314 | stream->stream_info.mad_substream = substream; |
| 315 | /* allocate memory for SST API set */ |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 316 | runtime->private_data = stream; |
Lu Guanqun | 283e42e | 2011-09-06 15:21:43 +0800 | [diff] [blame] | 317 | |
| 318 | return 0; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static int sst_platform_close(struct snd_pcm_substream *substream) |
| 322 | { |
| 323 | struct sst_runtime_stream *stream; |
| 324 | int ret_val = 0, str_id; |
| 325 | |
| 326 | pr_debug("sst_platform_close called\n"); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 327 | stream = substream->runtime->private_data; |
| 328 | str_id = stream->stream_info.str_id; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 329 | if (str_id) |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 330 | ret_val = stream->ops->close(str_id); |
| 331 | module_put(sst->dev->driver->owner); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 332 | kfree(stream); |
| 333 | return ret_val; |
| 334 | } |
| 335 | |
| 336 | static int sst_platform_pcm_prepare(struct snd_pcm_substream *substream) |
| 337 | { |
| 338 | struct sst_runtime_stream *stream; |
| 339 | int ret_val = 0, str_id; |
| 340 | |
| 341 | pr_debug("sst_platform_pcm_prepare called\n"); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 342 | stream = substream->runtime->private_data; |
| 343 | str_id = stream->stream_info.str_id; |
| 344 | if (stream->stream_info.str_id) { |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 345 | ret_val = stream->ops->device_control( |
| 346 | SST_SND_DROP, &str_id); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 347 | return ret_val; |
| 348 | } |
| 349 | |
| 350 | ret_val = sst_platform_alloc_stream(substream); |
| 351 | if (ret_val < 0) |
| 352 | return ret_val; |
| 353 | snprintf(substream->pcm->id, sizeof(substream->pcm->id), |
| 354 | "%d", stream->stream_info.str_id); |
| 355 | |
| 356 | ret_val = sst_platform_init_stream(substream); |
| 357 | if (ret_val) |
| 358 | return ret_val; |
| 359 | substream->runtime->hw.info = SNDRV_PCM_INFO_BLOCK_TRANSFER; |
| 360 | return ret_val; |
| 361 | } |
| 362 | |
| 363 | static int sst_platform_pcm_trigger(struct snd_pcm_substream *substream, |
| 364 | int cmd) |
| 365 | { |
| 366 | int ret_val = 0, str_id; |
| 367 | struct sst_runtime_stream *stream; |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 368 | int str_cmd, status; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 369 | |
| 370 | pr_debug("sst_platform_pcm_trigger called\n"); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 371 | stream = substream->runtime->private_data; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 372 | str_id = stream->stream_info.str_id; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 373 | switch (cmd) { |
| 374 | case SNDRV_PCM_TRIGGER_START: |
| 375 | pr_debug("sst: Trigger Start\n"); |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 376 | str_cmd = SST_SND_START; |
| 377 | status = SST_PLATFORM_RUNNING; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 378 | stream->stream_info.mad_substream = substream; |
| 379 | break; |
| 380 | case SNDRV_PCM_TRIGGER_STOP: |
| 381 | pr_debug("sst: in stop\n"); |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 382 | str_cmd = SST_SND_DROP; |
| 383 | status = SST_PLATFORM_DROPPED; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 384 | break; |
| 385 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 386 | pr_debug("sst: in pause\n"); |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 387 | str_cmd = SST_SND_PAUSE; |
| 388 | status = SST_PLATFORM_PAUSED; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 389 | break; |
| 390 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 391 | pr_debug("sst: in pause release\n"); |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 392 | str_cmd = SST_SND_RESUME; |
| 393 | status = SST_PLATFORM_RUNNING; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 394 | break; |
| 395 | default: |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 396 | return -EINVAL; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 397 | } |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 398 | ret_val = stream->ops->device_control(str_cmd, &str_id); |
Harsha Priya | a211701 | 2011-01-11 14:50:59 +0530 | [diff] [blame] | 399 | if (!ret_val) |
| 400 | sst_set_stream_status(stream, status); |
| 401 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 402 | return ret_val; |
| 403 | } |
| 404 | |
| 405 | |
| 406 | static snd_pcm_uframes_t sst_platform_pcm_pointer |
| 407 | (struct snd_pcm_substream *substream) |
| 408 | { |
| 409 | struct sst_runtime_stream *stream; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 410 | int ret_val, status; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 411 | struct pcm_stream_info *str_info; |
| 412 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 413 | stream = substream->runtime->private_data; |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 414 | status = sst_get_stream_status(stream); |
| 415 | if (status == SST_PLATFORM_INIT) |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 416 | return 0; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 417 | str_info = &stream->stream_info; |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 418 | ret_val = stream->ops->device_control( |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 419 | SST_SND_BUFFER_POINTER, str_info); |
| 420 | if (ret_val) { |
| 421 | pr_err("sst: error code = %d\n", ret_val); |
| 422 | return ret_val; |
| 423 | } |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 424 | return stream->stream_info.buffer_ptr; |
| 425 | } |
| 426 | |
Vinod Koul | 5b499f8 | 2011-02-15 18:28:54 +0530 | [diff] [blame] | 427 | static int sst_platform_pcm_hw_params(struct snd_pcm_substream *substream, |
| 428 | struct snd_pcm_hw_params *params) |
| 429 | { |
| 430 | snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); |
| 431 | memset(substream->runtime->dma_area, 0, params_buffer_bytes(params)); |
| 432 | |
| 433 | return 0; |
| 434 | } |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 435 | |
xingchao | 9ab8843 | 2011-04-27 16:58:54 -0400 | [diff] [blame] | 436 | static int sst_platform_pcm_hw_free(struct snd_pcm_substream *substream) |
| 437 | { |
| 438 | return snd_pcm_lib_free_pages(substream); |
| 439 | } |
| 440 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 441 | static struct snd_pcm_ops sst_platform_ops = { |
| 442 | .open = sst_platform_open, |
| 443 | .close = sst_platform_close, |
| 444 | .ioctl = snd_pcm_lib_ioctl, |
| 445 | .prepare = sst_platform_pcm_prepare, |
| 446 | .trigger = sst_platform_pcm_trigger, |
| 447 | .pointer = sst_platform_pcm_pointer, |
Vinod Koul | 5b499f8 | 2011-02-15 18:28:54 +0530 | [diff] [blame] | 448 | .hw_params = sst_platform_pcm_hw_params, |
xingchao | 9ab8843 | 2011-04-27 16:58:54 -0400 | [diff] [blame] | 449 | .hw_free = sst_platform_pcm_hw_free, |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 450 | }; |
| 451 | |
| 452 | static void sst_pcm_free(struct snd_pcm *pcm) |
| 453 | { |
| 454 | pr_debug("sst_pcm_free called\n"); |
| 455 | snd_pcm_lib_preallocate_free_for_all(pcm); |
| 456 | } |
| 457 | |
Axel Lin | 8faa8c1 | 2011-12-13 17:13:45 +0800 | [diff] [blame] | 458 | static int sst_pcm_new(struct snd_soc_pcm_runtime *rtd) |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 459 | { |
Liam Girdwood | 552d1ef | 2011-06-07 16:08:33 +0100 | [diff] [blame] | 460 | struct snd_pcm *pcm = rtd->pcm; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 461 | int retval = 0; |
| 462 | |
| 463 | pr_debug("sst_pcm_new called\n"); |
Joachim Eastwood | 25e9e75 | 2012-01-01 01:58:44 +0100 | [diff] [blame] | 464 | if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream || |
| 465 | pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) { |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 466 | retval = snd_pcm_lib_preallocate_pages_for_all(pcm, |
| 467 | SNDRV_DMA_TYPE_CONTINUOUS, |
| 468 | snd_dma_continuous_data(GFP_KERNEL), |
| 469 | SST_MIN_BUFFER, SST_MAX_BUFFER); |
| 470 | if (retval) { |
| 471 | pr_err("dma buffer allocationf fail\n"); |
| 472 | return retval; |
| 473 | } |
| 474 | } |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 475 | return retval; |
| 476 | } |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 477 | |
| 478 | /* compress stream operations */ |
| 479 | static void sst_compr_fragment_elapsed(void *arg) |
| 480 | { |
| 481 | struct snd_compr_stream *cstream = (struct snd_compr_stream *)arg; |
| 482 | |
| 483 | pr_debug("fragment elapsed by driver\n"); |
| 484 | if (cstream) |
| 485 | snd_compr_fragment_elapsed(cstream); |
| 486 | } |
| 487 | |
| 488 | static int sst_platform_compr_open(struct snd_compr_stream *cstream) |
| 489 | { |
| 490 | |
| 491 | int ret_val = 0; |
| 492 | struct snd_compr_runtime *runtime = cstream->runtime; |
| 493 | struct sst_runtime_stream *stream; |
| 494 | |
| 495 | stream = kzalloc(sizeof(*stream), GFP_KERNEL); |
| 496 | if (!stream) |
| 497 | return -ENOMEM; |
| 498 | |
| 499 | spin_lock_init(&stream->status_lock); |
| 500 | |
| 501 | /* get the sst ops */ |
| 502 | if (!sst || !try_module_get(sst->dev->driver->owner)) { |
| 503 | pr_err("no device available to run\n"); |
| 504 | ret_val = -ENODEV; |
| 505 | goto out_ops; |
| 506 | } |
| 507 | stream->compr_ops = sst->compr_ops; |
| 508 | |
| 509 | stream->id = 0; |
| 510 | sst_set_stream_status(stream, SST_PLATFORM_INIT); |
| 511 | runtime->private_data = stream; |
| 512 | return 0; |
| 513 | out_ops: |
| 514 | kfree(stream); |
| 515 | return ret_val; |
| 516 | } |
| 517 | |
| 518 | static int sst_platform_compr_free(struct snd_compr_stream *cstream) |
| 519 | { |
| 520 | struct sst_runtime_stream *stream; |
| 521 | int ret_val = 0, str_id; |
| 522 | |
| 523 | stream = cstream->runtime->private_data; |
| 524 | /*need to check*/ |
| 525 | str_id = stream->id; |
| 526 | if (str_id) |
| 527 | ret_val = stream->compr_ops->close(str_id); |
| 528 | module_put(sst->dev->driver->owner); |
| 529 | kfree(stream); |
| 530 | pr_debug("%s: %d\n", __func__, ret_val); |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static int sst_platform_compr_set_params(struct snd_compr_stream *cstream, |
| 535 | struct snd_compr_params *params) |
| 536 | { |
| 537 | struct sst_runtime_stream *stream; |
| 538 | int retval; |
| 539 | struct snd_sst_params str_params; |
| 540 | struct sst_compress_cb cb; |
| 541 | |
| 542 | stream = cstream->runtime->private_data; |
| 543 | /* construct fw structure for this*/ |
| 544 | memset(&str_params, 0, sizeof(str_params)); |
| 545 | |
| 546 | str_params.ops = STREAM_OPS_PLAYBACK; |
| 547 | str_params.stream_type = SST_STREAM_TYPE_MUSIC; |
| 548 | str_params.device_type = SND_SST_DEVICE_COMPRESS; |
| 549 | |
| 550 | switch (params->codec.id) { |
| 551 | case SND_AUDIOCODEC_MP3: { |
| 552 | str_params.codec = SST_CODEC_TYPE_MP3; |
| 553 | str_params.sparams.uc.mp3_params.codec = SST_CODEC_TYPE_MP3; |
| 554 | str_params.sparams.uc.mp3_params.num_chan = params->codec.ch_in; |
| 555 | str_params.sparams.uc.mp3_params.pcm_wd_sz = 16; |
| 556 | break; |
| 557 | } |
| 558 | |
| 559 | case SND_AUDIOCODEC_AAC: { |
| 560 | str_params.codec = SST_CODEC_TYPE_AAC; |
| 561 | str_params.sparams.uc.aac_params.codec = SST_CODEC_TYPE_AAC; |
| 562 | str_params.sparams.uc.aac_params.num_chan = params->codec.ch_in; |
| 563 | str_params.sparams.uc.aac_params.pcm_wd_sz = 16; |
| 564 | if (params->codec.format == SND_AUDIOSTREAMFORMAT_MP4ADTS) |
| 565 | str_params.sparams.uc.aac_params.bs_format = |
| 566 | AAC_BIT_STREAM_ADTS; |
| 567 | else if (params->codec.format == SND_AUDIOSTREAMFORMAT_RAW) |
| 568 | str_params.sparams.uc.aac_params.bs_format = |
| 569 | AAC_BIT_STREAM_RAW; |
| 570 | else { |
| 571 | pr_err("Undefined format%d\n", params->codec.format); |
| 572 | return -EINVAL; |
| 573 | } |
| 574 | str_params.sparams.uc.aac_params.externalsr = |
| 575 | params->codec.sample_rate; |
| 576 | break; |
| 577 | } |
| 578 | |
| 579 | default: |
| 580 | pr_err("codec not supported, id =%d\n", params->codec.id); |
| 581 | return -EINVAL; |
| 582 | } |
| 583 | |
| 584 | str_params.aparams.ring_buf_info[0].addr = |
| 585 | virt_to_phys(cstream->runtime->buffer); |
| 586 | str_params.aparams.ring_buf_info[0].size = |
| 587 | cstream->runtime->buffer_size; |
| 588 | str_params.aparams.sg_count = 1; |
| 589 | str_params.aparams.frag_size = cstream->runtime->fragment_size; |
| 590 | |
| 591 | cb.param = cstream; |
| 592 | cb.compr_cb = sst_compr_fragment_elapsed; |
| 593 | |
| 594 | retval = stream->compr_ops->open(&str_params, &cb); |
| 595 | if (retval < 0) { |
| 596 | pr_err("stream allocation failed %d\n", retval); |
| 597 | return retval; |
| 598 | } |
| 599 | |
| 600 | stream->id = retval; |
| 601 | return 0; |
| 602 | } |
| 603 | |
| 604 | static int sst_platform_compr_trigger(struct snd_compr_stream *cstream, int cmd) |
| 605 | { |
| 606 | struct sst_runtime_stream *stream = |
| 607 | cstream->runtime->private_data; |
| 608 | |
| 609 | return stream->compr_ops->control(cmd, stream->id); |
| 610 | } |
| 611 | |
| 612 | static int sst_platform_compr_pointer(struct snd_compr_stream *cstream, |
| 613 | struct snd_compr_tstamp *tstamp) |
| 614 | { |
| 615 | struct sst_runtime_stream *stream; |
| 616 | |
| 617 | stream = cstream->runtime->private_data; |
| 618 | stream->compr_ops->tstamp(stream->id, tstamp); |
| 619 | tstamp->byte_offset = tstamp->copied_total % |
| 620 | (u32)cstream->runtime->buffer_size; |
| 621 | pr_debug("calc bytes offset/copied bytes as %d\n", tstamp->byte_offset); |
| 622 | return 0; |
| 623 | } |
| 624 | |
| 625 | static int sst_platform_compr_ack(struct snd_compr_stream *cstream, |
| 626 | size_t bytes) |
| 627 | { |
| 628 | struct sst_runtime_stream *stream; |
| 629 | |
| 630 | stream = cstream->runtime->private_data; |
| 631 | stream->compr_ops->ack(stream->id, (unsigned long)bytes); |
| 632 | stream->bytes_written += bytes; |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | static int sst_platform_compr_get_caps(struct snd_compr_stream *cstream, |
| 638 | struct snd_compr_caps *caps) |
| 639 | { |
| 640 | struct sst_runtime_stream *stream = |
| 641 | cstream->runtime->private_data; |
| 642 | |
| 643 | return stream->compr_ops->get_caps(caps); |
| 644 | } |
| 645 | |
| 646 | static int sst_platform_compr_get_codec_caps(struct snd_compr_stream *cstream, |
| 647 | struct snd_compr_codec_caps *codec) |
| 648 | { |
| 649 | struct sst_runtime_stream *stream = |
| 650 | cstream->runtime->private_data; |
| 651 | |
| 652 | return stream->compr_ops->get_codec_caps(codec); |
| 653 | } |
| 654 | |
Vinod Koul | 0cd5751 | 2013-03-29 23:41:42 +0530 | [diff] [blame^] | 655 | static int sst_platform_compr_set_metadata(struct snd_compr_stream *cstream, |
| 656 | struct snd_compr_metadata *metadata) |
| 657 | { |
| 658 | struct sst_runtime_stream *stream = |
| 659 | cstream->runtime->private_data; |
| 660 | |
| 661 | return stream->compr_ops->set_metadata(stream->id, metadata); |
| 662 | } |
| 663 | |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 664 | static struct snd_compr_ops sst_platform_compr_ops = { |
| 665 | |
| 666 | .open = sst_platform_compr_open, |
| 667 | .free = sst_platform_compr_free, |
| 668 | .set_params = sst_platform_compr_set_params, |
Vinod Koul | 0cd5751 | 2013-03-29 23:41:42 +0530 | [diff] [blame^] | 669 | .set_metadata = sst_platform_compr_set_metadata, |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 670 | .trigger = sst_platform_compr_trigger, |
| 671 | .pointer = sst_platform_compr_pointer, |
| 672 | .ack = sst_platform_compr_ack, |
| 673 | .get_caps = sst_platform_compr_get_caps, |
| 674 | .get_codec_caps = sst_platform_compr_get_codec_caps, |
| 675 | }; |
| 676 | |
Axel Lin | 8faa8c1 | 2011-12-13 17:13:45 +0800 | [diff] [blame] | 677 | static struct snd_soc_platform_driver sst_soc_platform_drv = { |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 678 | .ops = &sst_platform_ops, |
Vinod Koul | c514a91 | 2012-08-16 17:10:42 +0530 | [diff] [blame] | 679 | .compr_ops = &sst_platform_compr_ops, |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 680 | .pcm_new = sst_pcm_new, |
| 681 | .pcm_free = sst_pcm_free, |
| 682 | }; |
| 683 | |
| 684 | static int sst_platform_probe(struct platform_device *pdev) |
| 685 | { |
| 686 | int ret; |
| 687 | |
| 688 | pr_debug("sst_platform_probe called\n"); |
Vinod Koul | 03c3304 | 2011-12-05 19:13:41 +0530 | [diff] [blame] | 689 | sst = NULL; |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 690 | ret = snd_soc_register_platform(&pdev->dev, &sst_soc_platform_drv); |
| 691 | if (ret) { |
| 692 | pr_err("registering soc platform failed\n"); |
| 693 | return ret; |
| 694 | } |
Harsha Priya | 5c68536 | 2011-01-11 14:50:35 +0530 | [diff] [blame] | 695 | |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 696 | ret = snd_soc_register_dais(&pdev->dev, |
| 697 | sst_platform_dai, ARRAY_SIZE(sst_platform_dai)); |
| 698 | if (ret) { |
| 699 | pr_err("registering cpu dais failed\n"); |
| 700 | snd_soc_unregister_platform(&pdev->dev); |
| 701 | } |
| 702 | return ret; |
| 703 | } |
| 704 | |
| 705 | static int sst_platform_remove(struct platform_device *pdev) |
| 706 | { |
| 707 | |
| 708 | snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(sst_platform_dai)); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 709 | snd_soc_unregister_platform(&pdev->dev); |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 710 | pr_debug("sst_platform_remove success\n"); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 711 | return 0; |
| 712 | } |
| 713 | |
| 714 | static struct platform_driver sst_platform_driver = { |
| 715 | .driver = { |
| 716 | .name = "sst-platform", |
| 717 | .owner = THIS_MODULE, |
| 718 | }, |
| 719 | .probe = sst_platform_probe, |
| 720 | .remove = sst_platform_remove, |
| 721 | }; |
| 722 | |
Axel Lin | 29515d6 | 2011-11-24 11:51:56 +0800 | [diff] [blame] | 723 | module_platform_driver(sst_platform_driver); |
Vinod Koul | d927fda | 2011-01-04 20:16:32 +0530 | [diff] [blame] | 724 | |
| 725 | MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver"); |
| 726 | MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>"); |
| 727 | MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>"); |
| 728 | MODULE_LICENSE("GPL v2"); |
Vinod Koul | f5c6b2a | 2011-01-07 16:20:56 +0530 | [diff] [blame] | 729 | MODULE_ALIAS("platform:sst-platform"); |