blob: 5c3e23492fe5324eb293a080d22ec94d8d0bd4de [file] [log] [blame]
Vinod Koul4b68b4e2014-05-05 14:27:50 +05301/*
2 * sst_mfld_platform.c - Intel MID Platform driver
3 *
4 * Copyright (C) 2010-2014 Intel Corp
5 * Author: Vinod Koul <vinod.koul@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 */
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/slab.h>
22#include <linux/io.h>
23#include <linux/module.h>
24#include <sound/core.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/soc.h>
28#include <sound/compress_driver.h>
29#include "sst-mfld-platform.h"
30
31/* compress stream operations */
32static void sst_compr_fragment_elapsed(void *arg)
33{
34 struct snd_compr_stream *cstream = (struct snd_compr_stream *)arg;
35
36 pr_debug("fragment elapsed by driver\n");
37 if (cstream)
38 snd_compr_fragment_elapsed(cstream);
39}
40
Vinod Koulbd17aa42014-05-15 21:38:16 +053041static void sst_drain_notify(void *arg)
42{
43 struct snd_compr_stream *cstream = (struct snd_compr_stream *)arg;
44
45 pr_debug("drain notify by driver\n");
46 if (cstream)
47 snd_compr_drain_notify(cstream);
48}
49
Vinod Koul4b68b4e2014-05-05 14:27:50 +053050static int sst_platform_compr_open(struct snd_compr_stream *cstream)
51{
52
53 int ret_val = 0;
54 struct snd_compr_runtime *runtime = cstream->runtime;
55 struct sst_runtime_stream *stream;
56
57 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
58 if (!stream)
59 return -ENOMEM;
60
61 spin_lock_init(&stream->status_lock);
62
63 /* get the sst ops */
64 if (!sst || !try_module_get(sst->dev->driver->owner)) {
65 pr_err("no device available to run\n");
66 ret_val = -ENODEV;
67 goto out_ops;
68 }
69 stream->compr_ops = sst->compr_ops;
70
71 stream->id = 0;
72 sst_set_stream_status(stream, SST_PLATFORM_INIT);
73 runtime->private_data = stream;
74 return 0;
75out_ops:
76 kfree(stream);
77 return ret_val;
78}
79
80static int sst_platform_compr_free(struct snd_compr_stream *cstream)
81{
82 struct sst_runtime_stream *stream;
83 int ret_val = 0, str_id;
84
85 stream = cstream->runtime->private_data;
86 /*need to check*/
87 str_id = stream->id;
88 if (str_id)
89 ret_val = stream->compr_ops->close(str_id);
90 module_put(sst->dev->driver->owner);
91 kfree(stream);
92 pr_debug("%s: %d\n", __func__, ret_val);
93 return 0;
94}
95
96static int sst_platform_compr_set_params(struct snd_compr_stream *cstream,
97 struct snd_compr_params *params)
98{
99 struct sst_runtime_stream *stream;
100 int retval;
101 struct snd_sst_params str_params;
102 struct sst_compress_cb cb;
103
104 stream = cstream->runtime->private_data;
105 /* construct fw structure for this*/
106 memset(&str_params, 0, sizeof(str_params));
107
108 str_params.ops = STREAM_OPS_PLAYBACK;
109 str_params.stream_type = SST_STREAM_TYPE_MUSIC;
110 str_params.device_type = SND_SST_DEVICE_COMPRESS;
111
112 switch (params->codec.id) {
113 case SND_AUDIOCODEC_MP3: {
114 str_params.codec = SST_CODEC_TYPE_MP3;
115 str_params.sparams.uc.mp3_params.codec = SST_CODEC_TYPE_MP3;
116 str_params.sparams.uc.mp3_params.num_chan = params->codec.ch_in;
117 str_params.sparams.uc.mp3_params.pcm_wd_sz = 16;
118 break;
119 }
120
121 case SND_AUDIOCODEC_AAC: {
122 str_params.codec = SST_CODEC_TYPE_AAC;
123 str_params.sparams.uc.aac_params.codec = SST_CODEC_TYPE_AAC;
124 str_params.sparams.uc.aac_params.num_chan = params->codec.ch_in;
125 str_params.sparams.uc.aac_params.pcm_wd_sz = 16;
126 if (params->codec.format == SND_AUDIOSTREAMFORMAT_MP4ADTS)
127 str_params.sparams.uc.aac_params.bs_format =
128 AAC_BIT_STREAM_ADTS;
129 else if (params->codec.format == SND_AUDIOSTREAMFORMAT_RAW)
130 str_params.sparams.uc.aac_params.bs_format =
131 AAC_BIT_STREAM_RAW;
132 else {
133 pr_err("Undefined format%d\n", params->codec.format);
134 return -EINVAL;
135 }
136 str_params.sparams.uc.aac_params.externalsr =
137 params->codec.sample_rate;
138 break;
139 }
140
141 default:
142 pr_err("codec not supported, id =%d\n", params->codec.id);
143 return -EINVAL;
144 }
145
146 str_params.aparams.ring_buf_info[0].addr =
147 virt_to_phys(cstream->runtime->buffer);
148 str_params.aparams.ring_buf_info[0].size =
149 cstream->runtime->buffer_size;
150 str_params.aparams.sg_count = 1;
151 str_params.aparams.frag_size = cstream->runtime->fragment_size;
152
153 cb.param = cstream;
154 cb.compr_cb = sst_compr_fragment_elapsed;
Vinod Koulbd17aa42014-05-15 21:38:16 +0530155 cb.drain_cb_param = cstream;
156 cb.drain_notify = sst_drain_notify;
Vinod Koul4b68b4e2014-05-05 14:27:50 +0530157
158 retval = stream->compr_ops->open(&str_params, &cb);
159 if (retval < 0) {
160 pr_err("stream allocation failed %d\n", retval);
161 return retval;
162 }
163
164 stream->id = retval;
165 return 0;
166}
167
168static int sst_platform_compr_trigger(struct snd_compr_stream *cstream, int cmd)
169{
170 struct sst_runtime_stream *stream =
171 cstream->runtime->private_data;
172
173 return stream->compr_ops->control(cmd, stream->id);
174}
175
176static int sst_platform_compr_pointer(struct snd_compr_stream *cstream,
177 struct snd_compr_tstamp *tstamp)
178{
179 struct sst_runtime_stream *stream;
180
181 stream = cstream->runtime->private_data;
182 stream->compr_ops->tstamp(stream->id, tstamp);
183 tstamp->byte_offset = tstamp->copied_total %
184 (u32)cstream->runtime->buffer_size;
185 pr_debug("calc bytes offset/copied bytes as %d\n", tstamp->byte_offset);
186 return 0;
187}
188
189static int sst_platform_compr_ack(struct snd_compr_stream *cstream,
190 size_t bytes)
191{
192 struct sst_runtime_stream *stream;
193
194 stream = cstream->runtime->private_data;
195 stream->compr_ops->ack(stream->id, (unsigned long)bytes);
196 stream->bytes_written += bytes;
197
198 return 0;
199}
200
201static int sst_platform_compr_get_caps(struct snd_compr_stream *cstream,
202 struct snd_compr_caps *caps)
203{
204 struct sst_runtime_stream *stream =
205 cstream->runtime->private_data;
206
207 return stream->compr_ops->get_caps(caps);
208}
209
210static int sst_platform_compr_get_codec_caps(struct snd_compr_stream *cstream,
211 struct snd_compr_codec_caps *codec)
212{
213 struct sst_runtime_stream *stream =
214 cstream->runtime->private_data;
215
216 return stream->compr_ops->get_codec_caps(codec);
217}
218
219static int sst_platform_compr_set_metadata(struct snd_compr_stream *cstream,
220 struct snd_compr_metadata *metadata)
221{
222 struct sst_runtime_stream *stream =
223 cstream->runtime->private_data;
224
225 return stream->compr_ops->set_metadata(stream->id, metadata);
226}
227
228struct snd_compr_ops sst_platform_compr_ops = {
229
230 .open = sst_platform_compr_open,
231 .free = sst_platform_compr_free,
232 .set_params = sst_platform_compr_set_params,
233 .set_metadata = sst_platform_compr_set_metadata,
234 .trigger = sst_platform_compr_trigger,
235 .pointer = sst_platform_compr_pointer,
236 .ack = sst_platform_compr_ack,
237 .get_caps = sst_platform_compr_get_caps,
238 .get_codec_caps = sst_platform_compr_get_codec_caps,
239};