diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-10-16 10:30:18 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-20 07:20:34 -0400 |
commit | 60dc8dbacb001b6400624ee72990b85d6d44bce6 (patch) | |
tree | 2b34c151c88f31889efeb2c823f1a136eb3f94db | |
parent | 3d9ff34622badd65543430a784f7af9838c5c3fc (diff) |
ASoC: Intel: sst: Add some helper functions
This patch adds helper functions like wait, creating ipc headers, shim
wrappers.
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/intel/sst/sst_pvt.c | 446 |
1 files changed, 446 insertions, 0 deletions
diff --git a/sound/soc/intel/sst/sst_pvt.c b/sound/soc/intel/sst/sst_pvt.c new file mode 100644 index 000000000000..9e5f69b6b395 --- /dev/null +++ b/sound/soc/intel/sst/sst_pvt.c | |||
@@ -0,0 +1,446 @@ | |||
1 | /* | ||
2 | * sst_pvt.c - Intel SST Driver for audio engine | ||
3 | * | ||
4 | * Copyright (C) 2008-14 Intel Corp | ||
5 | * Authors: Vinod Koul <vinod.koul@intel.com> | ||
6 | * Harsha Priya <priya.harsha@intel.com> | ||
7 | * Dharageswari R <dharageswari.r@intel.com> | ||
8 | * KP Jeeja <jeeja.kp@intel.com> | ||
9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License as published by | ||
13 | * the Free Software Foundation; version 2 of the License. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, but | ||
16 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
18 | * General Public License for more details. | ||
19 | * | ||
20 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
21 | */ | ||
22 | #include <linux/kobject.h> | ||
23 | #include <linux/pci.h> | ||
24 | #include <linux/fs.h> | ||
25 | #include <linux/firmware.h> | ||
26 | #include <linux/pm_runtime.h> | ||
27 | #include <linux/sched.h> | ||
28 | #include <linux/delay.h> | ||
29 | #include <sound/asound.h> | ||
30 | #include <sound/core.h> | ||
31 | #include <sound/pcm.h> | ||
32 | #include <sound/soc.h> | ||
33 | #include <sound/compress_driver.h> | ||
34 | #include <asm/platform_sst_audio.h> | ||
35 | #include "../sst-mfld-platform.h" | ||
36 | #include "sst.h" | ||
37 | #include "../sst-dsp.h" | ||
38 | |||
39 | int sst_shim_write(void __iomem *addr, int offset, int value) | ||
40 | { | ||
41 | writel(value, addr + offset); | ||
42 | return 0; | ||
43 | } | ||
44 | |||
45 | u32 sst_shim_read(void __iomem *addr, int offset) | ||
46 | { | ||
47 | return readl(addr + offset); | ||
48 | } | ||
49 | |||
50 | u64 sst_reg_read64(void __iomem *addr, int offset) | ||
51 | { | ||
52 | u64 val = 0; | ||
53 | |||
54 | memcpy_fromio(&val, addr + offset, sizeof(val)); | ||
55 | |||
56 | return val; | ||
57 | } | ||
58 | |||
59 | int sst_shim_write64(void __iomem *addr, int offset, u64 value) | ||
60 | { | ||
61 | memcpy_toio(addr + offset, &value, sizeof(value)); | ||
62 | return 0; | ||
63 | } | ||
64 | |||
65 | u64 sst_shim_read64(void __iomem *addr, int offset) | ||
66 | { | ||
67 | u64 val = 0; | ||
68 | |||
69 | memcpy_fromio(&val, addr + offset, sizeof(val)); | ||
70 | return val; | ||
71 | } | ||
72 | |||
73 | void sst_set_fw_state_locked( | ||
74 | struct intel_sst_drv *sst_drv_ctx, int sst_state) | ||
75 | { | ||
76 | mutex_lock(&sst_drv_ctx->sst_lock); | ||
77 | sst_drv_ctx->sst_state = sst_state; | ||
78 | mutex_unlock(&sst_drv_ctx->sst_lock); | ||
79 | } | ||
80 | |||
81 | /* | ||
82 | * sst_wait_interruptible - wait on event | ||
83 | * | ||
84 | * @sst_drv_ctx: Driver context | ||
85 | * @block: Driver block to wait on | ||
86 | * | ||
87 | * This function waits without a timeout (and is interruptable) for a | ||
88 | * given block event | ||
89 | */ | ||
90 | int sst_wait_interruptible(struct intel_sst_drv *sst_drv_ctx, | ||
91 | struct sst_block *block) | ||
92 | { | ||
93 | int retval = 0; | ||
94 | |||
95 | if (!wait_event_interruptible(sst_drv_ctx->wait_queue, | ||
96 | block->condition)) { | ||
97 | /* event wake */ | ||
98 | if (block->ret_code < 0) { | ||
99 | dev_err(sst_drv_ctx->dev, | ||
100 | "stream failed %d\n", block->ret_code); | ||
101 | retval = -EBUSY; | ||
102 | } else { | ||
103 | dev_dbg(sst_drv_ctx->dev, "event up\n"); | ||
104 | retval = 0; | ||
105 | } | ||
106 | } else { | ||
107 | dev_err(sst_drv_ctx->dev, "signal interrupted\n"); | ||
108 | retval = -EINTR; | ||
109 | } | ||
110 | return retval; | ||
111 | |||
112 | } | ||
113 | |||
114 | unsigned long long read_shim_data(struct intel_sst_drv *sst, int addr) | ||
115 | { | ||
116 | unsigned long long val = 0; | ||
117 | |||
118 | switch (sst->pci_id) { | ||
119 | case SST_MRFLD_PCI_ID: | ||
120 | val = sst_shim_read64(sst->shim, addr); | ||
121 | break; | ||
122 | } | ||
123 | return val; | ||
124 | } | ||
125 | |||
126 | void write_shim_data(struct intel_sst_drv *sst, int addr, | ||
127 | unsigned long long data) | ||
128 | { | ||
129 | switch (sst->pci_id) { | ||
130 | case SST_MRFLD_PCI_ID: | ||
131 | sst_shim_write64(sst->shim, addr, (u64) data); | ||
132 | break; | ||
133 | } | ||
134 | } | ||
135 | |||
136 | /* | ||
137 | * sst_wait_timeout - wait on event for timeout | ||
138 | * | ||
139 | * @sst_drv_ctx: Driver context | ||
140 | * @block: Driver block to wait on | ||
141 | * | ||
142 | * This function waits with a timeout value (and is not interruptible) on a | ||
143 | * given block event | ||
144 | */ | ||
145 | int sst_wait_timeout(struct intel_sst_drv *sst_drv_ctx, struct sst_block *block) | ||
146 | { | ||
147 | int retval = 0; | ||
148 | |||
149 | /* | ||
150 | * NOTE: | ||
151 | * Observed that FW processes the alloc msg and replies even | ||
152 | * before the alloc thread has finished execution | ||
153 | */ | ||
154 | dev_dbg(sst_drv_ctx->dev, | ||
155 | "waiting for condition %x ipc %d drv_id %d\n", | ||
156 | block->condition, block->msg_id, block->drv_id); | ||
157 | if (wait_event_timeout(sst_drv_ctx->wait_queue, | ||
158 | block->condition, | ||
159 | msecs_to_jiffies(SST_BLOCK_TIMEOUT))) { | ||
160 | /* event wake */ | ||
161 | dev_dbg(sst_drv_ctx->dev, "Event wake %x\n", | ||
162 | block->condition); | ||
163 | dev_dbg(sst_drv_ctx->dev, "message ret: %d\n", | ||
164 | block->ret_code); | ||
165 | retval = -block->ret_code; | ||
166 | } else { | ||
167 | block->on = false; | ||
168 | dev_err(sst_drv_ctx->dev, | ||
169 | "Wait timed-out condition:%#x, msg_id:%#x fw_state %#x\n", | ||
170 | block->condition, block->msg_id, sst_drv_ctx->sst_state); | ||
171 | sst_drv_ctx->sst_state = SST_RESET; | ||
172 | |||
173 | retval = -EBUSY; | ||
174 | } | ||
175 | return retval; | ||
176 | } | ||
177 | |||
178 | /* | ||
179 | * sst_create_ipc_msg - create a IPC message | ||
180 | * | ||
181 | * @arg: ipc message | ||
182 | * @large: large or short message | ||
183 | * | ||
184 | * this function allocates structures to send a large or short | ||
185 | * message to the firmware | ||
186 | */ | ||
187 | int sst_create_ipc_msg(struct ipc_post **arg, bool large) | ||
188 | { | ||
189 | struct ipc_post *msg; | ||
190 | |||
191 | msg = kzalloc(sizeof(struct ipc_post), GFP_ATOMIC); | ||
192 | if (!msg) | ||
193 | return -ENOMEM; | ||
194 | if (large) { | ||
195 | msg->mailbox_data = kzalloc(SST_MAILBOX_SIZE, GFP_ATOMIC); | ||
196 | if (!msg->mailbox_data) { | ||
197 | kfree(msg); | ||
198 | return -ENOMEM; | ||
199 | } | ||
200 | } else { | ||
201 | msg->mailbox_data = NULL; | ||
202 | } | ||
203 | msg->is_large = large; | ||
204 | *arg = msg; | ||
205 | return 0; | ||
206 | } | ||
207 | |||
208 | /* | ||
209 | * sst_create_block_and_ipc_msg - Creates IPC message and sst block | ||
210 | * @arg: passed to sst_create_ipc_message API | ||
211 | * @large: large or short message | ||
212 | * @sst_drv_ctx: sst driver context | ||
213 | * @block: return block allocated | ||
214 | * @msg_id: IPC | ||
215 | * @drv_id: stream id or private id | ||
216 | */ | ||
217 | int sst_create_block_and_ipc_msg(struct ipc_post **arg, bool large, | ||
218 | struct intel_sst_drv *sst_drv_ctx, struct sst_block **block, | ||
219 | u32 msg_id, u32 drv_id) | ||
220 | { | ||
221 | int retval = 0; | ||
222 | |||
223 | retval = sst_create_ipc_msg(arg, large); | ||
224 | if (retval) | ||
225 | return retval; | ||
226 | *block = sst_create_block(sst_drv_ctx, msg_id, drv_id); | ||
227 | if (*block == NULL) { | ||
228 | kfree(*arg); | ||
229 | return -ENOMEM; | ||
230 | } | ||
231 | return retval; | ||
232 | } | ||
233 | |||
234 | /* | ||
235 | * sst_clean_stream - clean the stream context | ||
236 | * | ||
237 | * @stream: stream structure | ||
238 | * | ||
239 | * this function resets the stream contexts | ||
240 | * should be called in free | ||
241 | */ | ||
242 | void sst_clean_stream(struct stream_info *stream) | ||
243 | { | ||
244 | stream->status = STREAM_UN_INIT; | ||
245 | stream->prev = STREAM_UN_INIT; | ||
246 | mutex_lock(&stream->lock); | ||
247 | stream->cumm_bytes = 0; | ||
248 | mutex_unlock(&stream->lock); | ||
249 | } | ||
250 | |||
251 | int sst_prepare_and_post_msg(struct intel_sst_drv *sst, | ||
252 | int task_id, int ipc_msg, int cmd_id, int pipe_id, | ||
253 | size_t mbox_data_len, const void *mbox_data, void **data, | ||
254 | bool large, bool fill_dsp, bool sync, bool response) | ||
255 | { | ||
256 | struct ipc_post *msg = NULL; | ||
257 | struct ipc_dsp_hdr dsp_hdr; | ||
258 | struct sst_block *block; | ||
259 | int ret = 0, pvt_id; | ||
260 | |||
261 | pvt_id = sst_assign_pvt_id(sst); | ||
262 | if (pvt_id < 0) | ||
263 | return pvt_id; | ||
264 | |||
265 | if (response) | ||
266 | ret = sst_create_block_and_ipc_msg( | ||
267 | &msg, large, sst, &block, ipc_msg, pvt_id); | ||
268 | else | ||
269 | ret = sst_create_ipc_msg(&msg, large); | ||
270 | |||
271 | if (ret < 0) { | ||
272 | test_and_clear_bit(pvt_id, &sst->pvt_id); | ||
273 | return -ENOMEM; | ||
274 | } | ||
275 | |||
276 | dev_dbg(sst->dev, "pvt_id = %d, pipe id = %d, task = %d ipc_msg: %d\n", | ||
277 | pvt_id, pipe_id, task_id, ipc_msg); | ||
278 | sst_fill_header_mrfld(&msg->mrfld_header, ipc_msg, | ||
279 | task_id, large, pvt_id); | ||
280 | msg->mrfld_header.p.header_low_payload = sizeof(dsp_hdr) + mbox_data_len; | ||
281 | msg->mrfld_header.p.header_high.part.res_rqd = !sync; | ||
282 | dev_dbg(sst->dev, "header:%x\n", | ||
283 | msg->mrfld_header.p.header_high.full); | ||
284 | dev_dbg(sst->dev, "response rqd: %x", | ||
285 | msg->mrfld_header.p.header_high.part.res_rqd); | ||
286 | dev_dbg(sst->dev, "msg->mrfld_header.p.header_low_payload:%d", | ||
287 | msg->mrfld_header.p.header_low_payload); | ||
288 | if (fill_dsp) { | ||
289 | sst_fill_header_dsp(&dsp_hdr, cmd_id, pipe_id, mbox_data_len); | ||
290 | memcpy(msg->mailbox_data, &dsp_hdr, sizeof(dsp_hdr)); | ||
291 | if (mbox_data_len) { | ||
292 | memcpy(msg->mailbox_data + sizeof(dsp_hdr), | ||
293 | mbox_data, mbox_data_len); | ||
294 | } | ||
295 | } | ||
296 | |||
297 | if (sync) | ||
298 | sst->ops->post_message(sst, msg, true); | ||
299 | else | ||
300 | sst_add_to_dispatch_list_and_post(sst, msg); | ||
301 | |||
302 | if (response) { | ||
303 | ret = sst_wait_timeout(sst, block); | ||
304 | if (ret < 0) { | ||
305 | goto out; | ||
306 | } else if(block->data) { | ||
307 | if (!data) | ||
308 | goto out; | ||
309 | *data = kzalloc(block->size, GFP_KERNEL); | ||
310 | if (!(*data)) { | ||
311 | ret = -ENOMEM; | ||
312 | goto out; | ||
313 | } else | ||
314 | memcpy(data, (void *) block->data, block->size); | ||
315 | } | ||
316 | } | ||
317 | out: | ||
318 | if (response) | ||
319 | sst_free_block(sst, block); | ||
320 | test_and_clear_bit(pvt_id, &sst->pvt_id); | ||
321 | return ret; | ||
322 | } | ||
323 | |||
324 | int sst_pm_runtime_put(struct intel_sst_drv *sst_drv) | ||
325 | { | ||
326 | int ret; | ||
327 | |||
328 | pm_runtime_mark_last_busy(sst_drv->dev); | ||
329 | ret = pm_runtime_put_autosuspend(sst_drv->dev); | ||
330 | if (ret < 0) | ||
331 | return ret; | ||
332 | return 0; | ||
333 | } | ||
334 | |||
335 | void sst_fill_header_mrfld(union ipc_header_mrfld *header, | ||
336 | int msg, int task_id, int large, int drv_id) | ||
337 | { | ||
338 | header->full = 0; | ||
339 | header->p.header_high.part.msg_id = msg; | ||
340 | header->p.header_high.part.task_id = task_id; | ||
341 | header->p.header_high.part.large = large; | ||
342 | header->p.header_high.part.drv_id = drv_id; | ||
343 | header->p.header_high.part.done = 0; | ||
344 | header->p.header_high.part.busy = 1; | ||
345 | header->p.header_high.part.res_rqd = 1; | ||
346 | } | ||
347 | |||
348 | void sst_fill_header_dsp(struct ipc_dsp_hdr *dsp, int msg, | ||
349 | int pipe_id, int len) | ||
350 | { | ||
351 | dsp->cmd_id = msg; | ||
352 | dsp->mod_index_id = 0xff; | ||
353 | dsp->pipe_id = pipe_id; | ||
354 | dsp->length = len; | ||
355 | dsp->mod_id = 0; | ||
356 | } | ||
357 | |||
358 | #define SST_MAX_BLOCKS 15 | ||
359 | /* | ||
360 | * sst_assign_pvt_id - assign a pvt id for stream | ||
361 | * | ||
362 | * @sst_drv_ctx : driver context | ||
363 | * | ||
364 | * this function assigns a private id for calls that dont have stream | ||
365 | * context yet, should be called with lock held | ||
366 | * uses bits for the id, and finds first free bits and assigns that | ||
367 | */ | ||
368 | int sst_assign_pvt_id(struct intel_sst_drv *drv) | ||
369 | { | ||
370 | int local; | ||
371 | |||
372 | spin_lock(&drv->block_lock); | ||
373 | /* find first zero index from lsb */ | ||
374 | local = ffz(drv->pvt_id); | ||
375 | dev_dbg(drv->dev, "pvt_id assigned --> %d\n", local); | ||
376 | if (local >= SST_MAX_BLOCKS){ | ||
377 | spin_unlock(&drv->block_lock); | ||
378 | dev_err(drv->dev, "PVT _ID error: no free id blocks "); | ||
379 | return -EINVAL; | ||
380 | } | ||
381 | /* toggle the index */ | ||
382 | change_bit(local, &drv->pvt_id); | ||
383 | spin_unlock(&drv->block_lock); | ||
384 | return local; | ||
385 | } | ||
386 | |||
387 | void sst_init_stream(struct stream_info *stream, | ||
388 | int codec, int sst_id, int ops, u8 slot) | ||
389 | { | ||
390 | stream->status = STREAM_INIT; | ||
391 | stream->prev = STREAM_UN_INIT; | ||
392 | stream->ops = ops; | ||
393 | } | ||
394 | |||
395 | int sst_validate_strid( | ||
396 | struct intel_sst_drv *sst_drv_ctx, int str_id) | ||
397 | { | ||
398 | if (str_id <= 0 || str_id > sst_drv_ctx->info.max_streams) { | ||
399 | dev_err(sst_drv_ctx->dev, | ||
400 | "SST ERR: invalid stream id : %d, max %d\n", | ||
401 | str_id, sst_drv_ctx->info.max_streams); | ||
402 | return -EINVAL; | ||
403 | } | ||
404 | |||
405 | return 0; | ||
406 | } | ||
407 | |||
408 | struct stream_info *get_stream_info( | ||
409 | struct intel_sst_drv *sst_drv_ctx, int str_id) | ||
410 | { | ||
411 | if (sst_validate_strid(sst_drv_ctx, str_id)) | ||
412 | return NULL; | ||
413 | return &sst_drv_ctx->streams[str_id]; | ||
414 | } | ||
415 | |||
416 | int get_stream_id_mrfld(struct intel_sst_drv *sst_drv_ctx, | ||
417 | u32 pipe_id) | ||
418 | { | ||
419 | int i; | ||
420 | |||
421 | for (i = 1; i <= sst_drv_ctx->info.max_streams; i++) | ||
422 | if (pipe_id == sst_drv_ctx->streams[i].pipe_id) | ||
423 | return i; | ||
424 | |||
425 | dev_dbg(sst_drv_ctx->dev, "no such pipe_id(%u)", pipe_id); | ||
426 | return -1; | ||
427 | } | ||
428 | |||
429 | u32 relocate_imr_addr_mrfld(u32 base_addr) | ||
430 | { | ||
431 | /* Get the difference from 512MB aligned base addr */ | ||
432 | /* relocate the base */ | ||
433 | base_addr = MRFLD_FW_VIRTUAL_BASE + (base_addr % (512 * 1024 * 1024)); | ||
434 | return base_addr; | ||
435 | } | ||
436 | |||
437 | void sst_add_to_dispatch_list_and_post(struct intel_sst_drv *sst, | ||
438 | struct ipc_post *msg) | ||
439 | { | ||
440 | unsigned long irq_flags; | ||
441 | |||
442 | spin_lock_irqsave(&sst->ipc_spin_lock, irq_flags); | ||
443 | list_add_tail(&msg->node, &sst->ipc_dispatch_list); | ||
444 | spin_unlock_irqrestore(&sst->ipc_spin_lock, irq_flags); | ||
445 | sst->ops->post_message(sst, NULL, false); | ||
446 | } | ||