blob: f7fd752fc817be0124a5d1b56abbda90af31e791 [file] [log] [blame]
Subhransu S. Prusty67b90cb2016-03-04 19:59:46 +05301/*
2 * For multichannel support
3 */
4
5#ifndef __SOUND_HDA_CHMAP_H
6#define __SOUND_HDA_CHMAP_H
7
8#include <sound/hdaudio.h>
9
Subhransu S. Prusty828cb4e2016-03-04 19:59:50 +053010
11#define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80
12
Subhransu S. Prustyf3022402016-03-04 19:59:48 +053013struct hdac_cea_channel_speaker_allocation {
Subhransu S. Prusty67b90cb2016-03-04 19:59:46 +053014 int ca_index;
15 int speakers[8];
16
17 /* derived values, just for convenience */
18 int channels;
19 int spk_mask;
20};
21struct hdac_chmap;
22
23struct hdac_chmap_ops {
24 /*
25 * Helpers for producing the channel map TLVs. These can be overridden
26 * for devices that have non-standard mapping requirements.
27 */
28 int (*chmap_cea_alloc_validate_get_type)(struct hdac_chmap *chmap,
Subhransu S. Prustyf3022402016-03-04 19:59:48 +053029 struct hdac_cea_channel_speaker_allocation *cap, int channels);
Subhransu S. Prusty828cb4e2016-03-04 19:59:50 +053030 void (*cea_alloc_to_tlv_chmap)(struct hdac_chmap *hchmap,
31 struct hdac_cea_channel_speaker_allocation *cap,
Subhransu S. Prusty67b90cb2016-03-04 19:59:46 +053032 unsigned int *chmap, int channels);
33
34 /* check that the user-given chmap is supported */
Subhransu S. Prusty828cb4e2016-03-04 19:59:50 +053035 int (*chmap_validate)(struct hdac_chmap *hchmap, int ca,
36 int channels, unsigned char *chmap);
Subhransu S. Prusty9b3dc8a2016-03-04 19:59:47 +053037
38 void (*get_chmap)(struct hdac_device *hdac, int pcm_idx,
39 unsigned char *chmap);
40 void (*set_chmap)(struct hdac_device *hdac, int pcm_idx,
41 unsigned char *chmap, int prepared);
42 bool (*is_pcm_attached)(struct hdac_device *hdac, int pcm_idx);
Subhransu S. Prusty739ffee2016-03-04 19:59:49 +053043
44 /* get and set channel assigned to each HDMI ASP (audio sample packet) slot */
45 int (*pin_get_slot_channel)(struct hdac_device *codec,
46 hda_nid_t pin_nid, int asp_slot);
47 int (*pin_set_slot_channel)(struct hdac_device *codec,
48 hda_nid_t pin_nid, int asp_slot, int channel);
49 void (*set_channel_count)(struct hdac_device *codec,
50 hda_nid_t cvt_nid, int chs);
Subhransu S. Prusty67b90cb2016-03-04 19:59:46 +053051};
52
53struct hdac_chmap {
54 unsigned int channels_max; /* max over all cvts */
55 struct hdac_chmap_ops ops;
56 struct hdac_device *hdac;
57};
58
Subhransu S. Prusty739ffee2016-03-04 19:59:49 +053059void snd_hdac_register_chmap_ops(struct hdac_device *hdac,
60 struct hdac_chmap *chmap);
Subhransu S. Prusty67b90cb2016-03-04 19:59:46 +053061#endif /* __SOUND_HDA_CHMAP_H */