ALSA project - the C library reference
topology.h
1 /*
2  *
3  * This library is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU Lesser General Public License as
5  * published by the Free Software Foundation; either version 2.1 of
6  * the License, or (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16  *
17  * Copyright (C) 2015 Intel Corporation
18  *
19  */
20 
21 #ifndef __ALSA_TOPOLOGY_H
22 #define __ALSA_TOPOLOGY_H
23 
24 #include <stdint.h>
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
743 #define SND_TPLG_MAX_CHAN 8
744 
746 typedef struct snd_tplg snd_tplg_t;
747 
769 };
770 
772 #define SND_TPLG_INDEX_ALL 0
773 
778 snd_tplg_t *snd_tplg_new(void);
779 
784 void snd_tplg_free(snd_tplg_t *tplg);
785 
793 int snd_tplg_build_file(snd_tplg_t *tplg, const char *infile,
794  const char *outfile);
795 
801 void snd_tplg_verbose(snd_tplg_t *tplg, int verbose);
802 
807  int type;
808 };
809 
815  int min;
816  int step;
817  int mute;
818 };
819 
824  int size;
825  int reg;
826  int shift;
827  int id;
828 };
829 
836 };
837 
842  unsigned int length;
843  const void *data;
844 };
845 
850  int get;
851  int put;
852  int info;
853 };
854 
859  int type;
860  const char *name;
861  int access;
864 };
865 
872  int min;
873  int max;
875  int invert;
876  struct snd_soc_tplg_private *priv;
877 };
878 
885  int items;
886  int mask;
887  const char **texts;
888  const int **values;
889  struct snd_soc_tplg_private *priv;
890 };
891 
897  int max;
898  int mask;
899  int base;
900  int num_regs;
902  struct snd_soc_tplg_private *priv;
903 };
904 
909  const char *src;
910  const char *ctl;
911  const char *sink;
912 };
913 
918  int count;
920 };
921 
926  int id;
927  const char *name;
928  const char *sname;
929  int reg;
930  int shift;
931  int mask;
932  int subseq;
933  unsigned int invert;
934  unsigned int ignore_suspend;
935  unsigned short event_flags;
936  unsigned short event_type;
937  struct snd_soc_tplg_private *priv;
938  int num_ctls;
940 };
941 
946  const char *name;
947  int format;
948  int rate;
951  int channels;
952 };
953 
958  const char *name;
959  uint64_t formats;
960  unsigned int rates;
961  unsigned int rate_min;
962  unsigned int rate_max;
963  unsigned int channels_min;
964  unsigned int channels_max;
965  unsigned int periods_min;
966  unsigned int periods_max;
967  unsigned int period_size_min;
968  unsigned int period_size_max;
969  unsigned int buffer_size_min;
970  unsigned int buffer_size_max;
971  unsigned int sig_bits;
972 };
973 
978  const char *pcm_name;
979  const char *dai_name;
980  unsigned int pcm_id;
981  unsigned int dai_id;
982  unsigned int playback;
983  unsigned int capture;
984  unsigned int compress;
986  unsigned int flag_mask;
987  unsigned int flags;
988  struct snd_soc_tplg_private *priv;
991 };
992 
998  int id; /* unique ID - - used to match */
999  unsigned int fmt; /* SND_SOC_DAI_FORMAT_ format value */
1000  unsigned char clock_gated; /* SND_SOC_TPLG_DAI_CLK_GATE_ value */
1001  unsigned char invert_bclk; /* 1 for inverted BCLK, 0 for normal */
1002  unsigned char invert_fsync; /* 1 for inverted frame clock, 0 for normal */
1003  unsigned char bclk_master; /* SND_SOC_TPLG_BCLK_ value */
1004  unsigned char fsync_master; /* SND_SOC_TPLG_FSYNC_ value */
1005  unsigned char mclk_direction; /* SND_SOC_TPLG_MCLK_ value */
1006  unsigned short reserved; /* for 32bit alignment */
1007  unsigned int mclk_rate; /* MCLK or SYSCLK freqency in Hz */
1008  unsigned int bclk_rate; /* BCLK freqency in Hz */
1009  unsigned int fsync_rate; /* frame clock in Hz */
1010  unsigned int tdm_slots; /* number of TDM slots in use */
1011  unsigned int tdm_slot_width; /* width in bits for each slot */
1012  unsigned int tx_slots; /* bit mask for active Tx slots */
1013  unsigned int rx_slots; /* bit mask for active Rx slots */
1014  unsigned int tx_channels; /* number of Tx channels */
1015  unsigned int *tx_chanmap; /* array of slot number */
1016  unsigned int rx_channels; /* number of Rx channels */
1017  unsigned int *rx_chanmap; /* array of slot number */
1018 };
1019 
1025  const char *dai_name;
1026  unsigned int dai_id;
1027  unsigned int playback;
1028  unsigned int capture;
1030  unsigned int flag_mask;
1031  unsigned int flags;
1032  struct snd_soc_tplg_private *priv;
1034 };
1035 
1040  const char *name;
1041  int id;
1042  const char *stream_name;
1048  int num_hw_configs; /* number of hw configs */
1049  int default_hw_config_id; /* default hw config ID for init */
1050 
1051  unsigned int flag_mask; /* bitmask of flags to configure */
1052  unsigned int flags; /* SND_SOC_TPLG_LNK_FLGBIT_* flag value */
1053  struct snd_soc_tplg_private *priv;
1054 };
1055 
1059 typedef struct snd_tplg_obj_template {
1060  enum snd_tplg_type type;
1061  int index;
1062  int version;
1064  union {
1073  };
1075 
1083 
1090 int snd_tplg_build(snd_tplg_t *tplg, const char *outfile);
1091 
1099 int snd_tplg_set_manifest_data(snd_tplg_t *tplg, const void *data, int len);
1100 
1107 int snd_tplg_set_version(snd_tplg_t *tplg, unsigned int version);
1108 
1109 /* \} */
1110 
1111 #ifdef __cplusplus
1112 }
1113 #endif
1114 
1115 #endif /* __ALSA_TOPOLOGY_H */
snd_tplg_channel_elem::reg
int reg
Definition: topology.h:825
snd_tplg_stream_caps_template::sig_bits
unsigned int sig_bits
Definition: topology.h:971
snd_tplg_stream_caps_template
Stream Capabilities.
Definition: topology.h:957
snd_tplg_link_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:1053
snd_tplg_widget_template
Template type for DAPM widget objects.
Definition: topology.h:925
snd_tplg_widget_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:937
snd_tplg_widget_template::name
const char * name
Definition: topology.h:927
snd_tplg_pcm_template::num_streams
int num_streams
Definition: topology.h:989
snd_tplg_mixer_template::invert
int invert
Definition: topology.h:875
snd_tplg_pcm_template::dai_name
const char * dai_name
Definition: topology.h:979
snd_tplg_graph_template
Template type for array of DAPM graph elements.
Definition: topology.h:917
SND_TPLG_TYPE_STREAM_CAPS
Definition: topology.h:757
snd_tplg_channel_elem
Definition: topology.h:823
snd_tplg_stream_caps_template::channels_min
unsigned int channels_min
Definition: topology.h:963
snd_tplg_obj_template_t::@8::enum_ctl
struct snd_tplg_enum_template * enum_ctl
Definition: topology.h:1068
snd_tplg_ctl_template::name
const char * name
Definition: topology.h:860
snd_tplg_dai_template::playback
unsigned int playback
Definition: topology.h:1027
snd_tplg_graph_elem::ctl
const char * ctl
Definition: topology.h:910
snd_tplg_pcm_template::pcm_id
unsigned int pcm_id
Definition: topology.h:980
snd_tplg_tlv_dbscale_template
Template type for TLV Scale objects.
Definition: topology.h:813
SND_TPLG_TYPE_TUPLE
Definition: topology.h:765
SND_TPLG_TYPE_LINK
Definition: topology.h:766
SND_TPLG_TYPE_STREAM_CONFIG
Definition: topology.h:756
snd_tplg_io_ops_template
Template type for object operations mapping.
Definition: topology.h:849
snd_tplg_bytes_template::max
int max
Definition: topology.h:897
snd_tplg_dai_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:1032
snd_tplg_enum_template::mask
int mask
Definition: topology.h:886
snd_tplg_enum_template
Template type for enumerated control objects.
Definition: topology.h:882
len
unsigned int len
Definition: seq_event.h:198
snd_tplg_mixer_template::hdr
struct snd_tplg_ctl_template hdr
Definition: topology.h:870
snd_tplg_stream_template::period_bytes
int period_bytes
Definition: topology.h:949
snd_tplg_widget_template::event_flags
unsigned short event_flags
Definition: topology.h:935
snd_tplg_enum_template::map
struct snd_tplg_channel_map_template * map
Definition: topology.h:884
snd_tplg_channel_map_template::channel
struct snd_tplg_channel_elem channel[SND_TPLG_MAX_CHAN]
Definition: topology.h:835
SND_TPLG_TYPE_ENUM
Definition: topology.h:752
snd_tplg_mixer_template::max
int max
Definition: topology.h:873
snd_tplg_stream_caps_template::channels_max
unsigned int channels_max
Definition: topology.h:964
snd_tplg_link_template::name
const char * name
Definition: topology.h:1040
snd_tplg_graph_elem
Template type for single DAPM graph element.
Definition: topology.h:908
SND_TPLG_TYPE_TEXT
Definition: topology.h:753
snd_tplg_pcm_template::dai_id
unsigned int dai_id
Definition: topology.h:981
snd_tplg_ctl_template::ops
struct snd_tplg_io_ops_template ops
Definition: topology.h:862
SND_TPLG_TYPE_TLV
Definition: topology.h:750
snd_tplg_graph_template::elem
struct snd_tplg_graph_elem elem[0]
Definition: topology.h:919
snd_tplg_widget_template::ctl
struct snd_tplg_ctl_template * ctl[0]
Definition: topology.h:939
snd_tplg_widget_template::event_type
unsigned short event_type
Definition: topology.h:936
snd_tplg_bytes_template::base
int base
Definition: topology.h:899
snd_tplg_tlv_dbscale_template::mute
int mute
Definition: topology.h:817
SND_TPLG_TYPE_TOKEN
Definition: topology.h:764
snd_tplg_obj_template_t::@8::dai
struct snd_tplg_dai_template * dai
Definition: topology.h:1072
snd_tplg_type
snd_tplg_type
Definition: topology.h:749
snd_tplg_obj_template
Generic Template Object.
snd_tplg_stream_caps_template::buffer_size_min
unsigned int buffer_size_min
Definition: topology.h:969
snd_tplg_dai_template::capture
unsigned int capture
Definition: topology.h:1028
snd_tplg_enum_template::items
int items
Definition: topology.h:885
snd_tplg_io_ops_template::info
int info
Definition: topology.h:852
snd_tplg_obj_template_t::@8::link
struct snd_tplg_link_template * link
Definition: topology.h:1071
snd_tplg_add_object
int snd_tplg_add_object(snd_tplg_t *tplg, snd_tplg_obj_template_t *t)
Register topology template object.
Definition: parser.c:361
snd_tplg_pcm_template
Template type for PCM (FE DAI & DAI links).
Definition: topology.h:977
snd_tplg_graph_template::count
int count
Definition: topology.h:918
snd_tplg_graph_elem::src
const char * src
Definition: topology.h:909
snd_tplg_mixer_template
Template type for mixer control objects.
Definition: topology.h:869
snd_tplg_stream_caps_template::periods_min
unsigned int periods_min
Definition: topology.h:965
snd_tplg_pdata_template::length
unsigned int length
Definition: topology.h:842
snd_tplg_pcm_template::flags
unsigned int flags
Definition: topology.h:987
snd_tplg_pcm_template::stream
struct snd_tplg_stream_template stream[0]
Definition: topology.h:990
SND_TPLG_TYPE_BYTES
Definition: topology.h:755
snd_tplg_stream_template::format
int format
Definition: topology.h:947
SND_TPLG_TYPE_MIXER
Definition: topology.h:751
snd_tplg_stream_caps_template::formats
uint64_t formats
Definition: topology.h:959
snd_tplg_t
struct snd_tplg snd_tplg_t
Definition: topology.h:746
snd_tplg_stream_template::rate
int rate
Definition: topology.h:948
snd_tplg_pcm_template::capture
unsigned int capture
Definition: topology.h:983
snd_tplg_bytes_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:902
snd_tplg_bytes_template::num_regs
int num_regs
Definition: topology.h:900
snd_tplg_tlv_dbscale_template::min
int min
Definition: topology.h:815
snd_tplg_channel_map_template::num_channels
int num_channels
Definition: topology.h:834
SND_TPLG_MAX_CHAN
#define SND_TPLG_MAX_CHAN
Definition: topology.h:743
snd_tplg_ctl_template
Template type for control objects.
Definition: topology.h:858
snd_tplg_dai_template::dai_id
unsigned int dai_id
Definition: topology.h:1026
snd_tplg_enum_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:889
snd_tplg_bytes_template::mask
int mask
Definition: topology.h:898
snd_tplg_pcm_template::caps
struct snd_tplg_stream_caps_template * caps[2]
Definition: topology.h:985
snd_tplg_stream_template::name
const char * name
Definition: topology.h:946
snd_tplg_stream_caps_template::rates
unsigned int rates
Definition: topology.h:960
SND_TPLG_TYPE_BE
Definition: topology.h:761
snd_tplg_enum_template::values
const int ** values
Definition: topology.h:888
snd_tplg_bytes_template::hdr
struct snd_tplg_ctl_template hdr
Definition: topology.h:896
snd_tplg_set_version
int snd_tplg_set_version(snd_tplg_t *tplg, unsigned int version)
Set an optional vendor specific version number.
Definition: parser.c:432
snd_tplg_obj_template_t::version
int version
Definition: topology.h:1062
snd_tplg_new
snd_tplg_t * snd_tplg_new(void)
Create a new topology parser instance.
Definition: parser.c:454
snd_tplg_link_template::hw_config
struct snd_tplg_hw_config_template * hw_config
Definition: topology.h:1047
snd_tplg_widget_template::id
int id
Definition: topology.h:926
SND_TPLG_TYPE_DAPM_WIDGET
Definition: topology.h:759
snd_tplg_bytes_template::ext_ops
struct snd_tplg_io_ops_template ext_ops
Definition: topology.h:901
snd_tplg_obj_template_t::index
int index
Definition: topology.h:1061
snd_tplg_widget_template::num_ctls
int num_ctls
Definition: topology.h:938
snd_tplg_link_template::stream_name
const char * stream_name
Definition: topology.h:1042
snd_tplg_graph_elem::sink
const char * sink
Definition: topology.h:911
snd_tplg_pcm_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:988
snd_tplg_stream_template::buffer_bytes
int buffer_bytes
Definition: topology.h:950
snd_tplg_stream_template::channels
int channels
Definition: topology.h:951
snd_tplg_stream_caps_template::buffer_size_max
unsigned int buffer_size_max
Definition: topology.h:970
snd_tplg_hw_config_template
Template type to describe a physical link runtime supported hardware config, i.e. hardware audio form...
Definition: topology.h:997
snd_tplg_widget_template::shift
int shift
Definition: topology.h:930
SND_TPLG_TYPE_DATA
Definition: topology.h:754
snd_tplg_obj_template_t::@8::bytes_ctl
struct snd_tplg_bytes_template * bytes_ctl
Definition: topology.h:1067
snd_tplg_dai_template::flag_mask
unsigned int flag_mask
Definition: topology.h:1030
snd_tplg_widget_template::reg
int reg
Definition: topology.h:929
snd_tplg_free
void snd_tplg_free(snd_tplg_t *tplg)
Free a topology parser instance.
Definition: parser.c:491
snd_tplg_ctl_template::tlv
struct snd_tplg_tlv_template * tlv
Definition: topology.h:863
SND_TPLG_TYPE_MANIFEST
Definition: topology.h:763
snd_tplg_bytes_template
Template type for TLV Scale objects.
Definition: topology.h:895
snd_tplg_pcm_template::playback
unsigned int playback
Definition: topology.h:982
snd_tplg_dai_template::caps
struct snd_tplg_stream_caps_template * caps[2]
Definition: topology.h:1029
snd_tplg_channel_map_template
Template type for channel mapping.
Definition: topology.h:833
snd_tplg_dai_template::flags
unsigned int flags
Definition: topology.h:1031
snd_tplg_build_file
int snd_tplg_build_file(snd_tplg_t *tplg, const char *infile, const char *outfile)
Parse and build topology text file into binary file.
Definition: parser.c:315
SND_TPLG_TYPE_DAPM_GRAPH
Definition: topology.h:760
snd_tplg_pcm_template::compress
unsigned int compress
Definition: topology.h:984
SND_TPLG_TYPE_HW_CONFIG
Definition: topology.h:767
snd_tplg_stream_template
Stream configurations.
Definition: topology.h:945
snd_tplg_obj_template_t::@8::graph
struct snd_tplg_graph_template * graph
Definition: topology.h:1069
snd_tplg_mixer_template::min
int min
Definition: topology.h:872
snd_tplg_obj_template_t::vendor_type
int vendor_type
Definition: topology.h:1063
snd_tplg_mixer_template::map
struct snd_tplg_channel_map_template * map
Definition: topology.h:871
snd_tplg_dai_template::dai_name
const char * dai_name
Definition: topology.h:1025
snd_tplg_tlv_template::type
int type
Definition: topology.h:807
snd_tplg_verbose
void snd_tplg_verbose(snd_tplg_t *tplg, int verbose)
Enable verbose reporting of binary file output.
Definition: parser.c:439
snd_tplg_obj_template_t
Definition: topology.h:1059
snd_tplg_mixer_template::platform_max
int platform_max
Definition: topology.h:874
snd_tplg_stream_caps_template::name
const char * name
Definition: topology.h:958
snd_tplg_tlv_template
Template type for all TLV objects.
Definition: topology.h:806
snd_tplg_tlv_dbscale_template::hdr
struct snd_tplg_tlv_template hdr
Definition: topology.h:814
snd_tplg_widget_template::sname
const char * sname
Definition: topology.h:928
snd_tplg_set_manifest_data
int snd_tplg_set_manifest_data(snd_tplg_t *tplg, const void *data, int len)
Attach private data to topology manifest.
Definition: parser.c:417
snd_tplg_obj_template_t::@8::pcm
struct snd_tplg_pcm_template * pcm
Definition: topology.h:1070
snd_tplg_stream_caps_template::rate_max
unsigned int rate_max
Definition: topology.h:962
snd_tplg_link_template::id
int id
Definition: topology.h:1041
snd_tplg_ctl_template::access
int access
Definition: topology.h:861
snd_tplg_pdata_template::data
const void * data
Definition: topology.h:843
snd_tplg_stream_caps_template::period_size_min
unsigned int period_size_min
Definition: topology.h:967
snd_tplg_obj_template_t::@8::widget
struct snd_tplg_widget_template * widget
Definition: topology.h:1065
snd_tplg_build
int snd_tplg_build(snd_tplg_t *tplg, const char *outfile)
Build all registered topology data into binary file.
Definition: parser.c:388
snd_tplg_pcm_template::pcm_name
const char * pcm_name
Definition: topology.h:978
snd_tplg_pdata_template
Template type for private data objects.
Definition: topology.h:841
snd_tplg_dai_template
Template type for physical DAI. It can be used to configure backend DAIs for DPCM.
Definition: topology.h:1024
snd_tplg_channel_elem::size
int size
Definition: topology.h:824
snd_tplg_io_ops_template::get
int get
Definition: topology.h:850
snd_tplg_link_template::stream
struct snd_tplg_stream_template * stream
Definition: topology.h:1045
snd_tplg_channel_elem::id
int id
Definition: topology.h:827
snd_tplg_io_ops_template::put
int put
Definition: topology.h:851
snd_tplg_widget_template::mask
int mask
Definition: topology.h:931
SND_TPLG_TYPE_DAI
Definition: topology.h:768
snd_tplg_link_template::num_streams
int num_streams
Definition: topology.h:1044
snd_tplg_widget_template::invert
unsigned int invert
Definition: topology.h:933
snd_tplg_widget_template::ignore_suspend
unsigned int ignore_suspend
Definition: topology.h:934
snd_tplg_mixer_template::priv
struct snd_soc_tplg_private * priv
Definition: topology.h:876
snd_tplg_stream_caps_template::rate_min
unsigned int rate_min
Definition: topology.h:961
snd_tplg_enum_template::texts
const char ** texts
Definition: topology.h:887
SND_TPLG_TYPE_CC
Definition: topology.h:762
snd_tplg_obj_template_t::@8::mixer
struct snd_tplg_mixer_template * mixer
Definition: topology.h:1066
snd_tplg_stream_caps_template::period_size_max
unsigned int period_size_max
Definition: topology.h:968
snd_tplg_enum_template::hdr
struct snd_tplg_ctl_template hdr
Definition: topology.h:883
snd_tplg_ctl_template::type
int type
Definition: topology.h:859
snd_tplg_stream_caps_template::periods_max
unsigned int periods_max
Definition: topology.h:966
snd_tplg_widget_template::subseq
int subseq
Definition: topology.h:932
snd_tplg_tlv_dbscale_template::step
int step
Definition: topology.h:816
snd_tplg_pcm_template::flag_mask
unsigned int flag_mask
Definition: topology.h:986
SND_TPLG_TYPE_PCM
Definition: topology.h:758
snd_tplg_channel_elem::shift
int shift
Definition: topology.h:826