Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/sound/soc-topology.h -- ALSA SoC Firmware Controls and DAPM |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments Inc. |
| 5 | * Copyright (C) 2015 Intel Corporation. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * Simple file API to load FW that includes mixers, coefficients, DAPM graphs, |
| 12 | * algorithms, equalisers, DAIs, widgets, FE caps, BE caps, codec link caps etc. |
| 13 | */ |
| 14 | |
| 15 | #ifndef __LINUX_SND_SOC_TPLG_H |
| 16 | #define __LINUX_SND_SOC_TPLG_H |
| 17 | |
| 18 | #include <sound/asoc.h> |
| 19 | #include <linux/list.h> |
| 20 | |
| 21 | struct firmware; |
| 22 | struct snd_kcontrol; |
| 23 | struct snd_soc_tplg_pcm_be; |
| 24 | struct snd_ctl_elem_value; |
| 25 | struct snd_ctl_elem_info; |
| 26 | struct snd_soc_dapm_widget; |
| 27 | struct snd_soc_component; |
| 28 | struct snd_soc_tplg_pcm_fe; |
| 29 | struct snd_soc_dapm_context; |
| 30 | struct snd_soc_card; |
Liam Girdwood | 294de6e | 2017-06-06 15:55:04 +0100 | [diff] [blame] | 31 | struct snd_kcontrol_new; |
| 32 | struct snd_soc_dai_link; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 33 | |
| 34 | /* object scan be loaded and unloaded in groups with identfying indexes */ |
| 35 | #define SND_SOC_TPLG_INDEX_ALL 0 /* ID that matches all FW objects */ |
| 36 | |
| 37 | /* dynamic object type */ |
| 38 | enum snd_soc_dobj_type { |
| 39 | SND_SOC_DOBJ_NONE = 0, /* object is not dynamic */ |
| 40 | SND_SOC_DOBJ_MIXER, |
| 41 | SND_SOC_DOBJ_ENUM, |
| 42 | SND_SOC_DOBJ_BYTES, |
| 43 | SND_SOC_DOBJ_PCM, |
| 44 | SND_SOC_DOBJ_DAI_LINK, |
| 45 | SND_SOC_DOBJ_CODEC_LINK, |
| 46 | SND_SOC_DOBJ_WIDGET, |
| 47 | }; |
| 48 | |
| 49 | /* dynamic control object */ |
| 50 | struct snd_soc_dobj_control { |
| 51 | struct snd_kcontrol *kcontrol; |
| 52 | char **dtexts; |
| 53 | unsigned long *dvalues; |
| 54 | }; |
| 55 | |
| 56 | /* dynamic widget object */ |
| 57 | struct snd_soc_dobj_widget { |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 58 | unsigned int kcontrol_type; /* kcontrol type: mixer, enum, bytes */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 59 | }; |
| 60 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 61 | /* generic dynamic object - all dynamic objects belong to this struct */ |
| 62 | struct snd_soc_dobj { |
| 63 | enum snd_soc_dobj_type type; |
| 64 | unsigned int index; /* objects can belong in different groups */ |
| 65 | struct list_head list; |
| 66 | struct snd_soc_tplg_ops *ops; |
| 67 | union { |
| 68 | struct snd_soc_dobj_control control; |
| 69 | struct snd_soc_dobj_widget widget; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 70 | }; |
| 71 | void *private; /* core does not touch this */ |
| 72 | }; |
| 73 | |
| 74 | /* |
| 75 | * Kcontrol operations - used to map handlers onto firmware based controls. |
| 76 | */ |
| 77 | struct snd_soc_tplg_kcontrol_ops { |
| 78 | u32 id; |
| 79 | int (*get)(struct snd_kcontrol *kcontrol, |
| 80 | struct snd_ctl_elem_value *ucontrol); |
| 81 | int (*put)(struct snd_kcontrol *kcontrol, |
| 82 | struct snd_ctl_elem_value *ucontrol); |
| 83 | int (*info)(struct snd_kcontrol *kcontrol, |
| 84 | struct snd_ctl_elem_info *uinfo); |
| 85 | }; |
| 86 | |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 87 | /* Bytes ext operations, for TLV byte controls */ |
| 88 | struct snd_soc_tplg_bytes_ext_ops { |
| 89 | u32 id; |
Mythri P K | a1e5e7e9 | 2015-11-09 23:20:00 +0530 | [diff] [blame] | 90 | int (*get)(struct snd_kcontrol *kcontrol, unsigned int __user *bytes, |
| 91 | unsigned int size); |
| 92 | int (*put)(struct snd_kcontrol *kcontrol, |
| 93 | const unsigned int __user *bytes, unsigned int size); |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 94 | }; |
| 95 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 96 | /* |
| 97 | * DAPM widget event handlers - used to map handlers onto widgets. |
| 98 | */ |
| 99 | struct snd_soc_tplg_widget_events { |
| 100 | u16 type; |
| 101 | int (*event_handler)(struct snd_soc_dapm_widget *w, |
| 102 | struct snd_kcontrol *k, int event); |
| 103 | }; |
| 104 | |
| 105 | /* |
| 106 | * Public API - Used by component drivers to load and unload dynamic objects |
| 107 | * and their resources. |
| 108 | */ |
| 109 | struct snd_soc_tplg_ops { |
| 110 | |
| 111 | /* external kcontrol init - used for any driver specific init */ |
| 112 | int (*control_load)(struct snd_soc_component *, |
| 113 | struct snd_kcontrol_new *, struct snd_soc_tplg_ctl_hdr *); |
| 114 | int (*control_unload)(struct snd_soc_component *, |
| 115 | struct snd_soc_dobj *); |
| 116 | |
| 117 | /* external widget init - used for any driver specific init */ |
| 118 | int (*widget_load)(struct snd_soc_component *, |
| 119 | struct snd_soc_dapm_widget *, |
| 120 | struct snd_soc_tplg_dapm_widget *); |
Liam Girdwood | ebd259d | 2017-06-09 15:43:23 +0100 | [diff] [blame] | 121 | int (*widget_ready)(struct snd_soc_component *, |
| 122 | struct snd_soc_dapm_widget *, |
| 123 | struct snd_soc_tplg_dapm_widget *); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 124 | int (*widget_unload)(struct snd_soc_component *, |
| 125 | struct snd_soc_dobj *); |
| 126 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 127 | /* FE DAI - used for any driver specific init */ |
| 128 | int (*dai_load)(struct snd_soc_component *, |
| 129 | struct snd_soc_dai_driver *dai_drv); |
| 130 | int (*dai_unload)(struct snd_soc_component *, |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 131 | struct snd_soc_dobj *); |
| 132 | |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 133 | /* DAI link - used for any driver specific init */ |
| 134 | int (*link_load)(struct snd_soc_component *, |
| 135 | struct snd_soc_dai_link *link); |
| 136 | int (*link_unload)(struct snd_soc_component *, |
| 137 | struct snd_soc_dobj *); |
| 138 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 139 | /* callback to handle vendor bespoke data */ |
| 140 | int (*vendor_load)(struct snd_soc_component *, |
| 141 | struct snd_soc_tplg_hdr *); |
| 142 | int (*vendor_unload)(struct snd_soc_component *, |
| 143 | struct snd_soc_tplg_hdr *); |
| 144 | |
| 145 | /* completion - called at completion of firmware loading */ |
| 146 | void (*complete)(struct snd_soc_component *); |
| 147 | |
| 148 | /* manifest - optional to inform component of manifest */ |
| 149 | int (*manifest)(struct snd_soc_component *, |
| 150 | struct snd_soc_tplg_manifest *); |
| 151 | |
Mengdong Lin | 88a17d8 | 2015-08-18 18:11:51 +0800 | [diff] [blame] | 152 | /* vendor specific kcontrol handlers available for binding */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 153 | const struct snd_soc_tplg_kcontrol_ops *io_ops; |
| 154 | int io_ops_count; |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 155 | |
| 156 | /* vendor specific bytes ext handlers available for binding */ |
| 157 | const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops; |
| 158 | int bytes_ext_ops_count; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 159 | }; |
| 160 | |
Mark Brown | 78b50f3 | 2015-08-15 08:24:20 -0700 | [diff] [blame] | 161 | #ifdef CONFIG_SND_SOC_TOPOLOGY |
| 162 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 163 | /* gets a pointer to data from the firmware block header */ |
| 164 | static inline const void *snd_soc_tplg_get_data(struct snd_soc_tplg_hdr *hdr) |
| 165 | { |
| 166 | const void *ptr = hdr; |
| 167 | |
| 168 | return ptr + sizeof(*hdr); |
| 169 | } |
| 170 | |
| 171 | /* Dynamic Object loading and removal for component drivers */ |
| 172 | int snd_soc_tplg_component_load(struct snd_soc_component *comp, |
| 173 | struct snd_soc_tplg_ops *ops, const struct firmware *fw, |
| 174 | u32 index); |
| 175 | int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index); |
| 176 | |
| 177 | /* Widget removal - widgets also removed wth component API */ |
| 178 | void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w); |
| 179 | void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm, |
| 180 | u32 index); |
| 181 | |
| 182 | /* Binds event handlers to dynamic widgets */ |
| 183 | int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w, |
| 184 | const struct snd_soc_tplg_widget_events *events, int num_events, |
| 185 | u16 event_type); |
| 186 | |
Mark Brown | 78b50f3 | 2015-08-15 08:24:20 -0700 | [diff] [blame] | 187 | #else |
| 188 | |
| 189 | static inline int snd_soc_tplg_component_remove(struct snd_soc_component *comp, |
| 190 | u32 index) |
| 191 | { |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | #endif |
| 196 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 197 | #endif |