route.c 14.0 KB
Newer Older
L
Linus Torvalds 已提交
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
/*
 *  Attenuated route Plug-In
 *  Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
 *
 *
 *   This library is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Library General Public License as
 *   published by the Free Software Foundation; either version 2 of
 *   the License, or (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU Library General Public License for more details.
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this library; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

#include <sound/driver.h>
#include <linux/slab.h>
#include <linux/time.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include "pcm_plugin.h"

/* The best possible hack to support missing optimization in gcc 2.7.2.3 */
#if ROUTE_PLUGIN_RESOLUTION & (ROUTE_PLUGIN_RESOLUTION - 1) != 0
#define div(a) a /= ROUTE_PLUGIN_RESOLUTION
#elif ROUTE_PLUGIN_RESOLUTION == 16
#define div(a) a >>= 4
#else
#error "Add some code here"
#endif

38
struct ttable_dst;
L
Linus Torvalds 已提交
39

40 41 42 43
typedef void (*route_channel_f)(struct snd_pcm_plugin *plugin,
				const struct snd_pcm_plugin_channel *src_channels,
				struct snd_pcm_plugin_channel *dst_channel,
				struct ttable_dst *ttable, snd_pcm_uframes_t frames);
L
Linus Torvalds 已提交
44

45
struct ttable_src {
L
Linus Torvalds 已提交
46 47
	int channel;
	int as_int;
48
};
L
Linus Torvalds 已提交
49 50 51 52

struct ttable_dst {
	int att;	/* Attenuated */
	unsigned int nsrcs;
53
	struct ttable_src *srcs;
L
Linus Torvalds 已提交
54 55 56
	route_channel_f func;
};

57
struct route_priv {
L
Linus Torvalds 已提交
58 59 60 61
	enum {R_UINT32=0, R_UINT64=1} sum_type;
	int get, put;
	int conv;
	int src_sample_size;
62
	struct ttable_dst ttable[0];
L
Linus Torvalds 已提交
63 64
};

65
union sum {
L
Linus Torvalds 已提交
66 67
	u_int32_t as_uint32;
	u_int64_t as_uint64;
68
};
L
Linus Torvalds 已提交
69 70


71 72 73 74 75
static void route_to_channel_from_zero(struct snd_pcm_plugin *plugin,
				       const struct snd_pcm_plugin_channel *src_channels,
				       struct snd_pcm_plugin_channel *dst_channel,
				       struct ttable_dst *ttable,
				       snd_pcm_uframes_t frames)
L
Linus Torvalds 已提交
76 77 78 79 80 81
{
	if (dst_channel->wanted)
		snd_pcm_area_silence(&dst_channel->area, 0, frames, plugin->dst_format.format);
	dst_channel->enabled = 0;
}

82 83 84 85 86
static void route_to_channel_from_one(struct snd_pcm_plugin *plugin,
				      const struct snd_pcm_plugin_channel *src_channels,
				      struct snd_pcm_plugin_channel *dst_channel,
				      struct ttable_dst *ttable,
				      snd_pcm_uframes_t frames)
L
Linus Torvalds 已提交
87 88 89 90
{
#define CONV_LABELS
#include "plugin_ops.h"
#undef CONV_LABELS
91
	struct route_priv *data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
92
	void *conv;
93
	const struct snd_pcm_plugin_channel *src_channel = NULL;
L
Linus Torvalds 已提交
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
	unsigned int srcidx;
	char *src, *dst;
	int src_step, dst_step;
	for (srcidx = 0; srcidx < ttable->nsrcs; ++srcidx) {
		src_channel = &src_channels[ttable->srcs[srcidx].channel];
		if (src_channel->area.addr != NULL)
			break;
	}
	if (srcidx == ttable->nsrcs) {
		route_to_channel_from_zero(plugin, src_channels, dst_channel, ttable, frames);
		return;
	}

	dst_channel->enabled = 1;
	conv = conv_labels[data->conv];
	src = src_channel->area.addr + src_channel->area.first / 8;
	src_step = src_channel->area.step / 8;
	dst = dst_channel->area.addr + dst_channel->area.first / 8;
	dst_step = dst_channel->area.step / 8;
	while (frames-- > 0) {
		goto *conv;
#define CONV_END after
#include "plugin_ops.h"
#undef CONV_END
	after:
		src += src_step;
		dst += dst_step;
	}
}

124 125 126 127
static void route_to_channel(struct snd_pcm_plugin *plugin,
			     const struct snd_pcm_plugin_channel *src_channels,
			     struct snd_pcm_plugin_channel *dst_channel,
			     struct ttable_dst *ttable, snd_pcm_uframes_t frames)
L
Linus Torvalds 已提交
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
{
#define GET_U_LABELS
#define PUT_U32_LABELS
#include "plugin_ops.h"
#undef GET_U_LABELS
#undef PUT_U32_LABELS
	static void *zero_labels[2] = { &&zero_int32, &&zero_int64 };
	/* sum_type att */
	static void *add_labels[2 * 2] = { &&add_int32_noatt, &&add_int32_att,
				    &&add_int64_noatt, &&add_int64_att,
	};
	/* sum_type att shift */
	static void *norm_labels[2 * 2 * 4] = { NULL,
					 &&norm_int32_8_noatt,
					 &&norm_int32_16_noatt,
					 &&norm_int32_24_noatt,
					 NULL,
					 &&norm_int32_8_att,
					 &&norm_int32_16_att,
					 &&norm_int32_24_att,
					 &&norm_int64_0_noatt,
					 &&norm_int64_8_noatt,
					 &&norm_int64_16_noatt,
					 &&norm_int64_24_noatt,
					 &&norm_int64_0_att,
					 &&norm_int64_8_att,
					 &&norm_int64_16_att,
					 &&norm_int64_24_att,
	};
157
	struct route_priv *data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
158 159 160 161 162 163
	void *zero, *get, *add, *norm, *put_u32;
	int nsrcs = ttable->nsrcs;
	char *dst;
	int dst_step;
	char *srcs[nsrcs];
	int src_steps[nsrcs];
164
	struct ttable_src src_tt[nsrcs];
L
Linus Torvalds 已提交
165 166 167
	u_int32_t sample = 0;
	int srcidx, srcidx1 = 0;
	for (srcidx = 0; srcidx < nsrcs; ++srcidx) {
168
		const struct snd_pcm_plugin_channel *src_channel = &src_channels[ttable->srcs[srcidx].channel];
L
Linus Torvalds 已提交
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
		if (!src_channel->enabled)
			continue;
		srcs[srcidx1] = src_channel->area.addr + src_channel->area.first / 8;
		src_steps[srcidx1] = src_channel->area.step / 8;
		src_tt[srcidx1] = ttable->srcs[srcidx];
		srcidx1++;
	}
	nsrcs = srcidx1;
	if (nsrcs == 0) {
		route_to_channel_from_zero(plugin, src_channels, dst_channel, ttable, frames);
		return;
	} else if (nsrcs == 1 && src_tt[0].as_int == ROUTE_PLUGIN_RESOLUTION) {
		route_to_channel_from_one(plugin, src_channels, dst_channel, ttable, frames);
		return;
	}

	dst_channel->enabled = 1;
	zero = zero_labels[data->sum_type];
	get = get_u_labels[data->get];
	add = add_labels[data->sum_type * 2 + ttable->att];
	norm = norm_labels[data->sum_type * 8 + ttable->att * 4 + 4 - data->src_sample_size];
	put_u32 = put_u32_labels[data->put];
	dst = dst_channel->area.addr + dst_channel->area.first / 8;
	dst_step = dst_channel->area.step / 8;

	while (frames-- > 0) {
195 196
		struct ttable_src *ttp = src_tt;
		union sum sum;
L
Linus Torvalds 已提交
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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

		/* Zero sum */
		goto *zero;
	zero_int32:
		sum.as_uint32 = 0;
		goto zero_end;
	zero_int64: 
		sum.as_uint64 = 0;
		goto zero_end;
	zero_end:
		for (srcidx = 0; srcidx < nsrcs; ++srcidx) {
			char *src = srcs[srcidx];
			
			/* Get sample */
			goto *get;
#define GET_U_END after_get
#include "plugin_ops.h"
#undef GET_U_END
		after_get:

			/* Sum */
			goto *add;
		add_int32_att:
			sum.as_uint32 += sample * ttp->as_int;
			goto after_sum;
		add_int32_noatt:
			if (ttp->as_int)
				sum.as_uint32 += sample;
			goto after_sum;
		add_int64_att:
			sum.as_uint64 += (u_int64_t) sample * ttp->as_int;
			goto after_sum;
		add_int64_noatt:
			if (ttp->as_int)
				sum.as_uint64 += sample;
			goto after_sum;
		after_sum:
			srcs[srcidx] += src_steps[srcidx];
			ttp++;
		}
		
		/* Normalization */
		goto *norm;
	norm_int32_8_att:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_8_att:
		sum.as_uint64 <<= 8;
	norm_int64_0_att:
		div(sum.as_uint64);
		goto norm_int;

	norm_int32_16_att:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_16_att:
		sum.as_uint64 <<= 16;
		div(sum.as_uint64);
		goto norm_int;

	norm_int32_24_att:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_24_att:
		sum.as_uint64 <<= 24;
		div(sum.as_uint64);
		goto norm_int;

	norm_int32_8_noatt:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_8_noatt:
		sum.as_uint64 <<= 8;
		goto norm_int;

	norm_int32_16_noatt:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_16_noatt:
		sum.as_uint64 <<= 16;
		goto norm_int;

	norm_int32_24_noatt:
		sum.as_uint64 = sum.as_uint32;
	norm_int64_24_noatt:
		sum.as_uint64 <<= 24;
		goto norm_int;

	norm_int64_0_noatt:
	norm_int:
		if (sum.as_uint64 > (u_int32_t)0xffffffff)
			sample = (u_int32_t)0xffffffff;
		else
			sample = sum.as_uint64;
		goto after_norm;

	after_norm:
		
		/* Put sample */
		goto *put_u32;
#define PUT_U32_END after_put_u32
#include "plugin_ops.h"
#undef PUT_U32_END
	after_put_u32:
		
		dst += dst_step;
	}
}

301
static int route_src_channels_mask(struct snd_pcm_plugin *plugin,
302 303
				   unsigned long *dst_vmask,
				   unsigned long **src_vmask)
L
Linus Torvalds 已提交
304
{
305
	struct route_priv *data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
306 307
	int schannels = plugin->src_format.channels;
	int dchannels = plugin->dst_format.channels;
308
	unsigned long *vmask = plugin->src_vmask;
L
Linus Torvalds 已提交
309
	int channel;
310
	struct ttable_dst *dp = data->ttable;
311
	bitmap_zero(vmask, schannels);
L
Linus Torvalds 已提交
312 313
	for (channel = 0; channel < dchannels; channel++, dp++) {
		unsigned int src;
314
		struct ttable_src *sp;
315
		if (!test_bit(channel, dst_vmask))
L
Linus Torvalds 已提交
316 317 318
			continue;
		sp = dp->srcs;
		for (src = 0; src < dp->nsrcs; src++, sp++)
319
			set_bit(sp->channel, vmask);
L
Linus Torvalds 已提交
320 321 322 323 324
	}
	*src_vmask = vmask;
	return 0;
}

325
static int route_dst_channels_mask(struct snd_pcm_plugin *plugin,
326 327
				   unsigned long *src_vmask,
				   unsigned long **dst_vmask)
L
Linus Torvalds 已提交
328
{
329
	struct route_priv *data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
330
	int dchannels = plugin->dst_format.channels;
331
	unsigned long *vmask = plugin->dst_vmask;
L
Linus Torvalds 已提交
332
	int channel;
333
	struct ttable_dst *dp = data->ttable;
334
	bitmap_zero(vmask, dchannels);
L
Linus Torvalds 已提交
335 336
	for (channel = 0; channel < dchannels; channel++, dp++) {
		unsigned int src;
337
		struct ttable_src *sp;
L
Linus Torvalds 已提交
338 339
		sp = dp->srcs;
		for (src = 0; src < dp->nsrcs; src++, sp++) {
340 341
			if (test_bit(sp->channel, src_vmask)) {
				set_bit(channel, vmask);
L
Linus Torvalds 已提交
342 343 344 345 346 347 348 349
				break;
			}
		}
	}
	*dst_vmask = vmask;
	return 0;
}

350
static void route_free(struct snd_pcm_plugin *plugin)
L
Linus Torvalds 已提交
351
{
352
	struct route_priv *data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
353 354 355 356 357 358
	unsigned int dst_channel;
	for (dst_channel = 0; dst_channel < plugin->dst_format.channels; ++dst_channel) {
		kfree(data->ttable[dst_channel].srcs);
	}
}

359 360
static int route_load_ttable(struct snd_pcm_plugin *plugin, 
			     const int *src_ttable)
L
Linus Torvalds 已提交
361
{
362
	struct route_priv *data;
L
Linus Torvalds 已提交
363
	unsigned int src_channel, dst_channel;
364 365
	const int *sptr;
	struct ttable_dst *dptr;
L
Linus Torvalds 已提交
366 367
	if (src_ttable == NULL)
		return 0;
368
	data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
369 370 371 372
	dptr = data->ttable;
	sptr = src_ttable;
	plugin->private_free = route_free;
	for (dst_channel = 0; dst_channel < plugin->dst_format.channels; ++dst_channel) {
373
		int t = 0;
L
Linus Torvalds 已提交
374 375
		int att = 0;
		int nsrcs = 0;
376
		struct ttable_src srcs[plugin->src_format.channels];
L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
		for (src_channel = 0; src_channel < plugin->src_format.channels; ++src_channel) {
			snd_assert(*sptr >= 0 || *sptr <= FULL, return -ENXIO);
			if (*sptr != 0) {
				srcs[nsrcs].channel = src_channel;
				srcs[nsrcs].as_int = *sptr;
				if (*sptr != FULL)
					att = 1;
				t += *sptr;
				nsrcs++;
			}
			sptr++;
		}
		dptr->att = att;
		dptr->nsrcs = nsrcs;
		if (nsrcs == 0)
			dptr->func = route_to_channel_from_zero;
		else if (nsrcs == 1 && !att)
			dptr->func = route_to_channel_from_one;
		else
			dptr->func = route_to_channel;
		if (nsrcs > 0) {
                        int srcidx;
			dptr->srcs = kcalloc(nsrcs, sizeof(*srcs), GFP_KERNEL);
                        for(srcidx = 0; srcidx < nsrcs; srcidx++)
				dptr->srcs[srcidx] = srcs[srcidx];
		} else
			dptr->srcs = NULL;
		dptr++;
	}
	return 0;
}

409 410 411
static snd_pcm_sframes_t route_transfer(struct snd_pcm_plugin *plugin,
			      const struct snd_pcm_plugin_channel *src_channels,
			      struct snd_pcm_plugin_channel *dst_channels,
L
Linus Torvalds 已提交
412 413
			      snd_pcm_uframes_t frames)
{
414
	struct route_priv *data;
L
Linus Torvalds 已提交
415 416
	int src_nchannels, dst_nchannels;
	int dst_channel;
417 418
	struct ttable_dst *ttp;
	struct snd_pcm_plugin_channel *dvp;
L
Linus Torvalds 已提交
419 420 421 422

	snd_assert(plugin != NULL && src_channels != NULL && dst_channels != NULL, return -ENXIO);
	if (frames == 0)
		return 0;
423
	data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

	src_nchannels = plugin->src_format.channels;
	dst_nchannels = plugin->dst_format.channels;

#ifdef CONFIG_SND_DEBUG
	{
		int src_channel;
		for (src_channel = 0; src_channel < src_nchannels; ++src_channel) {
			snd_assert(src_channels[src_channel].area.first % 8 == 0 ||
				   src_channels[src_channel].area.step % 8 == 0,
				   return -ENXIO);
		}
		for (dst_channel = 0; dst_channel < dst_nchannels; ++dst_channel) {
			snd_assert(dst_channels[dst_channel].area.first % 8 == 0 ||
				   dst_channels[dst_channel].area.step % 8 == 0,
				   return -ENXIO);
		}
	}
#endif

	ttp = data->ttable;
	dvp = dst_channels;
	for (dst_channel = 0; dst_channel < dst_nchannels; ++dst_channel) {
		ttp->func(plugin, src_channels, dvp, ttp, frames);
		dvp++;
		ttp++;
	}
	return frames;
}

int getput_index(int format)
{
	int sign, width, endian;
	sign = !snd_pcm_format_signed(format);
	width = snd_pcm_format_width(format) / 8 - 1;
	if (width < 0 || width > 3) {
		snd_printk(KERN_ERR "snd-pcm-oss: invalid format %d\n", format);
		width = 0;
	}
#ifdef SNDRV_LITTLE_ENDIAN
	endian = snd_pcm_format_big_endian(format);
#else
	endian = snd_pcm_format_little_endian(format);
#endif
	if (endian < 0)
		endian = 0;
	return width * 4 + endian * 2 + sign;
}

473 474 475 476 477
int snd_pcm_plugin_build_route(struct snd_pcm_substream *plug,
			       struct snd_pcm_plugin_format *src_format,
			       struct snd_pcm_plugin_format *dst_format,
			       int *ttable,
			       struct snd_pcm_plugin **r_plugin)
L
Linus Torvalds 已提交
478
{
479 480
	struct route_priv *data;
	struct snd_pcm_plugin *plugin;
L
Linus Torvalds 已提交
481 482 483 484 485 486 487 488 489 490 491
	int err;

	snd_assert(r_plugin != NULL, return -ENXIO);
	*r_plugin = NULL;
	snd_assert(src_format->rate == dst_format->rate, return -ENXIO);
	snd_assert(snd_pcm_format_linear(src_format->format) != 0 &&
		   snd_pcm_format_linear(dst_format->format) != 0,
		   return -ENXIO);

	err = snd_pcm_plugin_build(plug, "attenuated route conversion",
				   src_format, dst_format,
492 493
				   sizeof(struct route_priv) +
				   sizeof(data->ttable[0]) * dst_format->channels,
L
Linus Torvalds 已提交
494 495 496 497
				   &plugin);
	if (err < 0)
		return err;

498
	data = (struct route_priv *)plugin->extra_data;
L
Linus Torvalds 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521

	data->get = getput_index(src_format->format);
	snd_assert(data->get >= 0 && data->get < 4*2*2, return -EINVAL);
	data->put = getput_index(dst_format->format);
	snd_assert(data->get >= 0 && data->get < 4*2*2, return -EINVAL);
	data->conv = conv_index(src_format->format, dst_format->format);

	if (snd_pcm_format_width(src_format->format) == 32)
		data->sum_type = R_UINT64;
	else
		data->sum_type = R_UINT32;
	data->src_sample_size = snd_pcm_format_width(src_format->format) / 8;

	if ((err = route_load_ttable(plugin, ttable)) < 0) {
		snd_pcm_plugin_free(plugin);
		return err;
	}
	plugin->transfer = route_transfer;
	plugin->src_channels_mask = route_src_channels_mask;
	plugin->dst_channels_mask = route_dst_channels_mask;
	*r_plugin = plugin;
	return 0;
}