2 * sst_mfld_platform.c - Intel MID Platform driver
4 * Copyright (C) 2010-2014 Intel Corp
5 * Author: Vinod Koul <vinod.koul@intel.com>
6 * Author: Harsha Priya <priya.harsha@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/slab.h>
24 #include <linux/module.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
28 #include <sound/soc.h>
29 #include <sound/compress_driver.h>
30 #include <asm/platform_sst_audio.h>
31 #include "sst-mfld-platform.h"
32 #include "sst-atom-controls.h"
34 struct sst_device
*sst
;
35 static DEFINE_MUTEX(sst_lock
);
36 extern struct snd_compr_ops sst_platform_compr_ops
;
38 int sst_register_dsp(struct sst_device
*dev
)
42 if (!try_module_get(dev
->dev
->driver
->owner
))
44 mutex_lock(&sst_lock
);
46 dev_err(dev
->dev
, "we already have a device %s\n", sst
->name
);
47 module_put(dev
->dev
->driver
->owner
);
48 mutex_unlock(&sst_lock
);
51 dev_dbg(dev
->dev
, "registering device %s\n", dev
->name
);
53 mutex_unlock(&sst_lock
);
56 EXPORT_SYMBOL_GPL(sst_register_dsp
);
58 int sst_unregister_dsp(struct sst_device
*dev
)
65 mutex_lock(&sst_lock
);
68 mutex_unlock(&sst_lock
);
72 module_put(sst
->dev
->driver
->owner
);
73 dev_dbg(dev
->dev
, "unreg %s\n", sst
->name
);
75 mutex_unlock(&sst_lock
);
78 EXPORT_SYMBOL_GPL(sst_unregister_dsp
);
80 static struct snd_pcm_hardware sst_platform_pcm_hw
= {
81 .info
= (SNDRV_PCM_INFO_INTERLEAVED
|
82 SNDRV_PCM_INFO_DOUBLE
|
83 SNDRV_PCM_INFO_PAUSE
|
84 SNDRV_PCM_INFO_RESUME
|
86 SNDRV_PCM_INFO_MMAP_VALID
|
87 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
88 SNDRV_PCM_INFO_SYNC_START
),
89 .buffer_bytes_max
= SST_MAX_BUFFER
,
90 .period_bytes_min
= SST_MIN_PERIOD_BYTES
,
91 .period_bytes_max
= SST_MAX_PERIOD_BYTES
,
92 .periods_min
= SST_MIN_PERIODS
,
93 .periods_max
= SST_MAX_PERIODS
,
94 .fifo_size
= SST_FIFO_SIZE
,
97 static struct sst_dev_stream_map dpcm_strm_map
[] = {
98 {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, /* Reserved, not in use */
99 {MERR_DPCM_AUDIO
, 0, SNDRV_PCM_STREAM_PLAYBACK
, PIPE_MEDIA1_IN
, SST_TASK_ID_MEDIA
, 0},
100 {MERR_DPCM_COMPR
, 0, SNDRV_PCM_STREAM_PLAYBACK
, PIPE_MEDIA0_IN
, SST_TASK_ID_MEDIA
, 0},
101 {MERR_DPCM_AUDIO
, 0, SNDRV_PCM_STREAM_CAPTURE
, PIPE_PCM1_OUT
, SST_TASK_ID_MEDIA
, 0},
104 static int sst_media_digital_mute(struct snd_soc_dai
*dai
, int mute
, int stream
)
107 return sst_send_pipe_gains(dai
, stream
, mute
);
110 /* helper functions */
111 void sst_set_stream_status(struct sst_runtime_stream
*stream
,
115 spin_lock_irqsave(&stream
->status_lock
, flags
);
116 stream
->stream_status
= state
;
117 spin_unlock_irqrestore(&stream
->status_lock
, flags
);
120 static inline int sst_get_stream_status(struct sst_runtime_stream
*stream
)
125 spin_lock_irqsave(&stream
->status_lock
, flags
);
126 state
= stream
->stream_status
;
127 spin_unlock_irqrestore(&stream
->status_lock
, flags
);
131 static void sst_fill_alloc_params(struct snd_pcm_substream
*substream
,
132 struct snd_sst_alloc_params_ext
*alloc_param
)
134 unsigned int channels
;
135 snd_pcm_uframes_t period_size
;
137 ssize_t buffer_bytes
= snd_pcm_lib_buffer_bytes(substream
);
138 u32 buffer_addr
= virt_to_phys(substream
->dma_buffer
.area
);
140 channels
= substream
->runtime
->channels
;
141 period_size
= substream
->runtime
->period_size
;
142 periodbytes
= samples_to_bytes(substream
->runtime
, period_size
);
143 alloc_param
->ring_buf_info
[0].addr
= buffer_addr
;
144 alloc_param
->ring_buf_info
[0].size
= buffer_bytes
;
145 alloc_param
->sg_count
= 1;
146 alloc_param
->reserved
= 0;
147 alloc_param
->frag_size
= periodbytes
* channels
;
150 static void sst_fill_pcm_params(struct snd_pcm_substream
*substream
,
151 struct snd_sst_stream_params
*param
)
153 param
->uc
.pcm_params
.num_chan
= (u8
) substream
->runtime
->channels
;
154 param
->uc
.pcm_params
.pcm_wd_sz
= substream
->runtime
->sample_bits
;
155 param
->uc
.pcm_params
.sfreq
= substream
->runtime
->rate
;
157 /* PCM stream via ALSA interface */
158 param
->uc
.pcm_params
.use_offload_path
= 0;
159 param
->uc
.pcm_params
.reserved2
= 0;
160 memset(param
->uc
.pcm_params
.channel_map
, 0, sizeof(u8
));
164 static int sst_get_stream_mapping(int dev
, int sdev
, int dir
,
165 struct sst_dev_stream_map
*map
, int size
)
173 /* index 0 is not used in stream map */
174 for (i
= 1; i
< size
; i
++) {
175 if ((map
[i
].dev_num
== dev
) && (map
[i
].direction
== dir
))
181 int sst_fill_stream_params(void *substream
,
182 const struct sst_data
*ctx
, struct snd_sst_params
*str_params
, bool is_compress
)
186 struct sst_dev_stream_map
*map
;
187 struct snd_pcm_substream
*pstream
= NULL
;
188 struct snd_compr_stream
*cstream
= NULL
;
190 map
= ctx
->pdata
->pdev_strm_map
;
191 map_size
= ctx
->pdata
->strm_map_size
;
193 if (is_compress
== true)
194 cstream
= (struct snd_compr_stream
*)substream
;
196 pstream
= (struct snd_pcm_substream
*)substream
;
198 str_params
->stream_type
= SST_STREAM_TYPE_MUSIC
;
200 /* For pcm streams */
202 index
= sst_get_stream_mapping(pstream
->pcm
->device
,
203 pstream
->number
, pstream
->stream
,
208 str_params
->stream_id
= index
;
209 str_params
->device_type
= map
[index
].device_id
;
210 str_params
->task
= map
[index
].task_id
;
212 str_params
->ops
= (u8
)pstream
->stream
;
216 index
= sst_get_stream_mapping(cstream
->device
->device
,
217 0, cstream
->direction
,
221 str_params
->stream_id
= index
;
222 str_params
->device_type
= map
[index
].device_id
;
223 str_params
->task
= map
[index
].task_id
;
225 str_params
->ops
= (u8
)cstream
->direction
;
230 static int sst_platform_alloc_stream(struct snd_pcm_substream
*substream
,
231 struct snd_soc_dai
*dai
)
233 struct sst_runtime_stream
*stream
=
234 substream
->runtime
->private_data
;
235 struct snd_sst_stream_params param
= {{{0,},},};
236 struct snd_sst_params str_params
= {0};
237 struct snd_sst_alloc_params_ext alloc_params
= {0};
239 struct sst_data
*ctx
= snd_soc_dai_get_drvdata(dai
);
241 /* set codec params and inform SST driver the same */
242 sst_fill_pcm_params(substream
, ¶m
);
243 sst_fill_alloc_params(substream
, &alloc_params
);
244 substream
->runtime
->dma_area
= substream
->dma_buffer
.area
;
245 str_params
.sparams
= param
;
246 str_params
.aparams
= alloc_params
;
247 str_params
.codec
= SST_CODEC_TYPE_PCM
;
249 /* fill the device type and stream id to pass to SST driver */
250 ret_val
= sst_fill_stream_params(substream
, ctx
, &str_params
, false);
254 stream
->stream_info
.str_id
= str_params
.stream_id
;
256 ret_val
= stream
->ops
->open(sst
->dev
, &str_params
);
264 static void sst_period_elapsed(void *arg
)
266 struct snd_pcm_substream
*substream
= arg
;
267 struct sst_runtime_stream
*stream
;
270 if (!substream
|| !substream
->runtime
)
272 stream
= substream
->runtime
->private_data
;
275 status
= sst_get_stream_status(stream
);
276 if (status
!= SST_PLATFORM_RUNNING
)
278 snd_pcm_period_elapsed(substream
);
281 static int sst_platform_init_stream(struct snd_pcm_substream
*substream
)
283 struct sst_runtime_stream
*stream
=
284 substream
->runtime
->private_data
;
285 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
288 dev_dbg(rtd
->dev
, "setting buffer ptr param\n");
289 sst_set_stream_status(stream
, SST_PLATFORM_INIT
);
290 stream
->stream_info
.period_elapsed
= sst_period_elapsed
;
291 stream
->stream_info
.arg
= substream
;
292 stream
->stream_info
.buffer_ptr
= 0;
293 stream
->stream_info
.sfreq
= substream
->runtime
->rate
;
294 ret_val
= stream
->ops
->stream_init(sst
->dev
, &stream
->stream_info
);
296 dev_err(rtd
->dev
, "control_set ret error %d\n", ret_val
);
301 static int power_up_sst(struct sst_runtime_stream
*stream
)
303 return stream
->ops
->power(sst
->dev
, true);
306 static void power_down_sst(struct sst_runtime_stream
*stream
)
308 stream
->ops
->power(sst
->dev
, false);
311 static int sst_media_open(struct snd_pcm_substream
*substream
,
312 struct snd_soc_dai
*dai
)
315 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
316 struct sst_runtime_stream
*stream
;
318 stream
= kzalloc(sizeof(*stream
), GFP_KERNEL
);
321 spin_lock_init(&stream
->status_lock
);
323 /* get the sst ops */
324 mutex_lock(&sst_lock
);
326 !try_module_get(sst
->dev
->driver
->owner
)) {
327 dev_err(dai
->dev
, "no device available to run\n");
331 stream
->ops
= sst
->ops
;
332 mutex_unlock(&sst_lock
);
334 stream
->stream_info
.str_id
= 0;
336 stream
->stream_info
.arg
= substream
;
337 /* allocate memory for SST API set */
338 runtime
->private_data
= stream
;
340 ret_val
= power_up_sst(stream
);
344 /* Make sure, that the period size is always even */
345 snd_pcm_hw_constraint_step(substream
->runtime
, 0,
346 SNDRV_PCM_HW_PARAM_PERIODS
, 2);
348 return snd_pcm_hw_constraint_integer(runtime
,
349 SNDRV_PCM_HW_PARAM_PERIODS
);
352 mutex_unlock(&sst_lock
);
356 static void sst_media_close(struct snd_pcm_substream
*substream
,
357 struct snd_soc_dai
*dai
)
359 struct sst_runtime_stream
*stream
;
360 int ret_val
= 0, str_id
;
362 stream
= substream
->runtime
->private_data
;
363 power_down_sst(stream
);
365 str_id
= stream
->stream_info
.str_id
;
367 ret_val
= stream
->ops
->close(sst
->dev
, str_id
);
368 module_put(sst
->dev
->driver
->owner
);
372 static inline unsigned int get_current_pipe_id(struct snd_soc_dai
*dai
,
373 struct snd_pcm_substream
*substream
)
375 struct sst_data
*sst
= snd_soc_dai_get_drvdata(dai
);
376 struct sst_dev_stream_map
*map
= sst
->pdata
->pdev_strm_map
;
377 struct sst_runtime_stream
*stream
=
378 substream
->runtime
->private_data
;
379 u32 str_id
= stream
->stream_info
.str_id
;
380 unsigned int pipe_id
;
382 pipe_id
= map
[str_id
].device_id
;
384 dev_dbg(dai
->dev
, "got pipe_id = %#x for str_id = %d\n",
389 static int sst_media_prepare(struct snd_pcm_substream
*substream
,
390 struct snd_soc_dai
*dai
)
392 struct sst_runtime_stream
*stream
;
393 int ret_val
= 0, str_id
;
395 stream
= substream
->runtime
->private_data
;
396 str_id
= stream
->stream_info
.str_id
;
397 if (stream
->stream_info
.str_id
) {
398 ret_val
= stream
->ops
->stream_drop(sst
->dev
, str_id
);
402 ret_val
= sst_platform_alloc_stream(substream
, dai
);
405 snprintf(substream
->pcm
->id
, sizeof(substream
->pcm
->id
),
406 "%d", stream
->stream_info
.str_id
);
408 ret_val
= sst_platform_init_stream(substream
);
411 substream
->runtime
->hw
.info
= SNDRV_PCM_INFO_BLOCK_TRANSFER
;
415 static int sst_media_hw_params(struct snd_pcm_substream
*substream
,
416 struct snd_pcm_hw_params
*params
,
417 struct snd_soc_dai
*dai
)
419 snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(params
));
420 memset(substream
->runtime
->dma_area
, 0, params_buffer_bytes(params
));
424 static int sst_media_hw_free(struct snd_pcm_substream
*substream
,
425 struct snd_soc_dai
*dai
)
427 return snd_pcm_lib_free_pages(substream
);
430 static int sst_enable_ssp(struct snd_pcm_substream
*substream
,
431 struct snd_soc_dai
*dai
)
436 ret
= sst_handle_vb_timer(dai
, true);
439 ret
= send_ssp_cmd(dai
, dai
->name
, 1);
444 static void sst_disable_ssp(struct snd_pcm_substream
*substream
,
445 struct snd_soc_dai
*dai
)
448 send_ssp_cmd(dai
, dai
->name
, 0);
449 sst_handle_vb_timer(dai
, false);
453 static struct snd_soc_dai_ops sst_media_dai_ops
= {
454 .startup
= sst_media_open
,
455 .shutdown
= sst_media_close
,
456 .prepare
= sst_media_prepare
,
457 .hw_params
= sst_media_hw_params
,
458 .hw_free
= sst_media_hw_free
,
459 .mute_stream
= sst_media_digital_mute
,
462 static struct snd_soc_dai_ops sst_compr_dai_ops
= {
463 .mute_stream
= sst_media_digital_mute
,
466 static struct snd_soc_dai_ops sst_be_dai_ops
= {
467 .startup
= sst_enable_ssp
,
468 .shutdown
= sst_disable_ssp
,
471 static struct snd_soc_dai_driver sst_platform_dai
[] = {
473 .name
= "media-cpu-dai",
474 .ops
= &sst_media_dai_ops
,
476 .stream_name
= "Headset Playback",
477 .channels_min
= SST_STEREO
,
478 .channels_max
= SST_STEREO
,
479 .rates
= SNDRV_PCM_RATE_44100
|SNDRV_PCM_RATE_48000
,
480 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
483 .stream_name
= "Headset Capture",
486 .rates
= SNDRV_PCM_RATE_44100
|SNDRV_PCM_RATE_48000
,
487 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
491 .name
= "compress-cpu-dai",
493 .ops
= &sst_compr_dai_ops
,
495 .stream_name
= "Compress Playback",
496 .channels_min
= SST_STEREO
,
497 .channels_max
= SST_STEREO
,
498 .rates
= SNDRV_PCM_RATE_48000
,
499 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
505 .ops
= &sst_be_dai_ops
,
507 .stream_name
= "ssp0 Tx",
508 .channels_min
= SST_STEREO
,
509 .channels_max
= SST_STEREO
,
510 .rates
= SNDRV_PCM_RATE_48000
,
511 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
514 .stream_name
= "ssp0 Rx",
515 .channels_min
= SST_STEREO
,
516 .channels_max
= SST_STEREO
,
517 .rates
= SNDRV_PCM_RATE_48000
,
518 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
523 .ops
= &sst_be_dai_ops
,
525 .stream_name
= "ssp1 Tx",
526 .channels_min
= SST_STEREO
,
527 .channels_max
= SST_STEREO
,
528 .rates
= SNDRV_PCM_RATE_8000
|SNDRV_PCM_RATE_16000
|SNDRV_PCM_RATE_48000
,
529 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
532 .stream_name
= "ssp1 Rx",
533 .channels_min
= SST_STEREO
,
534 .channels_max
= SST_STEREO
,
535 .rates
= SNDRV_PCM_RATE_8000
|SNDRV_PCM_RATE_16000
|SNDRV_PCM_RATE_48000
,
536 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
541 .ops
= &sst_be_dai_ops
,
543 .stream_name
= "ssp2 Tx",
544 .channels_min
= SST_STEREO
,
545 .channels_max
= SST_STEREO
,
546 .rates
= SNDRV_PCM_RATE_48000
,
547 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
550 .stream_name
= "ssp2 Rx",
551 .channels_min
= SST_STEREO
,
552 .channels_max
= SST_STEREO
,
553 .rates
= SNDRV_PCM_RATE_48000
,
554 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
559 static int sst_platform_open(struct snd_pcm_substream
*substream
)
561 struct snd_pcm_runtime
*runtime
;
563 if (substream
->pcm
->internal
)
566 runtime
= substream
->runtime
;
567 runtime
->hw
= sst_platform_pcm_hw
;
571 static int sst_platform_pcm_trigger(struct snd_pcm_substream
*substream
,
574 int ret_val
= 0, str_id
;
575 struct sst_runtime_stream
*stream
;
577 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
579 dev_dbg(rtd
->dev
, "sst_platform_pcm_trigger called\n");
580 if (substream
->pcm
->internal
)
582 stream
= substream
->runtime
->private_data
;
583 str_id
= stream
->stream_info
.str_id
;
585 case SNDRV_PCM_TRIGGER_START
:
586 dev_dbg(rtd
->dev
, "sst: Trigger Start\n");
587 status
= SST_PLATFORM_RUNNING
;
588 stream
->stream_info
.arg
= substream
;
589 ret_val
= stream
->ops
->stream_start(sst
->dev
, str_id
);
591 case SNDRV_PCM_TRIGGER_STOP
:
592 dev_dbg(rtd
->dev
, "sst: in stop\n");
593 status
= SST_PLATFORM_DROPPED
;
594 ret_val
= stream
->ops
->stream_drop(sst
->dev
, str_id
);
596 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
597 dev_dbg(rtd
->dev
, "sst: in pause\n");
598 status
= SST_PLATFORM_PAUSED
;
599 ret_val
= stream
->ops
->stream_pause(sst
->dev
, str_id
);
601 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
602 dev_dbg(rtd
->dev
, "sst: in pause release\n");
603 status
= SST_PLATFORM_RUNNING
;
604 ret_val
= stream
->ops
->stream_pause_release(sst
->dev
, str_id
);
611 sst_set_stream_status(stream
, status
);
617 static snd_pcm_uframes_t sst_platform_pcm_pointer
618 (struct snd_pcm_substream
*substream
)
620 struct sst_runtime_stream
*stream
;
622 struct pcm_stream_info
*str_info
;
623 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
625 stream
= substream
->runtime
->private_data
;
626 status
= sst_get_stream_status(stream
);
627 if (status
== SST_PLATFORM_INIT
)
629 str_info
= &stream
->stream_info
;
630 ret_val
= stream
->ops
->stream_read_tstamp(sst
->dev
, str_info
);
632 dev_err(rtd
->dev
, "sst: error code = %d\n", ret_val
);
635 substream
->runtime
->delay
= str_info
->pcm_delay
;
636 return str_info
->buffer_ptr
;
639 static struct snd_pcm_ops sst_platform_ops
= {
640 .open
= sst_platform_open
,
641 .ioctl
= snd_pcm_lib_ioctl
,
642 .trigger
= sst_platform_pcm_trigger
,
643 .pointer
= sst_platform_pcm_pointer
,
646 static void sst_pcm_free(struct snd_pcm
*pcm
)
648 dev_dbg(pcm
->dev
, "sst_pcm_free called\n");
649 snd_pcm_lib_preallocate_free_for_all(pcm
);
652 static int sst_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
654 struct snd_soc_dai
*dai
= rtd
->cpu_dai
;
655 struct snd_pcm
*pcm
= rtd
->pcm
;
658 if (dai
->driver
->playback
.channels_min
||
659 dai
->driver
->capture
.channels_min
) {
660 retval
= snd_pcm_lib_preallocate_pages_for_all(pcm
,
661 SNDRV_DMA_TYPE_CONTINUOUS
,
662 snd_dma_continuous_data(GFP_DMA
),
663 SST_MIN_BUFFER
, SST_MAX_BUFFER
);
665 dev_err(rtd
->dev
, "dma buffer allocationf fail\n");
672 static int sst_soc_probe(struct snd_soc_platform
*platform
)
674 return sst_dsp_init_v2_dpcm(platform
);
677 static struct snd_soc_platform_driver sst_soc_platform_drv
= {
678 .probe
= sst_soc_probe
,
679 .ops
= &sst_platform_ops
,
680 .compr_ops
= &sst_platform_compr_ops
,
681 .pcm_new
= sst_pcm_new
,
682 .pcm_free
= sst_pcm_free
,
685 static const struct snd_soc_component_driver sst_component
= {
690 static int sst_platform_probe(struct platform_device
*pdev
)
692 struct sst_data
*drv
;
694 struct sst_platform_data
*pdata
;
696 drv
= devm_kzalloc(&pdev
->dev
, sizeof(*drv
), GFP_KERNEL
);
701 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
706 pdata
->pdev_strm_map
= dpcm_strm_map
;
707 pdata
->strm_map_size
= ARRAY_SIZE(dpcm_strm_map
);
710 mutex_init(&drv
->lock
);
711 dev_set_drvdata(&pdev
->dev
, drv
);
713 ret
= snd_soc_register_platform(&pdev
->dev
, &sst_soc_platform_drv
);
715 dev_err(&pdev
->dev
, "registering soc platform failed\n");
719 ret
= snd_soc_register_component(&pdev
->dev
, &sst_component
,
720 sst_platform_dai
, ARRAY_SIZE(sst_platform_dai
));
722 dev_err(&pdev
->dev
, "registering cpu dais failed\n");
723 snd_soc_unregister_platform(&pdev
->dev
);
728 static int sst_platform_remove(struct platform_device
*pdev
)
731 snd_soc_unregister_component(&pdev
->dev
);
732 snd_soc_unregister_platform(&pdev
->dev
);
733 dev_dbg(&pdev
->dev
, "sst_platform_remove success\n");
737 static struct platform_driver sst_platform_driver
= {
739 .name
= "sst-mfld-platform",
741 .probe
= sst_platform_probe
,
742 .remove
= sst_platform_remove
,
745 module_platform_driver(sst_platform_driver
);
747 MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver");
748 MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
749 MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
750 MODULE_LICENSE("GPL v2");
751 MODULE_ALIAS("platform:sst-mfld-platform");