1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * virtio-snd: Virtio sound device 4 * Copyright (C) 2021 OpenSynergy GmbH 5 */ 6 #ifndef VIRTIO_SND_PCM_H 7 #define VIRTIO_SND_PCM_H 8 9 #include <linux/atomic.h> 10 #include <linux/virtio_config.h> 11 #include <sound/pcm.h> 12 13 struct virtio_pcm; 14 struct virtio_pcm_msg; 15 16 /** 17 * struct virtio_pcm_substream - VirtIO PCM substream. 18 * @snd: VirtIO sound device. 19 * @nid: Function group node identifier. 20 * @sid: Stream identifier. 21 * @direction: Stream data flow direction (SNDRV_PCM_STREAM_XXX). 22 * @features: Stream VirtIO feature bit map (1 << VIRTIO_SND_PCM_F_XXX). 23 * @substream: Kernel ALSA substream. 24 * @hw: Kernel ALSA substream hardware descriptor. 25 * @elapsed_period: Kernel work to handle the elapsed period state. 26 * @lock: Spinlock that protects fields shared by interrupt handlers and 27 * substream operators. 28 * @buffer_bytes: Current buffer size in bytes. 29 * @hw_ptr: Substream hardware pointer value in bytes [0 ... buffer_bytes). 30 * @xfer_enabled: Data transfer state (0 - off, 1 - on). 31 * @xfer_xrun: Data underflow/overflow state (0 - no xrun, 1 - xrun). 32 * @stopped: True if the substream is stopped and must be released on the device 33 * side. 34 * @msgs: Allocated I/O messages. 35 * @nmsgs: Number of allocated I/O messages. 36 * @msg_last_enqueued: Index of the last I/O message added to the virtqueue. 37 * @msg_count: Number of pending I/O messages in the virtqueue. 38 * @msg_empty: Notify when msg_count is zero. 39 */ 40 struct virtio_pcm_substream { 41 struct virtio_snd *snd; 42 u32 nid; 43 u32 sid; 44 u32 direction; 45 u32 features; 46 struct snd_pcm_substream *substream; 47 struct snd_pcm_hardware hw; 48 struct work_struct elapsed_period; 49 spinlock_t lock; 50 size_t buffer_bytes; 51 size_t hw_ptr; 52 bool xfer_enabled; 53 bool xfer_xrun; 54 bool stopped; 55 struct virtio_pcm_msg **msgs; 56 unsigned int nmsgs; 57 int msg_last_enqueued; 58 unsigned int msg_count; 59 wait_queue_head_t msg_empty; 60 }; 61 62 /** 63 * struct virtio_pcm_stream - VirtIO PCM stream. 64 * @substreams: VirtIO substreams belonging to the stream. 65 * @nsubstreams: Number of substreams. 66 */ 67 struct virtio_pcm_stream { 68 struct virtio_pcm_substream **substreams; 69 u32 nsubstreams; 70 }; 71 72 /** 73 * struct virtio_pcm - VirtIO PCM device. 74 * @list: VirtIO PCM list entry. 75 * @nid: Function group node identifier. 76 * @pcm: Kernel PCM device. 77 * @streams: VirtIO PCM streams (playback and capture). 78 */ 79 struct virtio_pcm { 80 struct list_head list; 81 u32 nid; 82 struct snd_pcm *pcm; 83 struct virtio_pcm_stream streams[SNDRV_PCM_STREAM_LAST + 1]; 84 }; 85 86 extern const struct snd_pcm_ops virtsnd_pcm_ops; 87 88 int virtsnd_pcm_validate(struct virtio_device *vdev); 89 90 int virtsnd_pcm_parse_cfg(struct virtio_snd *snd); 91 92 int virtsnd_pcm_build_devs(struct virtio_snd *snd); 93 94 void virtsnd_pcm_event(struct virtio_snd *snd, struct virtio_snd_event *event); 95 96 void virtsnd_pcm_tx_notify_cb(struct virtqueue *vqueue); 97 98 void virtsnd_pcm_rx_notify_cb(struct virtqueue *vqueue); 99 100 struct virtio_pcm *virtsnd_pcm_find(struct virtio_snd *snd, u32 nid); 101 102 struct virtio_pcm *virtsnd_pcm_find_or_create(struct virtio_snd *snd, u32 nid); 103 104 struct virtio_snd_msg * 105 virtsnd_pcm_ctl_msg_alloc(struct virtio_pcm_substream *vss, 106 unsigned int command, gfp_t gfp); 107 108 int virtsnd_pcm_msg_alloc(struct virtio_pcm_substream *vss, 109 unsigned int periods, unsigned int period_bytes); 110 111 void virtsnd_pcm_msg_free(struct virtio_pcm_substream *vss); 112 113 int virtsnd_pcm_msg_send(struct virtio_pcm_substream *vss); 114 115 unsigned int virtsnd_pcm_msg_pending_num(struct virtio_pcm_substream *vss); 116 117 #endif /* VIRTIO_SND_PCM_H */ 118