sst-mfld-platform-pcm.c 17.2 KB
Newer Older
1
/*
2
 *  sst_mfld_platform.c - Intel MID Platform driver
3
 *
V
Vinod Koul 已提交
4
 *  Copyright (C) 2010-2014 Intel Corp
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *  Author: Vinod Koul <vinod.koul@intel.com>
 *  Author: Harsha Priya <priya.harsha@intel.com>
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 of the License.
 *
 *  This program is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/slab.h>
#include <linux/io.h>
24
#include <linux/module.h>
25 26 27 28
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>
29
#include <sound/compress_driver.h>
V
Vinod Koul 已提交
30
#include <asm/platform_sst_audio.h>
31
#include "sst-mfld-platform.h"
V
Vinod Koul 已提交
32
#include "sst-atom-controls.h"
33

34
struct sst_device *sst;
35
static DEFINE_MUTEX(sst_lock);
36
extern struct snd_compr_ops sst_platform_compr_ops;
37 38 39

int sst_register_dsp(struct sst_device *dev)
{
40 41
	if (WARN_ON(!dev))
		return -EINVAL;
42 43 44 45
	if (!try_module_get(dev->dev->driver->owner))
		return -ENODEV;
	mutex_lock(&sst_lock);
	if (sst) {
46
		dev_err(dev->dev, "we already have a device %s\n", sst->name);
47 48 49 50
		module_put(dev->dev->driver->owner);
		mutex_unlock(&sst_lock);
		return -EEXIST;
	}
51
	dev_dbg(dev->dev, "registering device %s\n", dev->name);
52 53 54 55 56 57 58 59
	sst = dev;
	mutex_unlock(&sst_lock);
	return 0;
}
EXPORT_SYMBOL_GPL(sst_register_dsp);

int sst_unregister_dsp(struct sst_device *dev)
{
60 61
	if (WARN_ON(!dev))
		return -EINVAL;
62 63 64 65 66 67 68 69 70 71 72
	if (dev != sst)
		return -EINVAL;

	mutex_lock(&sst_lock);

	if (!sst) {
		mutex_unlock(&sst_lock);
		return -EIO;
	}

	module_put(sst->dev->driver->owner);
73
	dev_dbg(dev->dev, "unreg %s\n", sst->name);
74 75 76 77 78 79
	sst = NULL;
	mutex_unlock(&sst_lock);
	return 0;
}
EXPORT_SYMBOL_GPL(sst_unregister_dsp);

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
static struct snd_pcm_hardware sst_platform_pcm_hw = {
	.info =	(SNDRV_PCM_INFO_INTERLEAVED |
			SNDRV_PCM_INFO_DOUBLE |
			SNDRV_PCM_INFO_PAUSE |
			SNDRV_PCM_INFO_RESUME |
			SNDRV_PCM_INFO_MMAP|
			SNDRV_PCM_INFO_MMAP_VALID |
			SNDRV_PCM_INFO_BLOCK_TRANSFER |
			SNDRV_PCM_INFO_SYNC_START),
	.buffer_bytes_max = SST_MAX_BUFFER,
	.period_bytes_min = SST_MIN_PERIOD_BYTES,
	.period_bytes_max = SST_MAX_PERIOD_BYTES,
	.periods_min = SST_MIN_PERIODS,
	.periods_max = SST_MAX_PERIODS,
	.fifo_size = SST_FIFO_SIZE,
};

V
Vinod Koul 已提交
97 98 99 100 101 102 103
static struct sst_dev_stream_map dpcm_strm_map[] = {
	{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, /* Reserved, not in use */
	{MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA1_IN, SST_TASK_ID_MEDIA, 0},
	{MERR_DPCM_COMPR, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA0_IN, SST_TASK_ID_MEDIA, 0},
	{MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_CAPTURE, PIPE_PCM1_OUT, SST_TASK_ID_MEDIA, 0},
};

104
/* MFLD - MSIC */
A
Axel Lin 已提交
105
static struct snd_soc_dai_driver sst_platform_dai[] = {
106
{
107
	.name = "Headset-cpu-dai",
108 109 110 111 112 113 114
	.id = 0,
	.playback = {
		.channels_min = SST_STEREO,
		.channels_max = SST_STEREO,
		.rates = SNDRV_PCM_RATE_48000,
		.formats = SNDRV_PCM_FMTBIT_S24_LE,
	},
115 116 117 118 119
	.capture = {
		.channels_min = 1,
		.channels_max = 5,
		.rates = SNDRV_PCM_RATE_48000,
		.formats = SNDRV_PCM_FMTBIT_S24_LE,
120 121
	},
},
122 123 124 125 126 127 128 129 130 131
{
	.name = "Compress-cpu-dai",
	.compress_dai = 1,
	.playback = {
		.channels_min = SST_STEREO,
		.channels_max = SST_STEREO,
		.rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,
	},
},
132
};
133

134
/* helper functions */
135
void sst_set_stream_status(struct sst_runtime_stream *stream,
136 137
					int state)
{
138 139
	unsigned long flags;
	spin_lock_irqsave(&stream->status_lock, flags);
140
	stream->stream_status = state;
141
	spin_unlock_irqrestore(&stream->status_lock, flags);
142 143 144 145 146
}

static inline int sst_get_stream_status(struct sst_runtime_stream *stream)
{
	int state;
147
	unsigned long flags;
148

149
	spin_lock_irqsave(&stream->status_lock, flags);
150
	state = stream->stream_status;
151
	spin_unlock_irqrestore(&stream->status_lock, flags);
152 153 154
	return state;
}

155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
static void sst_fill_alloc_params(struct snd_pcm_substream *substream,
				struct snd_sst_alloc_params_ext *alloc_param)
{
	unsigned int channels;
	snd_pcm_uframes_t period_size;
	ssize_t periodbytes;
	ssize_t buffer_bytes = snd_pcm_lib_buffer_bytes(substream);
	u32 buffer_addr = virt_to_phys(substream->dma_buffer.area);

	channels = substream->runtime->channels;
	period_size = substream->runtime->period_size;
	periodbytes = samples_to_bytes(substream->runtime, period_size);
	alloc_param->ring_buf_info[0].addr = buffer_addr;
	alloc_param->ring_buf_info[0].size = buffer_bytes;
	alloc_param->sg_count = 1;
	alloc_param->reserved = 0;
	alloc_param->frag_size = periodbytes * channels;

}
174
static void sst_fill_pcm_params(struct snd_pcm_substream *substream,
175
				struct snd_sst_stream_params *param)
176
{
177 178 179
	param->uc.pcm_params.num_chan = (u8) substream->runtime->channels;
	param->uc.pcm_params.pcm_wd_sz = substream->runtime->sample_bits;
	param->uc.pcm_params.sfreq = substream->runtime->rate;
180

181 182 183 184 185 186
	/* PCM stream via ALSA interface */
	param->uc.pcm_params.use_offload_path = 0;
	param->uc.pcm_params.reserved2 = 0;
	memset(param->uc.pcm_params.channel_map, 0, sizeof(u8));

}
V
Vinod Koul 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

static int sst_get_stream_mapping(int dev, int sdev, int dir,
	struct sst_dev_stream_map *map, int size)
{
	int i;

	if (map == NULL)
		return -EINVAL;


	/* index 0 is not used in stream map */
	for (i = 1; i < size; i++) {
		if ((map[i].dev_num == dev) && (map[i].direction == dir))
			return i;
	}
	return 0;
}

205
int sst_fill_stream_params(void *substream,
V
Vinod Koul 已提交
206
	const struct sst_data *ctx, struct snd_sst_params *str_params, bool is_compress)
207
{
V
Vinod Koul 已提交
208 209 210
	int map_size;
	int index;
	struct sst_dev_stream_map *map;
211 212 213
	struct snd_pcm_substream *pstream = NULL;
	struct snd_compr_stream *cstream = NULL;

V
Vinod Koul 已提交
214 215 216
	map = ctx->pdata->pdev_strm_map;
	map_size = ctx->pdata->strm_map_size;

217 218 219 220 221 222 223 224
	if (is_compress == true)
		cstream = (struct snd_compr_stream *)substream;
	else
		pstream = (struct snd_pcm_substream *)substream;

	str_params->stream_type = SST_STREAM_TYPE_MUSIC;

	/* For pcm streams */
V
Vinod Koul 已提交
225 226 227 228 229 230 231 232 233 234 235
	if (pstream) {
		index = sst_get_stream_mapping(pstream->pcm->device,
					  pstream->number, pstream->stream,
					  map, map_size);
		if (index <= 0)
			return -EINVAL;

		str_params->stream_id = index;
		str_params->device_type = map[index].device_id;
		str_params->task = map[index].task_id;

236
		str_params->ops = (u8)pstream->stream;
V
Vinod Koul 已提交
237 238 239 240 241 242 243 244 245 246 247
	}

	if (cstream) {
		index = sst_get_stream_mapping(cstream->device->device,
					       0, cstream->direction,
					       map, map_size);
		if (index <= 0)
			return -EINVAL;
		str_params->stream_id = index;
		str_params->device_type = map[index].device_id;
		str_params->task = map[index].task_id;
248

V
Vinod Koul 已提交
249 250
		str_params->ops = (u8)cstream->direction;
	}
251
	return 0;
252 253
}

254
static int sst_platform_alloc_stream(struct snd_pcm_substream *substream,
255
		struct snd_soc_dai *dai)
256 257 258
{
	struct sst_runtime_stream *stream =
			substream->runtime->private_data;
259 260 261 262
	struct snd_sst_stream_params param = {{{0,},},};
	struct snd_sst_params str_params = {0};
	struct snd_sst_alloc_params_ext alloc_params = {0};
	int ret_val = 0;
263
	struct sst_data *ctx = snd_soc_dai_get_drvdata(dai);
264 265

	/* set codec params and inform SST driver the same */
266
	sst_fill_pcm_params(substream, &param);
267
	sst_fill_alloc_params(substream, &alloc_params);
268 269
	substream->runtime->dma_area = substream->dma_buffer.area;
	str_params.sparams = param;
270 271 272 273
	str_params.aparams = alloc_params;
	str_params.codec = SST_CODEC_TYPE_PCM;

	/* fill the device type and stream id to pass to SST driver */
V
Vinod Koul 已提交
274
	ret_val = sst_fill_stream_params(substream, ctx, &str_params, false);
275 276 277
	if (ret_val < 0)
		return ret_val;

278 279
	stream->stream_info.str_id = str_params.stream_id;

280
	ret_val = stream->ops->open(sst->dev, &str_params);
281 282 283 284
	if (ret_val <= 0)
		return ret_val;


285 286 287
	return ret_val;
}

288
static void sst_period_elapsed(void *arg)
289
{
290
	struct snd_pcm_substream *substream = arg;
291
	struct sst_runtime_stream *stream;
292
	int status;
293 294 295 296 297 298

	if (!substream || !substream->runtime)
		return;
	stream = substream->runtime->private_data;
	if (!stream)
		return;
299 300
	status = sst_get_stream_status(stream);
	if (status != SST_PLATFORM_RUNNING)
301 302 303 304 305 306 307 308
		return;
	snd_pcm_period_elapsed(substream);
}

static int sst_platform_init_stream(struct snd_pcm_substream *substream)
{
	struct sst_runtime_stream *stream =
			substream->runtime->private_data;
309
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
310 311
	int ret_val;

312
	dev_dbg(rtd->dev, "setting buffer ptr param\n");
313
	sst_set_stream_status(stream, SST_PLATFORM_INIT);
314
	stream->stream_info.period_elapsed = sst_period_elapsed;
315
	stream->stream_info.arg = substream;
316 317
	stream->stream_info.buffer_ptr = 0;
	stream->stream_info.sfreq = substream->runtime->rate;
318
	ret_val = stream->ops->stream_init(sst->dev, &stream->stream_info);
319
	if (ret_val)
320
		dev_err(rtd->dev, "control_set ret error %d\n", ret_val);
321 322 323 324
	return ret_val;

}

325 326 327 328 329 330 331 332 333 334
static int power_up_sst(struct sst_runtime_stream *stream)
{
	return stream->ops->power(sst->dev, true);
}

static void power_down_sst(struct sst_runtime_stream *stream)
{
	stream->ops->power(sst->dev, false);
}

335 336
static int sst_media_open(struct snd_pcm_substream *substream,
		struct snd_soc_dai *dai)
337
{
338
	int ret_val = 0;
339
	struct snd_pcm_runtime *runtime = substream->runtime;
340
	struct sst_runtime_stream *stream;
341

342 343 344 345
	stream = kzalloc(sizeof(*stream), GFP_KERNEL);
	if (!stream)
		return -ENOMEM;
	spin_lock_init(&stream->status_lock);
346 347 348

	/* get the sst ops */
	mutex_lock(&sst_lock);
349 350
	if (!sst ||
	    !try_module_get(sst->dev->driver->owner)) {
351
		dev_err(dai->dev, "no device available to run\n");
352 353
		ret_val = -ENODEV;
		goto out_ops;
354
	}
355 356 357 358
	stream->ops = sst->ops;
	mutex_unlock(&sst_lock);

	stream->stream_info.str_id = 0;
359

360
	stream->stream_info.arg = substream;
361
	/* allocate memory for SST API set */
362
	runtime->private_data = stream;
L
Lu Guanqun 已提交
363

364 365 366 367
	ret_val = power_up_sst(stream);
	if (ret_val < 0)
		return ret_val;

368 369 370 371 372 373 374 375 376 377
	/* Make sure, that the period size is always even */
	snd_pcm_hw_constraint_step(substream->runtime, 0,
			   SNDRV_PCM_HW_PARAM_PERIODS, 2);

	return snd_pcm_hw_constraint_integer(runtime,
			 SNDRV_PCM_HW_PARAM_PERIODS);
out_ops:
	kfree(stream);
	mutex_unlock(&sst_lock);
	return ret_val;
378 379
}

380 381
static void sst_media_close(struct snd_pcm_substream *substream,
		struct snd_soc_dai *dai)
382 383 384 385 386
{
	struct sst_runtime_stream *stream;
	int ret_val = 0, str_id;

	stream = substream->runtime->private_data;
387 388
	power_down_sst(stream);

389 390
	str_id = stream->stream_info.str_id;
	if (str_id)
391
		ret_val = stream->ops->close(sst->dev, str_id);
392
	module_put(sst->dev->driver->owner);
393
	kfree(stream);
V
Vinod Koul 已提交
394 395
}

396
static inline unsigned int get_current_pipe_id(struct snd_soc_dai *dai,
V
Vinod Koul 已提交
397 398
					       struct snd_pcm_substream *substream)
{
399
	struct sst_data *sst = snd_soc_dai_get_drvdata(dai);
V
Vinod Koul 已提交
400 401 402 403 404
	struct sst_dev_stream_map *map = sst->pdata->pdev_strm_map;
	struct sst_runtime_stream *stream =
			substream->runtime->private_data;
	u32 str_id = stream->stream_info.str_id;
	unsigned int pipe_id;
405

V
Vinod Koul 已提交
406 407
	pipe_id = map[str_id].device_id;

408
	dev_dbg(dai->dev, "got pipe_id = %#x for str_id = %d\n",
409
			pipe_id, str_id);
V
Vinod Koul 已提交
410
	return pipe_id;
411 412
}

413 414
static int sst_media_prepare(struct snd_pcm_substream *substream,
		struct snd_soc_dai *dai)
415 416 417 418 419 420 421
{
	struct sst_runtime_stream *stream;
	int ret_val = 0, str_id;

	stream = substream->runtime->private_data;
	str_id = stream->stream_info.str_id;
	if (stream->stream_info.str_id) {
422
		ret_val = stream->ops->stream_drop(sst->dev, str_id);
423 424 425
		return ret_val;
	}

426
	ret_val = sst_platform_alloc_stream(substream, dai);
427
	if (ret_val <= 0)
428 429 430 431 432 433 434 435 436 437 438
		return ret_val;
	snprintf(substream->pcm->id, sizeof(substream->pcm->id),
			"%d", stream->stream_info.str_id);

	ret_val = sst_platform_init_stream(substream);
	if (ret_val)
		return ret_val;
	substream->runtime->hw.info = SNDRV_PCM_INFO_BLOCK_TRANSFER;
	return ret_val;
}

439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
static int sst_media_hw_params(struct snd_pcm_substream *substream,
				struct snd_pcm_hw_params *params,
				struct snd_soc_dai *dai)
{
	snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
	memset(substream->runtime->dma_area, 0, params_buffer_bytes(params));
	return 0;
}

static int sst_media_hw_free(struct snd_pcm_substream *substream,
		struct snd_soc_dai *dai)
{
	return snd_pcm_lib_free_pages(substream);
}

static struct snd_soc_dai_ops sst_media_dai_ops = {
	.startup = sst_media_open,
	.shutdown = sst_media_close,
	.prepare = sst_media_prepare,
	.hw_params = sst_media_hw_params,
	.hw_free = sst_media_hw_free,
};

static int sst_platform_open(struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime;

	if (substream->pcm->internal)
		return 0;

	runtime = substream->runtime;
	runtime->hw = sst_platform_pcm_hw;
	return 0;
}

474
static int sst_platform_pcm_trigger(struct snd_pcm_substream *substream,
475 476 477 478
					int cmd)
{
	int ret_val = 0, str_id;
	struct sst_runtime_stream *stream;
479
	int status;
480
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
481

482
	dev_dbg(rtd->dev, "sst_platform_pcm_trigger called\n");
483 484
	if (substream->pcm->internal)
		return 0;
485 486 487 488
	stream = substream->runtime->private_data;
	str_id = stream->stream_info.str_id;
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
489
		dev_dbg(rtd->dev, "sst: Trigger Start\n");
490
		status = SST_PLATFORM_RUNNING;
491
		stream->stream_info.arg = substream;
492
		ret_val = stream->ops->stream_start(sst->dev, str_id);
493 494
		break;
	case SNDRV_PCM_TRIGGER_STOP:
495
		dev_dbg(rtd->dev, "sst: in stop\n");
496
		status = SST_PLATFORM_DROPPED;
497
		ret_val = stream->ops->stream_drop(sst->dev, str_id);
498 499
		break;
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
500
		dev_dbg(rtd->dev, "sst: in pause\n");
501
		status = SST_PLATFORM_PAUSED;
502
		ret_val = stream->ops->stream_pause(sst->dev, str_id);
503 504
		break;
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
505
		dev_dbg(rtd->dev, "sst: in pause release\n");
506
		status = SST_PLATFORM_RUNNING;
507
		ret_val = stream->ops->stream_pause_release(sst->dev, str_id);
508 509
		break;
	default:
510
		return -EINVAL;
511
	}
512

513 514 515
	if (!ret_val)
		sst_set_stream_status(stream, status);

516 517 518 519
	return ret_val;
}


520
static snd_pcm_uframes_t sst_platform_pcm_pointer
521 522 523
			(struct snd_pcm_substream *substream)
{
	struct sst_runtime_stream *stream;
524
	int ret_val, status;
525
	struct pcm_stream_info *str_info;
526
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
527 528

	stream = substream->runtime->private_data;
529 530
	status = sst_get_stream_status(stream);
	if (status == SST_PLATFORM_INIT)
531 532
		return 0;
	str_info = &stream->stream_info;
533
	ret_val = stream->ops->stream_read_tstamp(sst->dev, str_info);
534
	if (ret_val) {
535
		dev_err(rtd->dev, "sst: error code = %d\n", ret_val);
536 537
		return ret_val;
	}
538
	substream->runtime->delay = str_info->pcm_delay;
539
	return str_info->buffer_ptr;
540 541
}

542
static struct snd_pcm_ops sst_platform_ops = {
543
	.open = sst_platform_open,
544
	.ioctl = snd_pcm_lib_ioctl,
545 546
	.trigger = sst_platform_pcm_trigger,
	.pointer = sst_platform_pcm_pointer,
547 548 549 550
};

static void sst_pcm_free(struct snd_pcm *pcm)
{
551
	dev_dbg(pcm->dev, "sst_pcm_free called\n");
552 553 554
	snd_pcm_lib_preallocate_free_for_all(pcm);
}

555
static int sst_pcm_new(struct snd_soc_pcm_runtime *rtd)
556
{
557
	struct snd_soc_dai *dai = rtd->cpu_dai;
558
	struct snd_pcm *pcm = rtd->pcm;
559 560
	int retval = 0;

561 562
	if (dai->driver->playback.channels_min ||
			dai->driver->capture.channels_min) {
563 564
		retval =  snd_pcm_lib_preallocate_pages_for_all(pcm,
			SNDRV_DMA_TYPE_CONTINUOUS,
565
			snd_dma_continuous_data(GFP_DMA),
566 567
			SST_MIN_BUFFER, SST_MAX_BUFFER);
		if (retval) {
568
			dev_err(rtd->dev, "dma buffer allocationf fail\n");
569 570 571 572 573
			return retval;
		}
	}
	return retval;
}
574

V
Vinod Koul 已提交
575 576 577 578 579 580 581
static int sst_soc_probe(struct snd_soc_platform *platform)
{
	return sst_dsp_init_v2_dpcm(platform);
}

static struct snd_soc_platform_driver sst_soc_platform_drv  = {
	.probe		= sst_soc_probe,
582
	.ops		= &sst_platform_ops,
583
	.compr_ops	= &sst_platform_compr_ops,
584 585 586 587
	.pcm_new	= sst_pcm_new,
	.pcm_free	= sst_pcm_free,
};

588 589 590 591 592
static const struct snd_soc_component_driver sst_component = {
	.name		= "sst",
};


593 594
static int sst_platform_probe(struct platform_device *pdev)
{
V
Vinod Koul 已提交
595
	struct sst_data *drv;
596
	int ret;
597
	struct sst_platform_data *pdata;
V
Vinod Koul 已提交
598 599

	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
600
	if (drv == NULL) {
V
Vinod Koul 已提交
601 602 603
		return -ENOMEM;
	}

604 605 606 607 608
	pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
	if (pdata == NULL) {
		return -ENOMEM;
	}

V
Vinod Koul 已提交
609 610 611 612 613
	pdata->pdev_strm_map = dpcm_strm_map;
	pdata->strm_map_size = ARRAY_SIZE(dpcm_strm_map);
	drv->pdata = pdata;
	mutex_init(&drv->lock);
	dev_set_drvdata(&pdev->dev, drv);
614 615 616

	ret = snd_soc_register_platform(&pdev->dev, &sst_soc_platform_drv);
	if (ret) {
617
		dev_err(&pdev->dev, "registering soc platform failed\n");
618 619
		return ret;
	}
620

621
	ret = snd_soc_register_component(&pdev->dev, &sst_component,
622 623
				sst_platform_dai, ARRAY_SIZE(sst_platform_dai));
	if (ret) {
624
		dev_err(&pdev->dev, "registering cpu dais failed\n");
625 626 627 628 629 630 631 632
		snd_soc_unregister_platform(&pdev->dev);
	}
	return ret;
}

static int sst_platform_remove(struct platform_device *pdev)
{

633
	snd_soc_unregister_component(&pdev->dev);
634
	snd_soc_unregister_platform(&pdev->dev);
635
	dev_dbg(&pdev->dev, "sst_platform_remove success\n");
636 637 638 639 640
	return 0;
}

static struct platform_driver sst_platform_driver = {
	.driver		= {
641
		.name		= "sst-mfld-platform",
642 643 644 645 646 647
		.owner		= THIS_MODULE,
	},
	.probe		= sst_platform_probe,
	.remove		= sst_platform_remove,
};

648
module_platform_driver(sst_platform_driver);
649 650 651 652 653

MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver");
MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
MODULE_LICENSE("GPL v2");
654
MODULE_ALIAS("platform:sst-mfld-platform");