| 1 | // SPDX-License-Identifier: GPL-2.0-only
|
|---|
| 2 | /*
|
|---|
| 3 | * HDMI Channel map support helpers
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | #include <linux/module.h>
|
|---|
| 7 | #include <sound/control.h>
|
|---|
| 8 | #include <sound/tlv.h>
|
|---|
| 9 | #include <sound/hda_chmap.h>
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | * CEA speaker placement:
|
|---|
| 13 | *
|
|---|
| 14 | * FLH FCH FRH
|
|---|
| 15 | * FLW FL FLC FC FRC FR FRW
|
|---|
| 16 | *
|
|---|
| 17 | * LFE
|
|---|
| 18 | * TC
|
|---|
| 19 | *
|
|---|
| 20 | * RL RLC RC RRC RR
|
|---|
| 21 | *
|
|---|
| 22 | * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
|
|---|
| 23 | * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
|
|---|
| 24 | */
|
|---|
| 25 | enum cea_speaker_placement {
|
|---|
| 26 | FL = (1 << 0), /* Front Left */
|
|---|
| 27 | FC = (1 << 1), /* Front Center */
|
|---|
| 28 | FR = (1 << 2), /* Front Right */
|
|---|
| 29 | FLC = (1 << 3), /* Front Left Center */
|
|---|
| 30 | FRC = (1 << 4), /* Front Right Center */
|
|---|
| 31 | RL = (1 << 5), /* Rear Left */
|
|---|
| 32 | RC = (1 << 6), /* Rear Center */
|
|---|
| 33 | RR = (1 << 7), /* Rear Right */
|
|---|
| 34 | RLC = (1 << 8), /* Rear Left Center */
|
|---|
| 35 | RRC = (1 << 9), /* Rear Right Center */
|
|---|
| 36 | LFE = (1 << 10), /* Low Frequency Effect */
|
|---|
| 37 | FLW = (1 << 11), /* Front Left Wide */
|
|---|
| 38 | FRW = (1 << 12), /* Front Right Wide */
|
|---|
| 39 | FLH = (1 << 13), /* Front Left High */
|
|---|
| 40 | FCH = (1 << 14), /* Front Center High */
|
|---|
| 41 | FRH = (1 << 15), /* Front Right High */
|
|---|
| 42 | TC = (1 << 16), /* Top Center */
|
|---|
| 43 | };
|
|---|
| 44 |
|
|---|
| 45 | static const char * const cea_speaker_allocation_names[] = {
|
|---|
| 46 | /* 0 */ "FL/FR",
|
|---|
| 47 | /* 1 */ "LFE",
|
|---|
| 48 | /* 2 */ "FC",
|
|---|
| 49 | /* 3 */ "RL/RR",
|
|---|
| 50 | /* 4 */ "RC",
|
|---|
| 51 | /* 5 */ "FLC/FRC",
|
|---|
| 52 | /* 6 */ "RLC/RRC",
|
|---|
| 53 | /* 7 */ "FLW/FRW",
|
|---|
| 54 | /* 8 */ "FLH/FRH",
|
|---|
| 55 | /* 9 */ "TC",
|
|---|
| 56 | /* 10 */ "FCH",
|
|---|
| 57 | };
|
|---|
| 58 |
|
|---|
| 59 | /*
|
|---|
| 60 | * ELD SA bits in the CEA Speaker Allocation data block
|
|---|
| 61 | */
|
|---|
| 62 | static const int eld_speaker_allocation_bits[] = {
|
|---|
| 63 | [0] = FL | FR,
|
|---|
| 64 | [1] = LFE,
|
|---|
| 65 | [2] = FC,
|
|---|
| 66 | [3] = RL | RR,
|
|---|
| 67 | [4] = RC,
|
|---|
| 68 | [5] = FLC | FRC,
|
|---|
| 69 | [6] = RLC | RRC,
|
|---|
| 70 | /* the following are not defined in ELD yet */
|
|---|
| 71 | [7] = FLW | FRW,
|
|---|
| 72 | [8] = FLH | FRH,
|
|---|
| 73 | [9] = TC,
|
|---|
| 74 | [10] = FCH,
|
|---|
| 75 | };
|
|---|
| 76 |
|
|---|
| 77 | /*
|
|---|
| 78 | * ALSA sequence is:
|
|---|
| 79 | *
|
|---|
| 80 | * surround40 surround41 surround50 surround51 surround71
|
|---|
| 81 | * ch0 front left = = = =
|
|---|
| 82 | * ch1 front right = = = =
|
|---|
| 83 | * ch2 rear left = = = =
|
|---|
| 84 | * ch3 rear right = = = =
|
|---|
| 85 | * ch4 LFE center center center
|
|---|
| 86 | * ch5 LFE LFE
|
|---|
| 87 | * ch6 side left
|
|---|
| 88 | * ch7 side right
|
|---|
| 89 | *
|
|---|
| 90 | * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
|
|---|
| 91 | */
|
|---|
| 92 | static int hdmi_channel_mapping[0x32][8] = {
|
|---|
| 93 | /* stereo */
|
|---|
| 94 | [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
|
|---|
| 95 | /* 2.1 */
|
|---|
| 96 | [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
|
|---|
| 97 | /* Dolby Surround */
|
|---|
| 98 | [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
|
|---|
| 99 | /* surround40 */
|
|---|
| 100 | [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
|
|---|
| 101 | /* 4ch */
|
|---|
| 102 | [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
|
|---|
| 103 | /* surround41 */
|
|---|
| 104 | [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
|
|---|
| 105 | /* surround50 */
|
|---|
| 106 | [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
|
|---|
| 107 | /* surround51 */
|
|---|
| 108 | [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
|
|---|
| 109 | /* 7.1 */
|
|---|
| 110 | [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
|
|---|
| 111 | };
|
|---|
| 112 |
|
|---|
| 113 | /*
|
|---|
| 114 | * This is an ordered list!
|
|---|
| 115 | *
|
|---|
| 116 | * The preceding ones have better chances to be selected by
|
|---|
| 117 | * hdmi_channel_allocation().
|
|---|
| 118 | */
|
|---|
| 119 | static struct hdac_cea_channel_speaker_allocation channel_allocations[] = {
|
|---|
| 120 | /* channel: 7 6 5 4 3 2 1 0 */
|
|---|
| 121 | { .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
|
|---|
| 122 | /* 2.1 */
|
|---|
| 123 | { .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
|
|---|
| 124 | /* Dolby Surround */
|
|---|
| 125 | { .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
|
|---|
| 126 | /* surround40 */
|
|---|
| 127 | { .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
|
|---|
| 128 | /* surround41 */
|
|---|
| 129 | { .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 130 | /* surround50 */
|
|---|
| 131 | { .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
|
|---|
| 132 | /* surround51 */
|
|---|
| 133 | { .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 134 | /* 6.1 */
|
|---|
| 135 | { .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 136 | /* surround71 */
|
|---|
| 137 | { .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 138 |
|
|---|
| 139 | { .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
|
|---|
| 140 | { .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
|
|---|
| 141 | { .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
|
|---|
| 142 | { .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
|
|---|
| 143 | { .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
|
|---|
| 144 | { .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
|
|---|
| 145 | { .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 146 | { .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
|
|---|
| 147 | { .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
|
|---|
| 148 | { .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 149 | { .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
|
|---|
| 150 | { .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
|
|---|
| 151 | { .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
|
|---|
| 152 | { .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
|
|---|
| 153 | { .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
|
|---|
| 154 | { .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
|
|---|
| 155 | { .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
|
|---|
| 156 | { .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
|
|---|
| 157 | { .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
|
|---|
| 158 | { .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
|
|---|
| 159 | { .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 160 | { .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
|
|---|
| 161 | { .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 162 | { .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
|
|---|
| 163 | { .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 164 | { .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
|
|---|
| 165 | { .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 166 | { .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
|
|---|
| 167 | { .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 168 | { .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
|
|---|
| 169 | { .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
|
|---|
| 170 | { .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
|
|---|
| 171 | { .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 172 | { .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
|
|---|
| 173 | { .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 174 | { .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
|
|---|
| 175 | { .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 176 | { .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
|
|---|
| 177 | { .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 178 | { .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
|
|---|
| 179 | { .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
|
|---|
| 180 | };
|
|---|
| 181 |
|
|---|
| 182 | static int hdmi_pin_set_slot_channel(struct hdac_device *codec,
|
|---|
| 183 | hda_nid_t pin_nid, int asp_slot, int channel)
|
|---|
| 184 | {
|
|---|
| 185 | return snd_hdac_codec_write(codec, pin_nid, 0,
|
|---|
| 186 | AC_VERB_SET_HDMI_CHAN_SLOT,
|
|---|
| 187 | (channel << 4) | asp_slot);
|
|---|
| 188 | }
|
|---|
| 189 |
|
|---|
| 190 | static int hdmi_pin_get_slot_channel(struct hdac_device *codec,
|
|---|
| 191 | hda_nid_t pin_nid, int asp_slot)
|
|---|
| 192 | {
|
|---|
| 193 | return (snd_hdac_codec_read(codec, pin_nid, 0,
|
|---|
| 194 | AC_VERB_GET_HDMI_CHAN_SLOT,
|
|---|
| 195 | asp_slot) & 0xf0) >> 4;
|
|---|
| 196 | }
|
|---|
| 197 |
|
|---|
| 198 | static int hdmi_get_channel_count(struct hdac_device *codec, hda_nid_t cvt_nid)
|
|---|
| 199 | {
|
|---|
| 200 | return 1 + snd_hdac_codec_read(codec, cvt_nid, 0,
|
|---|
| 201 | AC_VERB_GET_CVT_CHAN_COUNT, 0);
|
|---|
| 202 | }
|
|---|
| 203 |
|
|---|
| 204 | static void hdmi_set_channel_count(struct hdac_device *codec,
|
|---|
| 205 | hda_nid_t cvt_nid, int chs)
|
|---|
| 206 | {
|
|---|
| 207 | if (chs != hdmi_get_channel_count(codec, cvt_nid))
|
|---|
| 208 | snd_hdac_codec_write(codec, cvt_nid, 0,
|
|---|
| 209 | AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
|
|---|
| 210 | }
|
|---|
| 211 |
|
|---|
| 212 | /*
|
|---|
| 213 | * Channel mapping routines
|
|---|
| 214 | */
|
|---|
| 215 |
|
|---|
| 216 | /*
|
|---|
| 217 | * Compute derived values in channel_allocations[].
|
|---|
| 218 | */
|
|---|
| 219 | static void init_channel_allocations(void)
|
|---|
| 220 | {
|
|---|
| 221 | int i, j;
|
|---|
| 222 | struct hdac_cea_channel_speaker_allocation *p;
|
|---|
| 223 |
|
|---|
| 224 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
|
|---|
| 225 | p = channel_allocations + i;
|
|---|
| 226 | p->channels = 0;
|
|---|
| 227 | p->spk_mask = 0;
|
|---|
| 228 | for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
|
|---|
| 229 | if (p->speakers[j]) {
|
|---|
| 230 | p->channels++;
|
|---|
| 231 | p->spk_mask |= p->speakers[j];
|
|---|
| 232 | }
|
|---|
| 233 | }
|
|---|
| 234 | }
|
|---|
| 235 |
|
|---|
| 236 | static int get_channel_allocation_order(int ca)
|
|---|
| 237 | {
|
|---|
| 238 | int i;
|
|---|
| 239 |
|
|---|
| 240 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
|
|---|
| 241 | if (channel_allocations[i].ca_index == ca)
|
|---|
| 242 | break;
|
|---|
| 243 | }
|
|---|
| 244 | return i;
|
|---|
| 245 | }
|
|---|
| 246 |
|
|---|
| 247 | void snd_hdac_print_channel_allocation(int spk_alloc, char *buf, int buflen)
|
|---|
| 248 | {
|
|---|
| 249 | int i, j;
|
|---|
| 250 |
|
|---|
| 251 | for (i = 0, j = 0; i < ARRAY_SIZE(cea_speaker_allocation_names); i++) {
|
|---|
| 252 | if (spk_alloc & (1 << i))
|
|---|
| 253 | j += scnprintf(buf + j, buflen - j, " %s",
|
|---|
| 254 | cea_speaker_allocation_names[i]);
|
|---|
| 255 | }
|
|---|
| 256 | buf[j] = '\0'; /* necessary when j == 0 */
|
|---|
| 257 | }
|
|---|
| 258 | EXPORT_SYMBOL_GPL(snd_hdac_print_channel_allocation);
|
|---|
| 259 |
|
|---|
| 260 | /*
|
|---|
| 261 | * The transformation takes two steps:
|
|---|
| 262 | *
|
|---|
| 263 | * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
|
|---|
| 264 | * spk_mask => (channel_allocations[]) => ai->CA
|
|---|
| 265 | *
|
|---|
| 266 | * TODO: it could select the wrong CA from multiple candidates.
|
|---|
| 267 | */
|
|---|
| 268 | static int hdmi_channel_allocation_spk_alloc_blk(struct hdac_device *codec,
|
|---|
| 269 | int spk_alloc, int channels)
|
|---|
| 270 | {
|
|---|
| 271 | int i;
|
|---|
| 272 | int ca = 0;
|
|---|
| 273 | int spk_mask = 0;
|
|---|
| 274 | char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
|
|---|
| 275 |
|
|---|
| 276 | /*
|
|---|
| 277 | * CA defaults to 0 for basic stereo audio
|
|---|
| 278 | */
|
|---|
| 279 | if (channels <= 2)
|
|---|
| 280 | return 0;
|
|---|
| 281 |
|
|---|
| 282 | /*
|
|---|
| 283 | * expand ELD's speaker allocation mask
|
|---|
| 284 | *
|
|---|
| 285 | * ELD tells the speaker mask in a compact(paired) form,
|
|---|
| 286 | * expand ELD's notions to match the ones used by Audio InfoFrame.
|
|---|
| 287 | */
|
|---|
| 288 | for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
|
|---|
| 289 | if (spk_alloc & (1 << i))
|
|---|
| 290 | spk_mask |= eld_speaker_allocation_bits[i];
|
|---|
| 291 | }
|
|---|
| 292 |
|
|---|
| 293 | /* search for the first working match in the CA table */
|
|---|
| 294 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
|
|---|
| 295 | if (channels == channel_allocations[i].channels &&
|
|---|
| 296 | (spk_mask & channel_allocations[i].spk_mask) ==
|
|---|
| 297 | channel_allocations[i].spk_mask) {
|
|---|
| 298 | ca = channel_allocations[i].ca_index;
|
|---|
| 299 | break;
|
|---|
| 300 | }
|
|---|
| 301 | }
|
|---|
| 302 |
|
|---|
| 303 | if (!ca) {
|
|---|
| 304 | /*
|
|---|
| 305 | * if there was no match, select the regular ALSA channel
|
|---|
| 306 | * allocation with the matching number of channels
|
|---|
| 307 | */
|
|---|
| 308 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
|
|---|
| 309 | if (channels == channel_allocations[i].channels) {
|
|---|
| 310 | ca = channel_allocations[i].ca_index;
|
|---|
| 311 | break;
|
|---|
| 312 | }
|
|---|
| 313 | }
|
|---|
| 314 | }
|
|---|
| 315 |
|
|---|
| 316 | snd_hdac_print_channel_allocation(spk_alloc, buf, sizeof(buf));
|
|---|
| 317 | dev_dbg(&codec->dev, "HDMI: select CA 0x%x for %d-channel allocation: %s\n",
|
|---|
| 318 | ca, channels, buf);
|
|---|
| 319 |
|
|---|
| 320 | return ca;
|
|---|
| 321 | }
|
|---|
| 322 |
|
|---|
| 323 | static void hdmi_debug_channel_mapping(struct hdac_chmap *chmap,
|
|---|
| 324 | hda_nid_t pin_nid)
|
|---|
| 325 | {
|
|---|
| 326 | #ifdef CONFIG_SND_DEBUG_VERBOSE
|
|---|
| 327 | int i;
|
|---|
| 328 | int channel;
|
|---|
| 329 |
|
|---|
| 330 | for (i = 0; i < 8; i++) {
|
|---|
| 331 | channel = chmap->ops.pin_get_slot_channel(
|
|---|
| 332 | chmap->hdac, pin_nid, i);
|
|---|
| 333 | dev_dbg(&chmap->hdac->dev, "HDMI: ASP channel %d => slot %d\n",
|
|---|
| 334 | channel, i);
|
|---|
| 335 | }
|
|---|
| 336 | #endif
|
|---|
| 337 | }
|
|---|
| 338 |
|
|---|
| 339 | static void hdmi_std_setup_channel_mapping(struct hdac_chmap *chmap,
|
|---|
| 340 | hda_nid_t pin_nid,
|
|---|
| 341 | bool non_pcm,
|
|---|
| 342 | int ca)
|
|---|
| 343 | {
|
|---|
| 344 | struct hdac_cea_channel_speaker_allocation *ch_alloc;
|
|---|
| 345 | int i;
|
|---|
| 346 | int err;
|
|---|
| 347 | int order;
|
|---|
| 348 | int non_pcm_mapping[8];
|
|---|
| 349 |
|
|---|
| 350 | order = get_channel_allocation_order(ca);
|
|---|
| 351 | ch_alloc = &channel_allocations[order];
|
|---|
| 352 |
|
|---|
| 353 | if (hdmi_channel_mapping[ca][1] == 0) {
|
|---|
| 354 | int hdmi_slot = 0;
|
|---|
| 355 | /* fill actual channel mappings in ALSA channel (i) order */
|
|---|
| 356 | for (i = 0; i < ch_alloc->channels; i++) {
|
|---|
| 357 | #ifndef TARGET_OS2
|
|---|
| 358 | while (!WARN_ON(hdmi_slot >= 8) &&
|
|---|
| 359 | #else
|
|---|
| 360 | while (hdmi_slot >= 8 &&
|
|---|
| 361 | #endif
|
|---|
| 362 | !ch_alloc->speakers[7 - hdmi_slot])
|
|---|
| 363 | hdmi_slot++; /* skip zero slots */
|
|---|
| 364 |
|
|---|
| 365 | hdmi_channel_mapping[ca][i] = (i << 4) | hdmi_slot++;
|
|---|
| 366 | }
|
|---|
| 367 | /* fill the rest of the slots with ALSA channel 0xf */
|
|---|
| 368 | for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++)
|
|---|
| 369 | if (!ch_alloc->speakers[7 - hdmi_slot])
|
|---|
| 370 | hdmi_channel_mapping[ca][i++] = (0xf << 4) | hdmi_slot;
|
|---|
| 371 | }
|
|---|
| 372 |
|
|---|
| 373 | if (non_pcm) {
|
|---|
| 374 | for (i = 0; i < ch_alloc->channels; i++)
|
|---|
| 375 | non_pcm_mapping[i] = (i << 4) | i;
|
|---|
| 376 | for (; i < 8; i++)
|
|---|
| 377 | non_pcm_mapping[i] = (0xf << 4) | i;
|
|---|
| 378 | }
|
|---|
| 379 |
|
|---|
| 380 | for (i = 0; i < 8; i++) {
|
|---|
| 381 | int slotsetup = non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i];
|
|---|
| 382 | int hdmi_slot = slotsetup & 0x0f;
|
|---|
| 383 | int channel = (slotsetup & 0xf0) >> 4;
|
|---|
| 384 |
|
|---|
| 385 | err = chmap->ops.pin_set_slot_channel(chmap->hdac,
|
|---|
| 386 | pin_nid, hdmi_slot, channel);
|
|---|
| 387 | if (err) {
|
|---|
| 388 | dev_dbg(&chmap->hdac->dev, "HDMI: channel mapping failed\n");
|
|---|
| 389 | break;
|
|---|
| 390 | }
|
|---|
| 391 | }
|
|---|
| 392 | }
|
|---|
| 393 |
|
|---|
| 394 | struct channel_map_table {
|
|---|
| 395 | unsigned char map; /* ALSA API channel map position */
|
|---|
| 396 | int spk_mask; /* speaker position bit mask */
|
|---|
| 397 | };
|
|---|
| 398 |
|
|---|
| 399 | static struct channel_map_table map_tables[] = {
|
|---|
| 400 | { SNDRV_CHMAP_FL, FL },
|
|---|
| 401 | { SNDRV_CHMAP_FR, FR },
|
|---|
| 402 | { SNDRV_CHMAP_RL, RL },
|
|---|
| 403 | { SNDRV_CHMAP_RR, RR },
|
|---|
| 404 | { SNDRV_CHMAP_LFE, LFE },
|
|---|
| 405 | { SNDRV_CHMAP_FC, FC },
|
|---|
| 406 | { SNDRV_CHMAP_RLC, RLC },
|
|---|
| 407 | { SNDRV_CHMAP_RRC, RRC },
|
|---|
| 408 | { SNDRV_CHMAP_RC, RC },
|
|---|
| 409 | { SNDRV_CHMAP_FLC, FLC },
|
|---|
| 410 | { SNDRV_CHMAP_FRC, FRC },
|
|---|
| 411 | { SNDRV_CHMAP_TFL, FLH },
|
|---|
| 412 | { SNDRV_CHMAP_TFR, FRH },
|
|---|
| 413 | { SNDRV_CHMAP_FLW, FLW },
|
|---|
| 414 | { SNDRV_CHMAP_FRW, FRW },
|
|---|
| 415 | { SNDRV_CHMAP_TC, TC },
|
|---|
| 416 | { SNDRV_CHMAP_TFC, FCH },
|
|---|
| 417 | {0} /* terminator */
|
|---|
| 418 | };
|
|---|
| 419 |
|
|---|
| 420 | /* from ALSA API channel position to speaker bit mask */
|
|---|
| 421 | int snd_hdac_chmap_to_spk_mask(unsigned char c)
|
|---|
| 422 | {
|
|---|
| 423 | struct channel_map_table *t = map_tables;
|
|---|
| 424 |
|
|---|
| 425 | for (; t->map; t++) {
|
|---|
| 426 | if (t->map == c)
|
|---|
| 427 | return t->spk_mask;
|
|---|
| 428 | }
|
|---|
| 429 | return 0;
|
|---|
| 430 | }
|
|---|
| 431 | EXPORT_SYMBOL_GPL(snd_hdac_chmap_to_spk_mask);
|
|---|
| 432 |
|
|---|
| 433 | /* from ALSA API channel position to CEA slot */
|
|---|
| 434 | static int to_cea_slot(int ordered_ca, unsigned char pos)
|
|---|
| 435 | {
|
|---|
| 436 | int mask = snd_hdac_chmap_to_spk_mask(pos);
|
|---|
| 437 | int i;
|
|---|
| 438 |
|
|---|
| 439 | /* Add sanity check to pass klockwork check.
|
|---|
| 440 | * This should never happen.
|
|---|
| 441 | */
|
|---|
| 442 | if (ordered_ca >= ARRAY_SIZE(channel_allocations))
|
|---|
| 443 | return -1;
|
|---|
| 444 |
|
|---|
| 445 | if (mask) {
|
|---|
| 446 | for (i = 0; i < 8; i++) {
|
|---|
| 447 | if (channel_allocations[ordered_ca].speakers[7 - i] == mask)
|
|---|
| 448 | return i;
|
|---|
| 449 | }
|
|---|
| 450 | }
|
|---|
| 451 |
|
|---|
| 452 | return -1;
|
|---|
| 453 | }
|
|---|
| 454 |
|
|---|
| 455 | /* from speaker bit mask to ALSA API channel position */
|
|---|
| 456 | int snd_hdac_spk_to_chmap(int spk)
|
|---|
| 457 | {
|
|---|
| 458 | struct channel_map_table *t = map_tables;
|
|---|
| 459 |
|
|---|
| 460 | for (; t->map; t++) {
|
|---|
| 461 | if (t->spk_mask == spk)
|
|---|
| 462 | return t->map;
|
|---|
| 463 | }
|
|---|
| 464 | return 0;
|
|---|
| 465 | }
|
|---|
| 466 | EXPORT_SYMBOL_GPL(snd_hdac_spk_to_chmap);
|
|---|
| 467 |
|
|---|
| 468 | /* from CEA slot to ALSA API channel position */
|
|---|
| 469 | static int from_cea_slot(int ordered_ca, unsigned char slot)
|
|---|
| 470 | {
|
|---|
| 471 | int mask;
|
|---|
| 472 |
|
|---|
| 473 | /* Add sanity check to pass klockwork check.
|
|---|
| 474 | * This should never happen.
|
|---|
| 475 | */
|
|---|
| 476 | if (slot >= 8)
|
|---|
| 477 | return 0;
|
|---|
| 478 |
|
|---|
| 479 | mask = channel_allocations[ordered_ca].speakers[7 - slot];
|
|---|
| 480 |
|
|---|
| 481 | return snd_hdac_spk_to_chmap(mask);
|
|---|
| 482 | }
|
|---|
| 483 |
|
|---|
| 484 | /* get the CA index corresponding to the given ALSA API channel map */
|
|---|
| 485 | static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
|
|---|
| 486 | {
|
|---|
| 487 | int i, spks = 0, spk_mask = 0;
|
|---|
| 488 |
|
|---|
| 489 | for (i = 0; i < chs; i++) {
|
|---|
| 490 | int mask = snd_hdac_chmap_to_spk_mask(map[i]);
|
|---|
| 491 |
|
|---|
| 492 | if (mask) {
|
|---|
| 493 | spk_mask |= mask;
|
|---|
| 494 | spks++;
|
|---|
| 495 | }
|
|---|
| 496 | }
|
|---|
| 497 |
|
|---|
| 498 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
|
|---|
| 499 | if ((chs == channel_allocations[i].channels ||
|
|---|
| 500 | spks == channel_allocations[i].channels) &&
|
|---|
| 501 | (spk_mask & channel_allocations[i].spk_mask) ==
|
|---|
| 502 | channel_allocations[i].spk_mask)
|
|---|
| 503 | return channel_allocations[i].ca_index;
|
|---|
| 504 | }
|
|---|
| 505 | return -1;
|
|---|
| 506 | }
|
|---|
| 507 |
|
|---|
| 508 | /* set up the channel slots for the given ALSA API channel map */
|
|---|
| 509 | static int hdmi_manual_setup_channel_mapping(struct hdac_chmap *chmap,
|
|---|
| 510 | hda_nid_t pin_nid,
|
|---|
| 511 | int chs, unsigned char *map,
|
|---|
| 512 | int ca)
|
|---|
| 513 | {
|
|---|
| 514 | int ordered_ca = get_channel_allocation_order(ca);
|
|---|
| 515 | int alsa_pos, hdmi_slot;
|
|---|
| 516 | #ifndef TARGET_OS2
|
|---|
| 517 | int assignments[8] = {[0 ... 7] = 0xf};
|
|---|
| 518 | #else
|
|---|
| 519 | int assignments[8] = {0xf,0xf,0xf,0xf,0xf,0xf,0xf,0xf};
|
|---|
| 520 | #endif
|
|---|
| 521 | for (alsa_pos = 0; alsa_pos < chs; alsa_pos++) {
|
|---|
| 522 |
|
|---|
| 523 | hdmi_slot = to_cea_slot(ordered_ca, map[alsa_pos]);
|
|---|
| 524 |
|
|---|
| 525 | if (hdmi_slot < 0)
|
|---|
| 526 | continue; /* unassigned channel */
|
|---|
| 527 |
|
|---|
| 528 | assignments[hdmi_slot] = alsa_pos;
|
|---|
| 529 | }
|
|---|
| 530 |
|
|---|
| 531 | for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++) {
|
|---|
| 532 | int err;
|
|---|
| 533 |
|
|---|
| 534 | err = chmap->ops.pin_set_slot_channel(chmap->hdac,
|
|---|
| 535 | pin_nid, hdmi_slot, assignments[hdmi_slot]);
|
|---|
| 536 | if (err)
|
|---|
| 537 | return -EINVAL;
|
|---|
| 538 | }
|
|---|
| 539 | return 0;
|
|---|
| 540 | }
|
|---|
| 541 |
|
|---|
| 542 | /* store ALSA API channel map from the current default map */
|
|---|
| 543 | static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
|
|---|
| 544 | {
|
|---|
| 545 | int i;
|
|---|
| 546 | int ordered_ca = get_channel_allocation_order(ca);
|
|---|
| 547 |
|
|---|
| 548 | for (i = 0; i < 8; i++) {
|
|---|
| 549 | if (ordered_ca < ARRAY_SIZE(channel_allocations) &&
|
|---|
| 550 | i < channel_allocations[ordered_ca].channels)
|
|---|
| 551 | map[i] = from_cea_slot(ordered_ca, hdmi_channel_mapping[ca][i] & 0x0f);
|
|---|
| 552 | else
|
|---|
| 553 | map[i] = 0;
|
|---|
| 554 | }
|
|---|
| 555 | }
|
|---|
| 556 |
|
|---|
| 557 | void snd_hdac_setup_channel_mapping(struct hdac_chmap *chmap,
|
|---|
| 558 | hda_nid_t pin_nid, bool non_pcm, int ca,
|
|---|
| 559 | int channels, unsigned char *map,
|
|---|
| 560 | bool chmap_set)
|
|---|
| 561 | {
|
|---|
| 562 | if (!non_pcm && chmap_set) {
|
|---|
| 563 | hdmi_manual_setup_channel_mapping(chmap, pin_nid,
|
|---|
| 564 | channels, map, ca);
|
|---|
| 565 | } else {
|
|---|
| 566 | hdmi_std_setup_channel_mapping(chmap, pin_nid, non_pcm, ca);
|
|---|
| 567 | hdmi_setup_fake_chmap(map, ca);
|
|---|
| 568 | }
|
|---|
| 569 |
|
|---|
| 570 | hdmi_debug_channel_mapping(chmap, pin_nid);
|
|---|
| 571 | }
|
|---|
| 572 | EXPORT_SYMBOL_GPL(snd_hdac_setup_channel_mapping);
|
|---|
| 573 |
|
|---|
| 574 | int snd_hdac_get_active_channels(int ca)
|
|---|
| 575 | {
|
|---|
| 576 | int ordered_ca = get_channel_allocation_order(ca);
|
|---|
| 577 |
|
|---|
| 578 | /* Add sanity check to pass klockwork check.
|
|---|
| 579 | * This should never happen.
|
|---|
| 580 | */
|
|---|
| 581 | if (ordered_ca >= ARRAY_SIZE(channel_allocations))
|
|---|
| 582 | ordered_ca = 0;
|
|---|
| 583 |
|
|---|
| 584 | return channel_allocations[ordered_ca].channels;
|
|---|
| 585 | }
|
|---|
| 586 | EXPORT_SYMBOL_GPL(snd_hdac_get_active_channels);
|
|---|
| 587 |
|
|---|
| 588 | struct hdac_cea_channel_speaker_allocation *snd_hdac_get_ch_alloc_from_ca(int ca)
|
|---|
| 589 | {
|
|---|
| 590 | return &channel_allocations[get_channel_allocation_order(ca)];
|
|---|
| 591 | }
|
|---|
| 592 | EXPORT_SYMBOL_GPL(snd_hdac_get_ch_alloc_from_ca);
|
|---|
| 593 |
|
|---|
| 594 | int snd_hdac_channel_allocation(struct hdac_device *hdac, int spk_alloc,
|
|---|
| 595 | int channels, bool chmap_set, bool non_pcm, unsigned char *map)
|
|---|
| 596 | {
|
|---|
| 597 | int ca;
|
|---|
| 598 |
|
|---|
| 599 | if (!non_pcm && chmap_set)
|
|---|
| 600 | ca = hdmi_manual_channel_allocation(channels, map);
|
|---|
| 601 | else
|
|---|
| 602 | ca = hdmi_channel_allocation_spk_alloc_blk(hdac,
|
|---|
| 603 | spk_alloc, channels);
|
|---|
| 604 |
|
|---|
| 605 | if (ca < 0)
|
|---|
| 606 | ca = 0;
|
|---|
| 607 |
|
|---|
| 608 | return ca;
|
|---|
| 609 | }
|
|---|
| 610 | EXPORT_SYMBOL_GPL(snd_hdac_channel_allocation);
|
|---|
| 611 |
|
|---|
| 612 | /*
|
|---|
| 613 | * ALSA API channel-map control callbacks
|
|---|
| 614 | */
|
|---|
| 615 | static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
|
|---|
| 616 | struct snd_ctl_elem_info *uinfo)
|
|---|
| 617 | {
|
|---|
| 618 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
|
|---|
| 619 | struct hdac_chmap *chmap = info->private_data;
|
|---|
| 620 |
|
|---|
| 621 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
|
|---|
| 622 | uinfo->count = chmap->channels_max;
|
|---|
| 623 | uinfo->value.integer.min = 0;
|
|---|
| 624 | uinfo->value.integer.max = SNDRV_CHMAP_LAST;
|
|---|
| 625 | return 0;
|
|---|
| 626 | }
|
|---|
| 627 |
|
|---|
| 628 | static int hdmi_chmap_cea_alloc_validate_get_type(struct hdac_chmap *chmap,
|
|---|
| 629 | struct hdac_cea_channel_speaker_allocation *cap, int channels)
|
|---|
| 630 | {
|
|---|
| 631 | /* If the speaker allocation matches the channel count, it is OK.*/
|
|---|
| 632 | if (cap->channels != channels)
|
|---|
| 633 | return -1;
|
|---|
| 634 |
|
|---|
| 635 | /* all channels are remappable freely */
|
|---|
| 636 | return SNDRV_CTL_TLVT_CHMAP_VAR;
|
|---|
| 637 | }
|
|---|
| 638 |
|
|---|
| 639 | static void hdmi_cea_alloc_to_tlv_chmap(struct hdac_chmap *hchmap,
|
|---|
| 640 | struct hdac_cea_channel_speaker_allocation *cap,
|
|---|
| 641 | unsigned int *chmap, int channels)
|
|---|
| 642 | {
|
|---|
| 643 | int count = 0;
|
|---|
| 644 | int c;
|
|---|
| 645 |
|
|---|
| 646 | for (c = 7; c >= 0; c--) {
|
|---|
| 647 | int spk = cap->speakers[c];
|
|---|
| 648 |
|
|---|
| 649 | if (!spk)
|
|---|
| 650 | continue;
|
|---|
| 651 |
|
|---|
| 652 | chmap[count++] = snd_hdac_spk_to_chmap(spk);
|
|---|
| 653 | }
|
|---|
| 654 |
|
|---|
| 655 | WARN_ON(count != channels);
|
|---|
| 656 | }
|
|---|
| 657 |
|
|---|
| 658 | static int spk_mask_from_spk_alloc(int spk_alloc)
|
|---|
| 659 | {
|
|---|
| 660 | int i;
|
|---|
| 661 | int spk_mask = eld_speaker_allocation_bits[0];
|
|---|
| 662 |
|
|---|
| 663 | for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
|
|---|
| 664 | if (spk_alloc & (1 << i))
|
|---|
| 665 | spk_mask |= eld_speaker_allocation_bits[i];
|
|---|
| 666 | }
|
|---|
| 667 |
|
|---|
| 668 | return spk_mask;
|
|---|
| 669 | }
|
|---|
| 670 |
|
|---|
| 671 | static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
|
|---|
| 672 | unsigned int size, unsigned int __user *tlv)
|
|---|
| 673 | {
|
|---|
| 674 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
|
|---|
| 675 | struct hdac_chmap *chmap = info->private_data;
|
|---|
| 676 | int pcm_idx = kcontrol->private_value;
|
|---|
| 677 | unsigned int __user *dst;
|
|---|
| 678 | int chs, count = 0;
|
|---|
| 679 | unsigned long max_chs;
|
|---|
| 680 | int type;
|
|---|
| 681 | int spk_alloc, spk_mask;
|
|---|
| 682 |
|
|---|
| 683 | if (size < 8)
|
|---|
| 684 | return -ENOMEM;
|
|---|
| 685 | if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
|
|---|
| 686 | return -EFAULT;
|
|---|
| 687 | size -= 8;
|
|---|
| 688 | dst = tlv + 2;
|
|---|
| 689 |
|
|---|
| 690 | spk_alloc = chmap->ops.get_spk_alloc(chmap->hdac, pcm_idx);
|
|---|
| 691 | spk_mask = spk_mask_from_spk_alloc(spk_alloc);
|
|---|
| 692 |
|
|---|
| 693 | max_chs = hweight_long(spk_mask);
|
|---|
| 694 |
|
|---|
| 695 | for (chs = 2; chs <= max_chs; chs++) {
|
|---|
| 696 | int i;
|
|---|
| 697 | struct hdac_cea_channel_speaker_allocation *cap;
|
|---|
| 698 |
|
|---|
| 699 | cap = channel_allocations;
|
|---|
| 700 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
|
|---|
| 701 | int chs_bytes = chs * 4;
|
|---|
| 702 | unsigned int tlv_chmap[8];
|
|---|
| 703 |
|
|---|
| 704 | if (cap->channels != chs)
|
|---|
| 705 | continue;
|
|---|
| 706 |
|
|---|
| 707 | if (!(cap->spk_mask == (spk_mask & cap->spk_mask)))
|
|---|
| 708 | continue;
|
|---|
| 709 |
|
|---|
| 710 | type = chmap->ops.chmap_cea_alloc_validate_get_type(
|
|---|
| 711 | chmap, cap, chs);
|
|---|
| 712 | if (type < 0)
|
|---|
| 713 | return -ENODEV;
|
|---|
| 714 | if (size < 8)
|
|---|
| 715 | return -ENOMEM;
|
|---|
| 716 |
|
|---|
| 717 | if (put_user(type, dst) ||
|
|---|
| 718 | put_user(chs_bytes, dst + 1))
|
|---|
| 719 | return -EFAULT;
|
|---|
| 720 |
|
|---|
| 721 | dst += 2;
|
|---|
| 722 | size -= 8;
|
|---|
| 723 | count += 8;
|
|---|
| 724 |
|
|---|
| 725 | if (size < chs_bytes)
|
|---|
| 726 | return -ENOMEM;
|
|---|
| 727 |
|
|---|
| 728 | size -= chs_bytes;
|
|---|
| 729 | count += chs_bytes;
|
|---|
| 730 | chmap->ops.cea_alloc_to_tlv_chmap(chmap, cap,
|
|---|
| 731 | tlv_chmap, chs);
|
|---|
| 732 |
|
|---|
| 733 | if (copy_to_user(dst, tlv_chmap, chs_bytes))
|
|---|
| 734 | return -EFAULT;
|
|---|
| 735 | dst += chs;
|
|---|
| 736 | }
|
|---|
| 737 | }
|
|---|
| 738 |
|
|---|
| 739 | if (put_user(count, tlv + 1))
|
|---|
| 740 | return -EFAULT;
|
|---|
| 741 |
|
|---|
| 742 | return 0;
|
|---|
| 743 | }
|
|---|
| 744 |
|
|---|
| 745 | static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
|
|---|
| 746 | struct snd_ctl_elem_value *ucontrol)
|
|---|
| 747 | {
|
|---|
| 748 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
|
|---|
| 749 | struct hdac_chmap *chmap = info->private_data;
|
|---|
| 750 | int pcm_idx = kcontrol->private_value;
|
|---|
| 751 | unsigned char pcm_chmap[8];
|
|---|
| 752 | int i;
|
|---|
| 753 |
|
|---|
| 754 | memset(pcm_chmap, 0, sizeof(pcm_chmap));
|
|---|
| 755 | chmap->ops.get_chmap(chmap->hdac, pcm_idx, pcm_chmap);
|
|---|
| 756 |
|
|---|
| 757 | for (i = 0; i < ARRAY_SIZE(pcm_chmap); i++)
|
|---|
| 758 | ucontrol->value.integer.value[i] = pcm_chmap[i];
|
|---|
| 759 |
|
|---|
| 760 | return 0;
|
|---|
| 761 | }
|
|---|
| 762 |
|
|---|
| 763 | /* a simple sanity check for input values to chmap kcontrol */
|
|---|
| 764 | static int chmap_value_check(struct hdac_chmap *hchmap,
|
|---|
| 765 | const struct snd_ctl_elem_value *ucontrol)
|
|---|
| 766 | {
|
|---|
| 767 | int i;
|
|---|
| 768 |
|
|---|
| 769 | for (i = 0; i < hchmap->channels_max; i++) {
|
|---|
| 770 | if (ucontrol->value.integer.value[i] < 0 ||
|
|---|
| 771 | ucontrol->value.integer.value[i] > SNDRV_CHMAP_LAST)
|
|---|
| 772 | return -EINVAL;
|
|---|
| 773 | }
|
|---|
| 774 | return 0;
|
|---|
| 775 | }
|
|---|
| 776 |
|
|---|
| 777 | static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
|
|---|
| 778 | struct snd_ctl_elem_value *ucontrol)
|
|---|
| 779 | {
|
|---|
| 780 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
|
|---|
| 781 | struct hdac_chmap *hchmap = info->private_data;
|
|---|
| 782 | int pcm_idx = kcontrol->private_value;
|
|---|
| 783 | unsigned int ctl_idx;
|
|---|
| 784 | struct snd_pcm_substream *substream;
|
|---|
| 785 | unsigned char chmap[8], per_pin_chmap[8];
|
|---|
| 786 | int i, err, ca, prepared = 0;
|
|---|
| 787 |
|
|---|
| 788 | err = chmap_value_check(hchmap, ucontrol);
|
|---|
| 789 | if (err < 0)
|
|---|
| 790 | return err;
|
|---|
| 791 |
|
|---|
| 792 | /* No monitor is connected in dyn_pcm_assign.
|
|---|
| 793 | * It's invalid to setup the chmap
|
|---|
| 794 | */
|
|---|
| 795 | if (!hchmap->ops.is_pcm_attached(hchmap->hdac, pcm_idx))
|
|---|
| 796 | return 0;
|
|---|
| 797 |
|
|---|
| 798 | ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
|
|---|
| 799 | substream = snd_pcm_chmap_substream(info, ctl_idx);
|
|---|
| 800 | if (!substream || !substream->runtime)
|
|---|
| 801 | return 0; /* just for avoiding error from alsactl restore */
|
|---|
| 802 | switch (substream->runtime->state) {
|
|---|
| 803 | case SNDRV_PCM_STATE_OPEN:
|
|---|
| 804 | case SNDRV_PCM_STATE_SETUP:
|
|---|
| 805 | break;
|
|---|
| 806 | case SNDRV_PCM_STATE_PREPARED:
|
|---|
| 807 | prepared = 1;
|
|---|
| 808 | break;
|
|---|
| 809 | default:
|
|---|
| 810 | return -EBUSY;
|
|---|
| 811 | }
|
|---|
| 812 | memset(chmap, 0, sizeof(chmap));
|
|---|
| 813 | for (i = 0; i < ARRAY_SIZE(chmap); i++)
|
|---|
| 814 | chmap[i] = ucontrol->value.integer.value[i];
|
|---|
| 815 |
|
|---|
| 816 | hchmap->ops.get_chmap(hchmap->hdac, pcm_idx, per_pin_chmap);
|
|---|
| 817 | if (!memcmp(chmap, per_pin_chmap, sizeof(chmap)))
|
|---|
| 818 | return 0;
|
|---|
| 819 | ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
|
|---|
| 820 | if (ca < 0)
|
|---|
| 821 | return -EINVAL;
|
|---|
| 822 | if (hchmap->ops.chmap_validate) {
|
|---|
| 823 | err = hchmap->ops.chmap_validate(hchmap, ca,
|
|---|
| 824 | ARRAY_SIZE(chmap), chmap);
|
|---|
| 825 | if (err)
|
|---|
| 826 | return err;
|
|---|
| 827 | }
|
|---|
| 828 |
|
|---|
| 829 | hchmap->ops.set_chmap(hchmap->hdac, pcm_idx, chmap, prepared);
|
|---|
| 830 |
|
|---|
| 831 | return 0;
|
|---|
| 832 | }
|
|---|
| 833 |
|
|---|
| 834 | static const struct hdac_chmap_ops chmap_ops = {
|
|---|
| 835 | .chmap_cea_alloc_validate_get_type = hdmi_chmap_cea_alloc_validate_get_type,
|
|---|
| 836 | .cea_alloc_to_tlv_chmap = hdmi_cea_alloc_to_tlv_chmap,
|
|---|
| 837 | .pin_get_slot_channel = hdmi_pin_get_slot_channel,
|
|---|
| 838 | .pin_set_slot_channel = hdmi_pin_set_slot_channel,
|
|---|
| 839 | .set_channel_count = hdmi_set_channel_count,
|
|---|
| 840 | };
|
|---|
| 841 |
|
|---|
| 842 | void snd_hdac_register_chmap_ops(struct hdac_device *hdac,
|
|---|
| 843 | struct hdac_chmap *chmap)
|
|---|
| 844 | {
|
|---|
| 845 | chmap->ops = chmap_ops;
|
|---|
| 846 | chmap->hdac = hdac;
|
|---|
| 847 | init_channel_allocations();
|
|---|
| 848 | }
|
|---|
| 849 | EXPORT_SYMBOL_GPL(snd_hdac_register_chmap_ops);
|
|---|
| 850 |
|
|---|
| 851 | int snd_hdac_add_chmap_ctls(struct snd_pcm *pcm, int pcm_idx,
|
|---|
| 852 | struct hdac_chmap *hchmap)
|
|---|
| 853 | {
|
|---|
| 854 | struct snd_pcm_chmap *chmap;
|
|---|
| 855 | struct snd_kcontrol *kctl;
|
|---|
| 856 | int err, i;
|
|---|
| 857 |
|
|---|
| 858 | err = snd_pcm_add_chmap_ctls(pcm,
|
|---|
| 859 | SNDRV_PCM_STREAM_PLAYBACK,
|
|---|
| 860 | NULL, 0, pcm_idx, &chmap);
|
|---|
| 861 | if (err < 0)
|
|---|
| 862 | return err;
|
|---|
| 863 | /* override handlers */
|
|---|
| 864 | chmap->private_data = hchmap;
|
|---|
| 865 | kctl = chmap->kctl;
|
|---|
| 866 | for (i = 0; i < kctl->count; i++)
|
|---|
| 867 | kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
|
|---|
| 868 | kctl->info = hdmi_chmap_ctl_info;
|
|---|
| 869 | kctl->get = hdmi_chmap_ctl_get;
|
|---|
| 870 | kctl->put = hdmi_chmap_ctl_put;
|
|---|
| 871 | kctl->tlv.c = hdmi_chmap_ctl_tlv;
|
|---|
| 872 |
|
|---|
| 873 | return 0;
|
|---|
| 874 | }
|
|---|
| 875 | EXPORT_SYMBOL_GPL(snd_hdac_add_chmap_ctls);
|
|---|