aboutsummaryrefslogtreecommitdiffstats
path: root/pcm.c
blob: 8fec3f0bdf1190937b34a07dad4f1144b0bd873a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// SPDX-License-Identifier: GPL-2.0
/*
 * AVIRT - ALSA Virtual Soundcard
 *
 * Copyright (c) 2010-2018 Fiberdyne Systems Pty Ltd
 *
 * pcm.c - AVIRT PCM interface
 */

#include "core.h"

#define D_LOGNAME "pcm"

#define D_INFOK(fmt, args...) DINFO(D_LOGNAME, fmt, ##args)
#define D_PRINTK(fmt, args...) DDEBUG(D_LOGNAME, fmt, ##args)
#define D_ERRORK(fmt, args...) DERROR(D_LOGNAME, fmt, ##args)

#define AUDIOPATH_PCM_CB(ap, cb, ops, substream, ...)                          \
	(((ap)->ops->cb) ? (ap)->ops->cb((substream), ##__VA_ARGS__) : 0)

#define DO_AUDIOPATH_PCM_ROUTE_CBS(ap, cb, ops, substream, ...)                \
	({                                                                     \
		int __err = 0, __endpoint = substream->stream;                 \
		struct snd_avirt_stream *__stream =                            \
			snd_avirt_stream_find_by_device(                       \
				substream->pcm->device);                       \
		if (!IS_ERR_VALUE(__stream) && __stream) {                     \
			struct snd_avirt_audiopath *__endpoint_ap;             \
			if (__stream->route) {                                 \
				__endpoint_ap =                                \
					__stream->route                        \
						->endpoint_ap[__endpoint];     \
				if ((__endpoint_ap)) {                         \
					__err = AUDIOPATH_PCM_CB(              \
						__endpoint_ap, cb, ops,        \
						(substream), ##__VA_ARGS__);   \
				}                                              \
			}                                                      \
		}                                                              \
		(__err);                                                       \
	})
/**
 * DO_AUDIOPATH_PCM_CBS - Call an Audio Path's ALSA PCM callbacks from AVIRT.
 * If the Audio Path has routing enabled, then we call the appropriate
 * from/to Audio Path's ALSA PCM callbacks
 */
#define DO_AUDIOPATH_PCM_CBS(ap, cb, substream, ...)                           \
	({                                                                     \
		int __err = 0;                                                 \
		if (substream->stream) {                                       \
			__err = AUDIOPATH_PCM_CB((ap), cb, pcm_capture_ops,    \
						 (substream), ##__VA_ARGS__);  \
			if (__err >= 0) {                                      \
				__err = DO_AUDIOPATH_PCM_ROUTE_CBS(            \
					(ap), cb, pcm_playback_ops,            \
					(substream), ##__VA_ARGS__);           \
			}                                                      \
		} else {                                                       \
			__err = AUDIOPATH_PCM_CB((ap), cb, pcm_playback_ops,   \
						 (substream), ##__VA_ARGS__);  \
			if (__err >= 0) {                                      \
				__err = DO_AUDIOPATH_PCM_ROUTE_CBS(            \
					(ap), cb, pcm_capture_ops,             \
					(substream), ##__VA_ARGS__);           \
			}                                                      \
		}                                                              \
		(__err);                                                       \
	})

#define PRIVATE_DATA(substream)                                                \
	((struct snd_avirt_private_data *)substream->private_data)

/*******************************************************************************
 * ALSA PCM Callbacks
 ******************************************************************************/
/**
 * pcm_open - Implements 'open' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 *
 * This is called when an ALSA PCM substream is opened. The substream device
 * is configured here.
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_open(struct snd_pcm_substream *substream)
{
	struct snd_avirt_private_data *avirt_private_data;
	struct snd_avirt_audiopath *audiopath;
	struct snd_avirt_stream *stream;
	struct snd_pcm_hardware *hw;
	unsigned int chans = 0;

	if (!snd_avirt_streams_configured()) {
		D_ERRORK("Cannot open PCM. Card is not configured");
		return -EPERM;
	}

	// Find the Audio Path mapped to this device
	stream = snd_avirt_stream_find_by_device(substream->pcm->device);
	if (IS_ERR_VALUE(stream) || !stream)
		return PTR_ERR(stream);
	audiopath = snd_avirt_audiopath_get(stream->map);
	CHK_NULL_V(audiopath, "Cannot find Audio Path uid: '%s'!", stream->map);

	// Set the private data's Audio Path
	avirt_private_data = substream->private_data;
	avirt_private_data->audiopath = audiopath;

	// Copy the hw params from the audiopath to the pcm
	hw = &substream->runtime->hw;
	memcpy(hw, audiopath->hw, sizeof(struct snd_pcm_hardware));

	// Setup remaining hw properties
	chans = stream->channels;
	if (chans == 0) {
		D_ERRORK("Channels cannot be 0");
		return -EINVAL;
	}
	hw->channels_min = chans;
	hw->channels_max = chans;

	// Do additional Audio Path 'open' callbacks
	return DO_AUDIOPATH_PCM_CBS(audiopath, open, substream);
}

/**
 * pcm_close - Implements 'close' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 *
 * This is called when a PCM substream is closed.
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_close(struct snd_pcm_substream *substream)
{
	// Do additional Audio Path 'close' callback
	return DO_AUDIOPATH_PCM_CBS(
		(struct snd_avirt_audiopath *)PRIVATE_DATA(substream)->audiopath,
		close, substream);
}

/**
 * pcm_close - Implements 'close' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 *
 * This is called when a PCM substream is closed.
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_trigger(struct snd_pcm_substream *substream, int cmd)
{
	// Do additional Audio Path 'trigger' callback
	return DO_AUDIOPATH_PCM_CBS(
		(struct snd_avirt_audiopath *)PRIVATE_DATA(substream)->audiopath,
		trigger, substream, cmd);
}

/**
 * pcm_close - Implements 'close' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 *
 * This is called when a PCM substream is closed.
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_prepare(struct snd_pcm_substream *substream)
{
	// Do additional Audio Path 'prepare' callback
	return DO_AUDIOPATH_PCM_CBS(
		(struct snd_avirt_audiopath *)PRIVATE_DATA(substream)->audiopath,
		prepare, substream);
}

/**
 * pcm_hw_params - Implements 'hw_params' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 * @hw_params: contains the hardware parameters for the PCM
 *
 * This is called when the hardware parameters are set, including buffer size,
 * the period size, the format, etc. The buffer allocation should be done here.
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_hw_params(struct snd_pcm_substream *substream,
			 struct snd_pcm_hw_params *hw_params)
{
	int retval;

	/* Check supported channels */
	if ((params_channels(hw_params) <
	     substream->runtime->hw.channels_min) ||
	    (params_channels(hw_params) >
	     substream->runtime->hw.channels_max)) {
		D_ERRORK("Requested number of channels: %d not supported",
			 params_channels(hw_params));
		return -EINVAL;
	}

	retval = snd_pcm_lib_alloc_vmalloc_buffer(
		substream, params_buffer_bytes(hw_params));
	if (retval < 0)
		D_ERRORK("pcm: buffer allocation failed: %d", retval);

	return retval;
}

/**
 * pcm_hw_free - Implements 'hw_free' callback for PCM middle layer
 * @substream: pointer to ALSA PCM substream
 *
 * Release the resources allocated via 'hw_params'.
 * This function is always called before the 'close' callback .
 *
 * Returns 0 on success or error code otherwise.
 */
static int pcm_hw_free(struct snd_pcm_substream *substream)
{
	int err;

	// Do additional Audio Path 'hw_free' callback
	err = DO_AUDIOPATH_PCM_CBS(
		(struct snd_avirt_audiopath *)PRIVATE_DATA(substream)->audiopath,
		hw_free, substream);
	if (err < 0)
		return err;

	return snd_pcm_lib_free_vmalloc_buffer(substream);
}

/**
 * Default PCM ops table. Selected PCM ops must pass through AVIRT before
 * calling back to their respective Audio Paths
 */
struct snd_pcm_ops pcm_ops_avirt = {
	.open = pcm_open,
	.close = pcm_close,
	.prepare = pcm_prepare,
	.trigger = pcm_trigger,
	.ioctl = snd_pcm_lib_ioctl,
	.hw_params = pcm_hw_params,
	.hw_free = pcm_hw_free,
	.page = snd_pcm_lib_get_vmalloc_page,
};