blob: 4bbf12d5553fef59b0870654a4d77fd82ca5e368 [file] [log] [blame]
Takashi Iwaibe84bbc2012-08-15 16:06:43 +02001ALSA PCM channel-mapping API
2============================
3 Takashi Iwai <tiwai@suse.de>
4
5GENERAL
6-------
7
8The channel mapping API allows user to query the possible channel maps
9and the current channel map, also optionally to modify the channel map
10of the current stream.
11
12A channel map is an array of position for each PCM channel.
13Typically, a stereo PCM stream has a channel map of
14 { front_left, front_right }
15while a 4.0 surround PCM stream has a channel map of
16 { front left, front right, rear left, rear right }.
17
18The problem, so far, was that we had no standard channel map
19explicitly, and applications had no way to know which channel
20corresponds to which (speaker) position. Thus, applications applied
21wrong channels for 5.1 outputs, and you hear suddenly strange sound
22from rear. Or, some devices secretly assume that center/LFE is the
23third/fourth channels while others that C/LFE as 5th/6th channels.
24
25Also, some devices such as HDMI are configurable for different speaker
26positions even with the same number of total channels. However, there
27was no way to specify this because of lack of channel map
28specification. These are the main motivations for the new channel
29mapping API.
30
31
32DESIGN
33------
34
35Actually, "the channel mapping API" doesn't introduce anything new in
36the kernel/user-space ABI perspective. It uses only the existing
37control element features.
38
39As a ground design, each PCM substream may contain a control element
40providing the channel mapping information and configuration. This
41element is specified by:
42 iface = SNDRV_CTL_ELEM_IFACE_PCM
43 name = "Playback Channel Map" or "Capture Channel Map"
44 device = the same device number for the assigned PCM substream
45 index = the same index number for the assigned PCM substream
46
47Note the name is different depending on the PCM substream direction.
48
49Each control element provides at least the TLV read operation and the
50read operation. Optionally, the write operation can be provided to
51allow user to change the channel map dynamically.
52
53* TLV
54
55The TLV operation gives the list of available channel
56maps. A list item of a channel map is usually a TLV of
57 type data-bytes ch0 ch1 ch2...
58where type is the TLV type value, the second argument is the total
59bytes (not the numbers) of channel values, and the rest are the
60position value for each channel.
61
62As a TLV type, either SNDRV_CTL_TLVT_CHMAP_FIXED,
63SNDRV_CTL_TLV_CHMAP_VAR or SNDRV_CTL_TLVT_CHMAP_PAIRED can be used.
64The _FIXED type is for a channel map with the fixed channel position
65while the latter two are for flexible channel positions. _VAR type is
66for a channel map where all channels are freely swappable and _PAIRED
67type is where pair-wise channels are swappable. For example, when you
68have {FL/FR/RL/RR} channel map, _PAIRED type would allow you to swap
69only {RL/RR/FL/FR} while _VAR type would allow even swapping FL and
70RR.
71
72These new TLV types are defined in sound/tlv.h.
73
74The available channel position values are defined in sound/asound.h,
75here is a cut:
76
77/* channel positions */
78enum {
Takashi Iwai080108c2012-08-21 14:47:18 +020079 /* this follows the alsa-lib mixer channel value + 1 */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020080 SNDRV_CHMAP_UNKNOWN = 0,
81 SNDRV_CHMAP_FL, /* front left */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020082 SNDRV_CHMAP_FR, /* front right */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020083 SNDRV_CHMAP_RL, /* rear left */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020084 SNDRV_CHMAP_RR, /* rear right */
Takashi Iwai080108c2012-08-21 14:47:18 +020085 SNDRV_CHMAP_FC, /* front center */
86 SNDRV_CHMAP_LFE, /* LFE */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020087 SNDRV_CHMAP_SL, /* side left */
88 SNDRV_CHMAP_SR, /* side right */
Takashi Iwai080108c2012-08-21 14:47:18 +020089 SNDRV_CHMAP_RC, /* rear center */
90 /* new definitions */
91 SNDRV_CHMAP_FLC, /* front left center */
92 SNDRV_CHMAP_FRC, /* front right center */
93 SNDRV_CHMAP_RLC, /* rear left center */
94 SNDRV_CHMAP_RRC, /* rear right center */
Takashi Iwaibe84bbc2012-08-15 16:06:43 +020095 SNDRV_CHMAP_FLW, /* front left wide */
96 SNDRV_CHMAP_FRW, /* front right wide */
97 SNDRV_CHMAP_FLH, /* front left high */
98 SNDRV_CHMAP_FCH, /* front center high */
99 SNDRV_CHMAP_FRH, /* front right high */
100 SNDRV_CHMAP_TC, /* top center */
101 SNDRV_CHMAP_NA, /* N/A, silent */
102 SNDRV_CHMAP_LAST = SNDRV_CHMAP_NA,
103};
104
105When a PCM stream can provide more than one channel map, you can
106provide multiple channel maps in a TLV container type. The TLV data
107to be returned will contain such as:
108 SNDRV_CTL_TLVT_CONTAINER 96
109 SNDRV_CTL_TLVT_CHMAP_FIXED 4 SNDRV_CHMAP_FC
110 SNDRV_CTL_TLVT_CHMAP_FIXED 8 SNDRV_CHMAP_FL SNDRV_CHMAP_FR
111 SNDRV_CTL_TLVT_CHMAP_FIXED 16 NDRV_CHMAP_FL SNDRV_CHMAP_FR \
112 SNDRV_CHMAP_RL SNDRV_CHMAP_RR
113
114The channel position is provided in LSB 16bits. The upper bits are
115used for bit flags.
116
117#define SNDRV_CHMAP_POSITION_MASK 0xffff
118#define SNDRV_CHMAP_PHASE_INVERSE (0x01 << 16)
119#define SNDRV_CHMAP_DRIVER_SPEC (0x02 << 16)
120
121SNDRV_CHMAP_PHASE_INVERSE indicates the channel is phase inverted,
122(thus summing left and right channels would result in almost silence).
123Some digital mic devices have this.
124
125When SNDRV_CHMAP_DRIVER_SPEC is set, all the channel position values
126don't follow the standard definition above but driver-specific.
127
128* READ OPERATION
129
130The control read operation is for providing the current channel map of
131the given stream. The control element returns an integer array
132containing the position of each channel.
133
134When this is performed before the number of the channel is specified
135(i.e. hw_params is set), it should return all channels set to
136UNKNOWN.
137
138* WRITE OPERATION
139
140The control write operation is optional, and only for devices that can
141change the channel configuration on the fly, such as HDMI. User needs
142to pass an integer value containing the valid channel positions for
143all channels of the assigned PCM substream.
144
145This operation is allowed only at PCM PREPARED state. When called in
146other states, it shall return an error.