[alsa-devel] TLV question - ranges not in volume order

Clemens Ladisch clemens at ladisch.de
Wed May 8 14:09:31 CEST 2013


David Henningsson wrote:
> I recently came across a strange ASoC volume control. In this case,
> the values are not in volume order, i e, the control is declared
> something like below.
>
> However alsamixer seems not to handle this "reordering" correctly. My
> question is if this is something that should be fixed in alsamixer (or
> possibly alsa-lib?), or does one need to write some kind of mapping
> table in the kernel, just to make something come in volume order to
> userspace?

Items in a DB_RANGE container must be ordered by their values *and* by
their dB values.  This implies that larger values must correspond with
larger dB values, whis is also required for all other mixer controls.

If the register values are unordered, the driver must reorder them.

> static const unsigned int tlv[] = {
>         TLV_DB_RANGE_HEAD(8),

This should be rewritten as:

static const DECLARE_TLV_DB_RANGE(tlv,
	0, 0, TLV_DB_SCALE_ITEM(-100, 0, 1),
	...
);


Regards,
Clemens


More information about the Alsa-devel mailing list