1
2
3
4
5
6
7
8
9
10
11
12
13
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16#include <linux/module.h>
17#include <linux/printk.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <sound/core.h>
21#include <sound/pcm.h>
22#include <sound/pcm_params.h>
23#include <linux/sched.h>
24#include <linux/kthread.h>
25#include <mostcore.h>
26
27#define DRIVER_NAME "sound"
28
29static struct list_head dev_list;
30static struct most_aim audio_aim;
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47struct channel {
48 struct snd_pcm_substream *substream;
49 struct snd_pcm_hardware pcm_hardware;
50 struct most_interface *iface;
51 struct most_channel_config *cfg;
52 struct snd_card *card;
53 struct list_head list;
54 int id;
55 unsigned int period_pos;
56 unsigned int buffer_pos;
57 bool is_stream_running;
58
59 struct task_struct *playback_task;
60 wait_queue_head_t playback_waitq;
61
62 void (*copy_fn)(void *alsa, void *most, unsigned int bytes);
63};
64
65#define MOST_PCM_INFO (SNDRV_PCM_INFO_MMAP | \
66 SNDRV_PCM_INFO_MMAP_VALID | \
67 SNDRV_PCM_INFO_BATCH | \
68 SNDRV_PCM_INFO_INTERLEAVED | \
69 SNDRV_PCM_INFO_BLOCK_TRANSFER)
70
71#define swap16(val) ( \
72 (((u16)(val) << 8) & (u16)0xFF00) | \
73 (((u16)(val) >> 8) & (u16)0x00FF))
74
75#define swap32(val) ( \
76 (((u32)(val) << 24) & (u32)0xFF000000) | \
77 (((u32)(val) << 8) & (u32)0x00FF0000) | \
78 (((u32)(val) >> 8) & (u32)0x0000FF00) | \
79 (((u32)(val) >> 24) & (u32)0x000000FF))
80
81static void swap_copy16(u16 *dest, const u16 *source, unsigned int bytes)
82{
83 unsigned int i = 0;
84
85 while (i < (bytes / 2)) {
86 dest[i] = swap16(source[i]);
87 i++;
88 }
89}
90
91static void swap_copy24(u8 *dest, const u8 *source, unsigned int bytes)
92{
93 unsigned int i = 0;
94
95 while (i < bytes - 2) {
96 dest[i] = source[i + 2];
97 dest[i + 1] = source[i + 1];
98 dest[i + 2] = source[i];
99 i += 3;
100 }
101}
102
103static void swap_copy32(u32 *dest, const u32 *source, unsigned int bytes)
104{
105 unsigned int i = 0;
106
107 while (i < bytes / 4) {
108 dest[i] = swap32(source[i]);
109 i++;
110 }
111}
112
113static void alsa_to_most_memcpy(void *alsa, void *most, unsigned int bytes)
114{
115 memcpy(most, alsa, bytes);
116}
117
118static void alsa_to_most_copy16(void *alsa, void *most, unsigned int bytes)
119{
120 swap_copy16(most, alsa, bytes);
121}
122
123static void alsa_to_most_copy24(void *alsa, void *most, unsigned int bytes)
124{
125 swap_copy24(most, alsa, bytes);
126}
127
128static void alsa_to_most_copy32(void *alsa, void *most, unsigned int bytes)
129{
130 swap_copy32(most, alsa, bytes);
131}
132
133static void most_to_alsa_memcpy(void *alsa, void *most, unsigned int bytes)
134{
135 memcpy(alsa, most, bytes);
136}
137
138static void most_to_alsa_copy16(void *alsa, void *most, unsigned int bytes)
139{
140 swap_copy16(alsa, most, bytes);
141}
142
143static void most_to_alsa_copy24(void *alsa, void *most, unsigned int bytes)
144{
145 swap_copy24(alsa, most, bytes);
146}
147
148static void most_to_alsa_copy32(void *alsa, void *most, unsigned int bytes)
149{
150 swap_copy32(alsa, most, bytes);
151}
152
153
154
155
156
157
158
159
160
161
162
163static struct channel *get_channel(struct most_interface *iface,
164 int channel_id)
165{
166 struct channel *channel, *tmp;
167
168 list_for_each_entry_safe(channel, tmp, &dev_list, list) {
169 if ((channel->iface == iface) && (channel->id == channel_id))
170 return channel;
171 }
172
173 return NULL;
174}
175
176
177
178
179
180
181
182
183static bool copy_data(struct channel *channel, struct mbo *mbo)
184{
185 struct snd_pcm_runtime *const runtime = channel->substream->runtime;
186 unsigned int const frame_bytes = channel->cfg->subbuffer_size;
187 unsigned int const buffer_size = runtime->buffer_size;
188 unsigned int frames;
189 unsigned int fr0;
190
191 if (channel->cfg->direction & MOST_CH_RX)
192 frames = mbo->processed_length / frame_bytes;
193 else
194 frames = mbo->buffer_length / frame_bytes;
195 fr0 = min(buffer_size - channel->buffer_pos, frames);
196
197 channel->copy_fn(runtime->dma_area + channel->buffer_pos * frame_bytes,
198 mbo->virt_address,
199 fr0 * frame_bytes);
200
201 if (frames > fr0) {
202
203 channel->copy_fn(runtime->dma_area,
204 mbo->virt_address + fr0 * frame_bytes,
205 (frames - fr0) * frame_bytes);
206 }
207
208 channel->buffer_pos += frames;
209 if (channel->buffer_pos >= buffer_size)
210 channel->buffer_pos -= buffer_size;
211 channel->period_pos += frames;
212 if (channel->period_pos >= runtime->period_size) {
213 channel->period_pos -= runtime->period_size;
214 return true;
215 }
216
217 return false;
218}
219
220
221
222
223
224
225
226
227
228
229
230static int playback_thread(void *data)
231{
232 struct channel *const channel = data;
233
234 while (!kthread_should_stop()) {
235 struct mbo *mbo = NULL;
236 bool period_elapsed = false;
237
238 wait_event_interruptible(
239 channel->playback_waitq,
240 kthread_should_stop() ||
241 (channel->is_stream_running &&
242 (mbo = most_get_mbo(channel->iface, channel->id,
243 &audio_aim))));
244 if (!mbo)
245 continue;
246
247 if (channel->is_stream_running)
248 period_elapsed = copy_data(channel, mbo);
249 else
250 memset(mbo->virt_address, 0, mbo->buffer_length);
251
252 most_submit_mbo(mbo);
253 if (period_elapsed)
254 snd_pcm_period_elapsed(channel->substream);
255 }
256
257 return 0;
258}
259
260
261
262
263
264
265
266
267
268
269static int pcm_open(struct snd_pcm_substream *substream)
270{
271 struct channel *channel = substream->private_data;
272 struct snd_pcm_runtime *runtime = substream->runtime;
273 struct most_channel_config *cfg = channel->cfg;
274
275 channel->substream = substream;
276
277 if (cfg->direction == MOST_CH_TX) {
278 channel->playback_task = kthread_run(playback_thread, channel,
279 "most_audio_playback");
280 if (IS_ERR(channel->playback_task)) {
281 pr_err("Couldn't start thread\n");
282 return PTR_ERR(channel->playback_task);
283 }
284 }
285
286 if (most_start_channel(channel->iface, channel->id, &audio_aim)) {
287 pr_err("most_start_channel() failed!\n");
288 if (cfg->direction == MOST_CH_TX)
289 kthread_stop(channel->playback_task);
290 return -EBUSY;
291 }
292
293 runtime->hw = channel->pcm_hardware;
294 return 0;
295}
296
297
298
299
300
301
302
303
304
305
306
307static int pcm_close(struct snd_pcm_substream *substream)
308{
309 struct channel *channel = substream->private_data;
310
311 if (channel->cfg->direction == MOST_CH_TX)
312 kthread_stop(channel->playback_task);
313 most_stop_channel(channel->iface, channel->id, &audio_aim);
314
315 return 0;
316}
317
318
319
320
321
322
323
324
325
326
327
328
329
330static int pcm_hw_params(struct snd_pcm_substream *substream,
331 struct snd_pcm_hw_params *hw_params)
332{
333 struct channel *channel = substream->private_data;
334
335 if ((params_channels(hw_params) > channel->pcm_hardware.channels_max) ||
336 (params_channels(hw_params) < channel->pcm_hardware.channels_min)) {
337 pr_err("Requested number of channels not supported.\n");
338 return -EINVAL;
339 }
340 return snd_pcm_lib_alloc_vmalloc_buffer(substream,
341 params_buffer_bytes(hw_params));
342}
343
344
345
346
347
348
349
350
351
352
353static int pcm_hw_free(struct snd_pcm_substream *substream)
354{
355 return snd_pcm_lib_free_vmalloc_buffer(substream);
356}
357
358
359
360
361
362
363
364
365
366
367static int pcm_prepare(struct snd_pcm_substream *substream)
368{
369 struct channel *channel = substream->private_data;
370 struct snd_pcm_runtime *runtime = substream->runtime;
371 struct most_channel_config *cfg = channel->cfg;
372 int width = snd_pcm_format_physical_width(runtime->format);
373
374 channel->copy_fn = NULL;
375
376 if (cfg->direction == MOST_CH_TX) {
377 if (snd_pcm_format_big_endian(runtime->format) || width == 8)
378 channel->copy_fn = alsa_to_most_memcpy;
379 else if (width == 16)
380 channel->copy_fn = alsa_to_most_copy16;
381 else if (width == 24)
382 channel->copy_fn = alsa_to_most_copy24;
383 else if (width == 32)
384 channel->copy_fn = alsa_to_most_copy32;
385 } else {
386 if (snd_pcm_format_big_endian(runtime->format) || width == 8)
387 channel->copy_fn = most_to_alsa_memcpy;
388 else if (width == 16)
389 channel->copy_fn = most_to_alsa_copy16;
390 else if (width == 24)
391 channel->copy_fn = most_to_alsa_copy24;
392 else if (width == 32)
393 channel->copy_fn = most_to_alsa_copy32;
394 }
395
396 if (!channel->copy_fn) {
397 pr_err("unsupported format\n");
398 return -EINVAL;
399 }
400
401 channel->period_pos = 0;
402 channel->buffer_pos = 0;
403
404 return 0;
405}
406
407
408
409
410
411
412
413
414
415
416
417static int pcm_trigger(struct snd_pcm_substream *substream, int cmd)
418{
419 struct channel *channel = substream->private_data;
420
421 switch (cmd) {
422 case SNDRV_PCM_TRIGGER_START:
423 channel->is_stream_running = true;
424 wake_up_interruptible(&channel->playback_waitq);
425 return 0;
426
427 case SNDRV_PCM_TRIGGER_STOP:
428 channel->is_stream_running = false;
429 return 0;
430
431 default:
432 pr_info("%s(), invalid\n", __func__);
433 return -EINVAL;
434 }
435 return 0;
436}
437
438
439
440
441
442
443
444
445
446static snd_pcm_uframes_t pcm_pointer(struct snd_pcm_substream *substream)
447{
448 struct channel *channel = substream->private_data;
449
450 return channel->buffer_pos;
451}
452
453
454
455
456static const struct snd_pcm_ops pcm_ops = {
457 .open = pcm_open,
458 .close = pcm_close,
459 .ioctl = snd_pcm_lib_ioctl,
460 .hw_params = pcm_hw_params,
461 .hw_free = pcm_hw_free,
462 .prepare = pcm_prepare,
463 .trigger = pcm_trigger,
464 .pointer = pcm_pointer,
465 .page = snd_pcm_lib_get_vmalloc_page,
466 .mmap = snd_pcm_lib_mmap_vmalloc,
467};
468
469static int split_arg_list(char *buf, char **card_name, char **pcm_format)
470{
471 *card_name = strsep(&buf, ".");
472 if (!*card_name)
473 return -EIO;
474 *pcm_format = strsep(&buf, ".\n");
475 if (!*pcm_format)
476 return -EIO;
477 return 0;
478}
479
480static int audio_set_hw_params(struct snd_pcm_hardware *pcm_hw,
481 char *pcm_format,
482 struct most_channel_config *cfg)
483{
484 pcm_hw->info = MOST_PCM_INFO;
485 pcm_hw->rates = SNDRV_PCM_RATE_48000;
486 pcm_hw->rate_min = 48000;
487 pcm_hw->rate_max = 48000;
488 pcm_hw->buffer_bytes_max = cfg->num_buffers * cfg->buffer_size;
489 pcm_hw->period_bytes_min = cfg->buffer_size;
490 pcm_hw->period_bytes_max = cfg->buffer_size;
491 pcm_hw->periods_min = 1;
492 pcm_hw->periods_max = cfg->num_buffers;
493
494 if (!strcmp(pcm_format, "1x8")) {
495 if (cfg->subbuffer_size != 1)
496 goto error;
497 pr_info("PCM format is 8-bit mono\n");
498 pcm_hw->channels_min = 1;
499 pcm_hw->channels_max = 1;
500 pcm_hw->formats = SNDRV_PCM_FMTBIT_S8;
501 } else if (!strcmp(pcm_format, "2x16")) {
502 if (cfg->subbuffer_size != 4)
503 goto error;
504 pr_info("PCM format is 16-bit stereo\n");
505 pcm_hw->channels_min = 2;
506 pcm_hw->channels_max = 2;
507 pcm_hw->formats = SNDRV_PCM_FMTBIT_S16_LE |
508 SNDRV_PCM_FMTBIT_S16_BE;
509 } else if (!strcmp(pcm_format, "2x24")) {
510 if (cfg->subbuffer_size != 6)
511 goto error;
512 pr_info("PCM format is 24-bit stereo\n");
513 pcm_hw->channels_min = 2;
514 pcm_hw->channels_max = 2;
515 pcm_hw->formats = SNDRV_PCM_FMTBIT_S24_3LE |
516 SNDRV_PCM_FMTBIT_S24_3BE;
517 } else if (!strcmp(pcm_format, "2x32")) {
518 if (cfg->subbuffer_size != 8)
519 goto error;
520 pr_info("PCM format is 32-bit stereo\n");
521 pcm_hw->channels_min = 2;
522 pcm_hw->channels_max = 2;
523 pcm_hw->formats = SNDRV_PCM_FMTBIT_S32_LE |
524 SNDRV_PCM_FMTBIT_S32_BE;
525 } else if (!strcmp(pcm_format, "6x16")) {
526 if (cfg->subbuffer_size != 12)
527 goto error;
528 pr_info("PCM format is 16-bit 5.1 multi channel\n");
529 pcm_hw->channels_min = 6;
530 pcm_hw->channels_max = 6;
531 pcm_hw->formats = SNDRV_PCM_FMTBIT_S16_LE |
532 SNDRV_PCM_FMTBIT_S16_BE;
533 } else {
534 pr_err("PCM format %s not supported\n", pcm_format);
535 return -EIO;
536 }
537 return 0;
538error:
539 pr_err("Audio resolution doesn't fit subbuffer size\n");
540 return -EINVAL;
541}
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556static int audio_probe_channel(struct most_interface *iface, int channel_id,
557 struct most_channel_config *cfg,
558 struct kobject *parent, char *arg_list)
559{
560 struct channel *channel;
561 struct snd_card *card;
562 struct snd_pcm *pcm;
563 int playback_count = 0;
564 int capture_count = 0;
565 int ret;
566 int direction;
567 char *card_name;
568 char *pcm_format;
569
570 if (!iface)
571 return -EINVAL;
572
573 if (cfg->data_type != MOST_CH_SYNC) {
574 pr_err("Incompatible channel type\n");
575 return -EINVAL;
576 }
577
578 if (get_channel(iface, channel_id)) {
579 pr_err("channel (%s:%d) is already linked\n",
580 iface->description, channel_id);
581 return -EINVAL;
582 }
583
584 if (cfg->direction == MOST_CH_TX) {
585 playback_count = 1;
586 direction = SNDRV_PCM_STREAM_PLAYBACK;
587 } else {
588 capture_count = 1;
589 direction = SNDRV_PCM_STREAM_CAPTURE;
590 }
591
592 ret = split_arg_list(arg_list, &card_name, &pcm_format);
593 if (ret < 0) {
594 pr_info("PCM format missing\n");
595 return ret;
596 }
597
598 ret = snd_card_new(NULL, -1, card_name, THIS_MODULE,
599 sizeof(*channel), &card);
600 if (ret < 0)
601 return ret;
602
603 channel = card->private_data;
604 channel->card = card;
605 channel->cfg = cfg;
606 channel->iface = iface;
607 channel->id = channel_id;
608 init_waitqueue_head(&channel->playback_waitq);
609
610 ret = audio_set_hw_params(&channel->pcm_hardware, pcm_format, cfg);
611 if (ret)
612 goto err_free_card;
613
614 snprintf(card->driver, sizeof(card->driver), "%s", DRIVER_NAME);
615 snprintf(card->shortname, sizeof(card->shortname), "Microchip MOST:%d",
616 card->number);
617 snprintf(card->longname, sizeof(card->longname), "%s at %s, ch %d",
618 card->shortname, iface->description, channel_id);
619
620 ret = snd_pcm_new(card, card_name, 0, playback_count,
621 capture_count, &pcm);
622 if (ret < 0)
623 goto err_free_card;
624
625 pcm->private_data = channel;
626
627 snd_pcm_set_ops(pcm, direction, &pcm_ops);
628
629 ret = snd_card_register(card);
630 if (ret < 0)
631 goto err_free_card;
632
633 list_add_tail(&channel->list, &dev_list);
634
635 return 0;
636
637err_free_card:
638 snd_card_free(card);
639 return ret;
640}
641
642
643
644
645
646
647
648
649
650
651static int audio_disconnect_channel(struct most_interface *iface,
652 int channel_id)
653{
654 struct channel *channel;
655
656 channel = get_channel(iface, channel_id);
657 if (!channel) {
658 pr_err("sound_disconnect_channel(), invalid channel %d\n",
659 channel_id);
660 return -EINVAL;
661 }
662
663 list_del(&channel->list);
664 snd_card_free(channel->card);
665
666 return 0;
667}
668
669
670
671
672
673
674
675
676
677
678static int audio_rx_completion(struct mbo *mbo)
679{
680 struct channel *channel = get_channel(mbo->ifp, mbo->hdm_channel_id);
681 bool period_elapsed = false;
682
683 if (!channel) {
684 pr_err("sound_rx_completion(), invalid channel %d\n",
685 mbo->hdm_channel_id);
686 return -EINVAL;
687 }
688
689 if (channel->is_stream_running)
690 period_elapsed = copy_data(channel, mbo);
691
692 most_put_mbo(mbo);
693
694 if (period_elapsed)
695 snd_pcm_period_elapsed(channel->substream);
696
697 return 0;
698}
699
700
701
702
703
704
705
706
707
708
709
710
711static int audio_tx_completion(struct most_interface *iface, int channel_id)
712{
713 struct channel *channel = get_channel(iface, channel_id);
714
715 if (!channel) {
716 pr_err("sound_tx_completion(), invalid channel %d\n",
717 channel_id);
718 return -EINVAL;
719 }
720
721 wake_up_interruptible(&channel->playback_waitq);
722
723 return 0;
724}
725
726
727
728
729static struct most_aim audio_aim = {
730 .name = DRIVER_NAME,
731 .probe_channel = audio_probe_channel,
732 .disconnect_channel = audio_disconnect_channel,
733 .rx_completion = audio_rx_completion,
734 .tx_completion = audio_tx_completion,
735};
736
737static int __init audio_init(void)
738{
739 pr_info("init()\n");
740
741 INIT_LIST_HEAD(&dev_list);
742
743 return most_register_aim(&audio_aim);
744}
745
746static void __exit audio_exit(void)
747{
748 struct channel *channel, *tmp;
749
750 pr_info("exit()\n");
751
752 list_for_each_entry_safe(channel, tmp, &dev_list, list) {
753 list_del(&channel->list);
754 snd_card_free(channel->card);
755 }
756
757 most_deregister_aim(&audio_aim);
758}
759
760module_init(audio_init);
761module_exit(audio_exit);
762
763MODULE_LICENSE("GPL");
764MODULE_AUTHOR("Christian Gromm <christian.gromm@microchip.com>");
765MODULE_DESCRIPTION("Audio Application Interface Module for MostCore");
766