Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * soc-topology.c -- ALSA SoC Topology |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments Inc. |
| 5 | * Copyright (C) 2015 Intel Corporation. |
| 6 | * |
| 7 | * Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com> |
| 8 | * K, Mythri P <mythri.p.k@intel.com> |
| 9 | * Prusty, Subhransu S <subhransu.s.prusty@intel.com> |
| 10 | * B, Jayachandran <jayachandran.b@intel.com> |
| 11 | * Abdullah, Omair M <omair.m.abdullah@intel.com> |
| 12 | * Jin, Yao <yao.jin@intel.com> |
| 13 | * Lin, Mengdong <mengdong.lin@intel.com> |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or modify it |
| 16 | * under the terms of the GNU General Public License as published by the |
| 17 | * Free Software Foundation; either version 2 of the License, or (at your |
| 18 | * option) any later version. |
| 19 | * |
| 20 | * Add support to read audio firmware topology alongside firmware text. The |
| 21 | * topology data can contain kcontrols, DAPM graphs, widgets, DAIs, DAI links, |
| 22 | * equalizers, firmware, coefficients etc. |
| 23 | * |
| 24 | * This file only manages the core ALSA and ASoC components, all other bespoke |
| 25 | * firmware topology data is passed to component drivers for bespoke handling. |
| 26 | */ |
| 27 | |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/export.h> |
| 30 | #include <linux/list.h> |
| 31 | #include <linux/firmware.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <sound/soc.h> |
| 34 | #include <sound/soc-dapm.h> |
| 35 | #include <sound/soc-topology.h> |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 36 | #include <sound/tlv.h> |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * We make several passes over the data (since it wont necessarily be ordered) |
| 40 | * and process objects in the following order. This guarantees the component |
| 41 | * drivers will be ready with any vendor data before the mixers and DAPM objects |
| 42 | * are loaded (that may make use of the vendor data). |
| 43 | */ |
| 44 | #define SOC_TPLG_PASS_MANIFEST 0 |
| 45 | #define SOC_TPLG_PASS_VENDOR 1 |
| 46 | #define SOC_TPLG_PASS_MIXER 2 |
| 47 | #define SOC_TPLG_PASS_WIDGET 3 |
Mengdong Lin | 1a8e7fa | 2015-08-10 22:48:30 +0800 | [diff] [blame] | 48 | #define SOC_TPLG_PASS_PCM_DAI 4 |
| 49 | #define SOC_TPLG_PASS_GRAPH 5 |
| 50 | #define SOC_TPLG_PASS_PINS 6 |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 51 | #define SOC_TPLG_PASS_BE_DAI 7 |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 52 | #define SOC_TPLG_PASS_LINK 8 |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 53 | |
| 54 | #define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 55 | #define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 56 | |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 57 | /* |
| 58 | * Old version of ABI structs, supported for backward compatibility. |
| 59 | */ |
| 60 | |
| 61 | /* Manifest v4 */ |
| 62 | struct snd_soc_tplg_manifest_v4 { |
| 63 | __le32 size; /* in bytes of this structure */ |
| 64 | __le32 control_elems; /* number of control elements */ |
| 65 | __le32 widget_elems; /* number of widget elements */ |
| 66 | __le32 graph_elems; /* number of graph elements */ |
| 67 | __le32 pcm_elems; /* number of PCM elements */ |
| 68 | __le32 dai_link_elems; /* number of DAI link elements */ |
| 69 | struct snd_soc_tplg_private priv; |
| 70 | } __packed; |
| 71 | |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 72 | /* Stream Capabilities v4 */ |
| 73 | struct snd_soc_tplg_stream_caps_v4 { |
| 74 | __le32 size; /* in bytes of this structure */ |
| 75 | char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; |
| 76 | __le64 formats; /* supported formats SNDRV_PCM_FMTBIT_* */ |
| 77 | __le32 rates; /* supported rates SNDRV_PCM_RATE_* */ |
| 78 | __le32 rate_min; /* min rate */ |
| 79 | __le32 rate_max; /* max rate */ |
| 80 | __le32 channels_min; /* min channels */ |
| 81 | __le32 channels_max; /* max channels */ |
| 82 | __le32 periods_min; /* min number of periods */ |
| 83 | __le32 periods_max; /* max number of periods */ |
| 84 | __le32 period_size_min; /* min period size bytes */ |
| 85 | __le32 period_size_max; /* max period size bytes */ |
| 86 | __le32 buffer_size_min; /* min buffer size bytes */ |
| 87 | __le32 buffer_size_max; /* max buffer size bytes */ |
| 88 | } __packed; |
| 89 | |
| 90 | /* PCM v4 */ |
| 91 | struct snd_soc_tplg_pcm_v4 { |
| 92 | __le32 size; /* in bytes of this structure */ |
| 93 | char pcm_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; |
| 94 | char dai_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; |
| 95 | __le32 pcm_id; /* unique ID - used to match with DAI link */ |
| 96 | __le32 dai_id; /* unique ID - used to match */ |
| 97 | __le32 playback; /* supports playback mode */ |
| 98 | __le32 capture; /* supports capture mode */ |
| 99 | __le32 compress; /* 1 = compressed; 0 = PCM */ |
| 100 | struct snd_soc_tplg_stream stream[SND_SOC_TPLG_STREAM_CONFIG_MAX]; /* for DAI link */ |
| 101 | __le32 num_streams; /* number of streams */ |
| 102 | struct snd_soc_tplg_stream_caps_v4 caps[2]; /* playback and capture for DAI */ |
| 103 | } __packed; |
| 104 | |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 105 | /* Physical link config v4 */ |
| 106 | struct snd_soc_tplg_link_config_v4 { |
| 107 | __le32 size; /* in bytes of this structure */ |
| 108 | __le32 id; /* unique ID - used to match */ |
| 109 | struct snd_soc_tplg_stream stream[SND_SOC_TPLG_STREAM_CONFIG_MAX]; /* supported configs playback and captrure */ |
| 110 | __le32 num_streams; /* number of streams */ |
| 111 | } __packed; |
| 112 | |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 113 | /* topology context */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 114 | struct soc_tplg { |
| 115 | const struct firmware *fw; |
| 116 | |
| 117 | /* runtime FW parsing */ |
| 118 | const u8 *pos; /* read postion */ |
| 119 | const u8 *hdr_pos; /* header position */ |
| 120 | unsigned int pass; /* pass number */ |
| 121 | |
| 122 | /* component caller */ |
| 123 | struct device *dev; |
| 124 | struct snd_soc_component *comp; |
| 125 | u32 index; /* current block index */ |
| 126 | u32 req_index; /* required index, only loaded/free matching blocks */ |
| 127 | |
Mengdong Lin | 88a17d8 | 2015-08-18 18:11:51 +0800 | [diff] [blame] | 128 | /* vendor specific kcontrol operations */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 129 | const struct snd_soc_tplg_kcontrol_ops *io_ops; |
| 130 | int io_ops_count; |
| 131 | |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 132 | /* vendor specific bytes ext handlers, for TLV bytes controls */ |
| 133 | const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops; |
| 134 | int bytes_ext_ops_count; |
| 135 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 136 | /* optional fw loading callbacks to component drivers */ |
| 137 | struct snd_soc_tplg_ops *ops; |
| 138 | }; |
| 139 | |
| 140 | static int soc_tplg_process_headers(struct soc_tplg *tplg); |
| 141 | static void soc_tplg_complete(struct soc_tplg *tplg); |
| 142 | struct snd_soc_dapm_widget * |
| 143 | snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm, |
| 144 | const struct snd_soc_dapm_widget *widget); |
| 145 | struct snd_soc_dapm_widget * |
| 146 | snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm, |
| 147 | const struct snd_soc_dapm_widget *widget); |
| 148 | |
| 149 | /* check we dont overflow the data for this control chunk */ |
| 150 | static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size, |
| 151 | unsigned int count, size_t bytes, const char *elem_type) |
| 152 | { |
| 153 | const u8 *end = tplg->pos + elem_size * count; |
| 154 | |
| 155 | if (end > tplg->fw->data + tplg->fw->size) { |
| 156 | dev_err(tplg->dev, "ASoC: %s overflow end of data\n", |
| 157 | elem_type); |
| 158 | return -EINVAL; |
| 159 | } |
| 160 | |
| 161 | /* check there is enough room in chunk for control. |
| 162 | extra bytes at the end of control are for vendor data here */ |
| 163 | if (elem_size * count > bytes) { |
| 164 | dev_err(tplg->dev, |
| 165 | "ASoC: %s count %d of size %zu is bigger than chunk %zu\n", |
| 166 | elem_type, count, elem_size, bytes); |
| 167 | return -EINVAL; |
| 168 | } |
| 169 | |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static inline int soc_tplg_is_eof(struct soc_tplg *tplg) |
| 174 | { |
| 175 | const u8 *end = tplg->hdr_pos; |
| 176 | |
| 177 | if (end >= tplg->fw->data + tplg->fw->size) |
| 178 | return 1; |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg) |
| 183 | { |
| 184 | return (unsigned long)(tplg->hdr_pos - tplg->fw->data); |
| 185 | } |
| 186 | |
| 187 | static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg) |
| 188 | { |
| 189 | return (unsigned long)(tplg->pos - tplg->fw->data); |
| 190 | } |
| 191 | |
| 192 | /* mapping of Kcontrol types and associated operations. */ |
| 193 | static const struct snd_soc_tplg_kcontrol_ops io_ops[] = { |
| 194 | {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw, |
| 195 | snd_soc_put_volsw, snd_soc_info_volsw}, |
| 196 | {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx, |
| 197 | snd_soc_put_volsw_sx, NULL}, |
| 198 | {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double, |
| 199 | snd_soc_put_enum_double, snd_soc_info_enum_double}, |
| 200 | {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double, |
| 201 | snd_soc_put_enum_double, NULL}, |
| 202 | {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get, |
| 203 | snd_soc_bytes_put, snd_soc_bytes_info}, |
| 204 | {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range, |
| 205 | snd_soc_put_volsw_range, snd_soc_info_volsw_range}, |
| 206 | {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx, |
| 207 | snd_soc_put_xr_sx, snd_soc_info_xr_sx}, |
| 208 | {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe, |
| 209 | snd_soc_put_strobe, NULL}, |
| 210 | {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw, |
Jeeja KP | 2c57d478 | 2015-07-14 13:10:47 +0530 | [diff] [blame] | 211 | snd_soc_dapm_put_volsw, snd_soc_info_volsw}, |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 212 | {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double, |
| 213 | snd_soc_dapm_put_enum_double, snd_soc_info_enum_double}, |
| 214 | {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double, |
| 215 | snd_soc_dapm_put_enum_double, NULL}, |
| 216 | {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double, |
| 217 | snd_soc_dapm_put_enum_double, NULL}, |
| 218 | {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch, |
| 219 | snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch}, |
| 220 | }; |
| 221 | |
| 222 | struct soc_tplg_map { |
| 223 | int uid; |
| 224 | int kid; |
| 225 | }; |
| 226 | |
| 227 | /* mapping of widget types from UAPI IDs to kernel IDs */ |
| 228 | static const struct soc_tplg_map dapm_map[] = { |
| 229 | {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input}, |
| 230 | {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output}, |
| 231 | {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux}, |
| 232 | {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer}, |
| 233 | {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga}, |
| 234 | {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv}, |
| 235 | {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc}, |
| 236 | {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac}, |
| 237 | {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch}, |
| 238 | {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre}, |
| 239 | {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post}, |
| 240 | {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in}, |
| 241 | {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out}, |
| 242 | {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in}, |
| 243 | {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out}, |
| 244 | {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link}, |
| 245 | }; |
| 246 | |
| 247 | static int tplc_chan_get_reg(struct soc_tplg *tplg, |
| 248 | struct snd_soc_tplg_channel *chan, int map) |
| 249 | { |
| 250 | int i; |
| 251 | |
| 252 | for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) { |
| 253 | if (chan[i].id == map) |
| 254 | return chan[i].reg; |
| 255 | } |
| 256 | |
| 257 | return -EINVAL; |
| 258 | } |
| 259 | |
| 260 | static int tplc_chan_get_shift(struct soc_tplg *tplg, |
| 261 | struct snd_soc_tplg_channel *chan, int map) |
| 262 | { |
| 263 | int i; |
| 264 | |
| 265 | for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) { |
| 266 | if (chan[i].id == map) |
| 267 | return chan[i].shift; |
| 268 | } |
| 269 | |
| 270 | return -EINVAL; |
| 271 | } |
| 272 | |
| 273 | static int get_widget_id(int tplg_type) |
| 274 | { |
| 275 | int i; |
| 276 | |
| 277 | for (i = 0; i < ARRAY_SIZE(dapm_map); i++) { |
| 278 | if (tplg_type == dapm_map[i].uid) |
| 279 | return dapm_map[i].kid; |
| 280 | } |
| 281 | |
| 282 | return -EINVAL; |
| 283 | } |
| 284 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 285 | static inline void soc_bind_err(struct soc_tplg *tplg, |
| 286 | struct snd_soc_tplg_ctl_hdr *hdr, int index) |
| 287 | { |
| 288 | dev_err(tplg->dev, |
| 289 | "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n", |
| 290 | hdr->ops.get, hdr->ops.put, hdr->ops.info, index, |
| 291 | soc_tplg_get_offset(tplg)); |
| 292 | } |
| 293 | |
| 294 | static inline void soc_control_err(struct soc_tplg *tplg, |
| 295 | struct snd_soc_tplg_ctl_hdr *hdr, const char *name) |
| 296 | { |
| 297 | dev_err(tplg->dev, |
| 298 | "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n", |
| 299 | name, hdr->ops.get, hdr->ops.put, hdr->ops.info, |
| 300 | soc_tplg_get_offset(tplg)); |
| 301 | } |
| 302 | |
| 303 | /* pass vendor data to component driver for processing */ |
| 304 | static int soc_tplg_vendor_load_(struct soc_tplg *tplg, |
| 305 | struct snd_soc_tplg_hdr *hdr) |
| 306 | { |
| 307 | int ret = 0; |
| 308 | |
| 309 | if (tplg->comp && tplg->ops && tplg->ops->vendor_load) |
| 310 | ret = tplg->ops->vendor_load(tplg->comp, hdr); |
| 311 | else { |
| 312 | dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n", |
| 313 | hdr->vendor_type); |
| 314 | return -EINVAL; |
| 315 | } |
| 316 | |
| 317 | if (ret < 0) |
| 318 | dev_err(tplg->dev, |
| 319 | "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n", |
| 320 | soc_tplg_get_hdr_offset(tplg), |
| 321 | soc_tplg_get_hdr_offset(tplg), |
| 322 | hdr->type, hdr->vendor_type); |
| 323 | return ret; |
| 324 | } |
| 325 | |
| 326 | /* pass vendor data to component driver for processing */ |
| 327 | static int soc_tplg_vendor_load(struct soc_tplg *tplg, |
| 328 | struct snd_soc_tplg_hdr *hdr) |
| 329 | { |
| 330 | if (tplg->pass != SOC_TPLG_PASS_VENDOR) |
| 331 | return 0; |
| 332 | |
| 333 | return soc_tplg_vendor_load_(tplg, hdr); |
| 334 | } |
| 335 | |
| 336 | /* optionally pass new dynamic widget to component driver. This is mainly for |
| 337 | * external widgets where we can assign private data/ops */ |
| 338 | static int soc_tplg_widget_load(struct soc_tplg *tplg, |
| 339 | struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w) |
| 340 | { |
| 341 | if (tplg->comp && tplg->ops && tplg->ops->widget_load) |
| 342 | return tplg->ops->widget_load(tplg->comp, w, tplg_w); |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 347 | /* pass DAI configurations to component driver for extra intialization */ |
| 348 | static int soc_tplg_dai_load(struct soc_tplg *tplg, |
| 349 | struct snd_soc_dai_driver *dai_drv) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 350 | { |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 351 | if (tplg->comp && tplg->ops && tplg->ops->dai_load) |
| 352 | return tplg->ops->dai_load(tplg->comp, dai_drv); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 353 | |
| 354 | return 0; |
| 355 | } |
| 356 | |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 357 | /* pass link configurations to component driver for extra intialization */ |
| 358 | static int soc_tplg_dai_link_load(struct soc_tplg *tplg, |
| 359 | struct snd_soc_dai_link *link) |
| 360 | { |
| 361 | if (tplg->comp && tplg->ops && tplg->ops->link_load) |
| 362 | return tplg->ops->link_load(tplg->comp, link); |
| 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 367 | /* tell the component driver that all firmware has been loaded in this request */ |
| 368 | static void soc_tplg_complete(struct soc_tplg *tplg) |
| 369 | { |
| 370 | if (tplg->comp && tplg->ops && tplg->ops->complete) |
| 371 | tplg->ops->complete(tplg->comp); |
| 372 | } |
| 373 | |
| 374 | /* add a dynamic kcontrol */ |
| 375 | static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev, |
| 376 | const struct snd_kcontrol_new *control_new, const char *prefix, |
| 377 | void *data, struct snd_kcontrol **kcontrol) |
| 378 | { |
| 379 | int err; |
| 380 | |
| 381 | *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix); |
| 382 | if (*kcontrol == NULL) { |
| 383 | dev_err(dev, "ASoC: Failed to create new kcontrol %s\n", |
| 384 | control_new->name); |
| 385 | return -ENOMEM; |
| 386 | } |
| 387 | |
| 388 | err = snd_ctl_add(card, *kcontrol); |
| 389 | if (err < 0) { |
| 390 | dev_err(dev, "ASoC: Failed to add %s: %d\n", |
| 391 | control_new->name, err); |
| 392 | return err; |
| 393 | } |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | /* add a dynamic kcontrol for component driver */ |
| 399 | static int soc_tplg_add_kcontrol(struct soc_tplg *tplg, |
| 400 | struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol) |
| 401 | { |
| 402 | struct snd_soc_component *comp = tplg->comp; |
| 403 | |
| 404 | return soc_tplg_add_dcontrol(comp->card->snd_card, |
| 405 | comp->dev, k, NULL, comp, kcontrol); |
| 406 | } |
| 407 | |
| 408 | /* remove a mixer kcontrol */ |
| 409 | static void remove_mixer(struct snd_soc_component *comp, |
| 410 | struct snd_soc_dobj *dobj, int pass) |
| 411 | { |
| 412 | struct snd_card *card = comp->card->snd_card; |
| 413 | struct soc_mixer_control *sm = |
| 414 | container_of(dobj, struct soc_mixer_control, dobj); |
| 415 | const unsigned int *p = NULL; |
| 416 | |
| 417 | if (pass != SOC_TPLG_PASS_MIXER) |
| 418 | return; |
| 419 | |
| 420 | if (dobj->ops && dobj->ops->control_unload) |
| 421 | dobj->ops->control_unload(comp, dobj); |
| 422 | |
| 423 | if (sm->dobj.control.kcontrol->tlv.p) |
| 424 | p = sm->dobj.control.kcontrol->tlv.p; |
| 425 | snd_ctl_remove(card, sm->dobj.control.kcontrol); |
| 426 | list_del(&sm->dobj.list); |
| 427 | kfree(sm); |
| 428 | kfree(p); |
| 429 | } |
| 430 | |
| 431 | /* remove an enum kcontrol */ |
| 432 | static void remove_enum(struct snd_soc_component *comp, |
| 433 | struct snd_soc_dobj *dobj, int pass) |
| 434 | { |
| 435 | struct snd_card *card = comp->card->snd_card; |
| 436 | struct soc_enum *se = container_of(dobj, struct soc_enum, dobj); |
| 437 | int i; |
| 438 | |
| 439 | if (pass != SOC_TPLG_PASS_MIXER) |
| 440 | return; |
| 441 | |
| 442 | if (dobj->ops && dobj->ops->control_unload) |
| 443 | dobj->ops->control_unload(comp, dobj); |
| 444 | |
| 445 | snd_ctl_remove(card, se->dobj.control.kcontrol); |
| 446 | list_del(&se->dobj.list); |
| 447 | |
| 448 | kfree(se->dobj.control.dvalues); |
| 449 | for (i = 0; i < se->items; i++) |
| 450 | kfree(se->dobj.control.dtexts[i]); |
| 451 | kfree(se); |
| 452 | } |
| 453 | |
| 454 | /* remove a byte kcontrol */ |
| 455 | static void remove_bytes(struct snd_soc_component *comp, |
| 456 | struct snd_soc_dobj *dobj, int pass) |
| 457 | { |
| 458 | struct snd_card *card = comp->card->snd_card; |
| 459 | struct soc_bytes_ext *sb = |
| 460 | container_of(dobj, struct soc_bytes_ext, dobj); |
| 461 | |
| 462 | if (pass != SOC_TPLG_PASS_MIXER) |
| 463 | return; |
| 464 | |
| 465 | if (dobj->ops && dobj->ops->control_unload) |
| 466 | dobj->ops->control_unload(comp, dobj); |
| 467 | |
| 468 | snd_ctl_remove(card, sb->dobj.control.kcontrol); |
| 469 | list_del(&sb->dobj.list); |
| 470 | kfree(sb); |
| 471 | } |
| 472 | |
| 473 | /* remove a widget and it's kcontrols - routes must be removed first */ |
| 474 | static void remove_widget(struct snd_soc_component *comp, |
| 475 | struct snd_soc_dobj *dobj, int pass) |
| 476 | { |
| 477 | struct snd_card *card = comp->card->snd_card; |
| 478 | struct snd_soc_dapm_widget *w = |
| 479 | container_of(dobj, struct snd_soc_dapm_widget, dobj); |
| 480 | int i; |
| 481 | |
| 482 | if (pass != SOC_TPLG_PASS_WIDGET) |
| 483 | return; |
| 484 | |
| 485 | if (dobj->ops && dobj->ops->widget_unload) |
| 486 | dobj->ops->widget_unload(comp, dobj); |
| 487 | |
| 488 | /* |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 489 | * Dynamic Widgets either have 1..N enum kcontrols or mixers. |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 490 | * The enum may either have an array of values or strings. |
| 491 | */ |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 492 | if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) { |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 493 | /* enumerated widget mixer */ |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 494 | for (i = 0; i < w->num_kcontrols; i++) { |
| 495 | struct snd_kcontrol *kcontrol = w->kcontrols[i]; |
| 496 | struct soc_enum *se = |
| 497 | (struct soc_enum *)kcontrol->private_value; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 498 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 499 | snd_ctl_remove(card, kcontrol); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 500 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 501 | kfree(se->dobj.control.dvalues); |
| 502 | for (i = 0; i < se->items; i++) |
| 503 | kfree(se->dobj.control.dtexts[i]); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 504 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 505 | kfree(se); |
| 506 | } |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 507 | kfree(w->kcontrol_news); |
| 508 | } else { |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 509 | /* volume mixer or bytes controls */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 510 | for (i = 0; i < w->num_kcontrols; i++) { |
| 511 | struct snd_kcontrol *kcontrol = w->kcontrols[i]; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 512 | |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 513 | if (dobj->widget.kcontrol_type |
| 514 | == SND_SOC_TPLG_TYPE_MIXER) |
| 515 | kfree(kcontrol->tlv.p); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 516 | |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 517 | snd_ctl_remove(card, kcontrol); |
| 518 | |
| 519 | /* Private value is used as struct soc_mixer_control |
| 520 | * for volume mixers or soc_bytes_ext for bytes |
| 521 | * controls. |
| 522 | */ |
| 523 | kfree((void *)kcontrol->private_value); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 524 | } |
| 525 | kfree(w->kcontrol_news); |
| 526 | } |
| 527 | /* widget w is freed by soc-dapm.c */ |
| 528 | } |
| 529 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 530 | /* remove DAI configurations */ |
| 531 | static void remove_dai(struct snd_soc_component *comp, |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 532 | struct snd_soc_dobj *dobj, int pass) |
| 533 | { |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 534 | struct snd_soc_dai_driver *dai_drv = |
| 535 | container_of(dobj, struct snd_soc_dai_driver, dobj); |
| 536 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 537 | if (pass != SOC_TPLG_PASS_PCM_DAI) |
| 538 | return; |
| 539 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 540 | if (dobj->ops && dobj->ops->dai_unload) |
| 541 | dobj->ops->dai_unload(comp, dobj); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 542 | |
Mengdong Lin | 8f27c4a | 2016-11-03 01:02:59 +0800 | [diff] [blame] | 543 | kfree(dai_drv->name); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 544 | list_del(&dobj->list); |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 545 | kfree(dai_drv); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 546 | } |
| 547 | |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 548 | /* remove link configurations */ |
| 549 | static void remove_link(struct snd_soc_component *comp, |
| 550 | struct snd_soc_dobj *dobj, int pass) |
| 551 | { |
| 552 | struct snd_soc_dai_link *link = |
| 553 | container_of(dobj, struct snd_soc_dai_link, dobj); |
| 554 | |
| 555 | if (pass != SOC_TPLG_PASS_PCM_DAI) |
| 556 | return; |
| 557 | |
| 558 | if (dobj->ops && dobj->ops->link_unload) |
| 559 | dobj->ops->link_unload(comp, dobj); |
| 560 | |
Mengdong Lin | 8f27c4a | 2016-11-03 01:02:59 +0800 | [diff] [blame] | 561 | kfree(link->name); |
| 562 | kfree(link->stream_name); |
| 563 | kfree(link->cpu_dai_name); |
| 564 | |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 565 | list_del(&dobj->list); |
| 566 | snd_soc_remove_dai_link(comp->card, link); |
| 567 | kfree(link); |
| 568 | } |
| 569 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 570 | /* bind a kcontrol to it's IO handlers */ |
| 571 | static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr, |
| 572 | struct snd_kcontrol_new *k, |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 573 | const struct soc_tplg *tplg) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 574 | { |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 575 | const struct snd_soc_tplg_kcontrol_ops *ops; |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 576 | const struct snd_soc_tplg_bytes_ext_ops *ext_ops; |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 577 | int num_ops, i; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 578 | |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 579 | if (hdr->ops.info == SND_SOC_TPLG_CTL_BYTES |
| 580 | && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER |
| 581 | && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE |
| 582 | && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 583 | struct soc_bytes_ext *sbe; |
| 584 | struct snd_soc_tplg_bytes_control *be; |
| 585 | |
| 586 | sbe = (struct soc_bytes_ext *)k->private_value; |
| 587 | be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr); |
| 588 | |
| 589 | /* TLV bytes controls need standard kcontrol info handler, |
| 590 | * TLV callback and extended put/get handlers. |
| 591 | */ |
Omair M Abdullah | f4be978 | 2015-11-09 23:20:01 +0530 | [diff] [blame] | 592 | k->info = snd_soc_bytes_info_ext; |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 593 | k->tlv.c = snd_soc_bytes_tlv_callback; |
| 594 | |
| 595 | ext_ops = tplg->bytes_ext_ops; |
| 596 | num_ops = tplg->bytes_ext_ops_count; |
| 597 | for (i = 0; i < num_ops; i++) { |
| 598 | if (!sbe->put && ext_ops[i].id == be->ext_ops.put) |
| 599 | sbe->put = ext_ops[i].put; |
| 600 | if (!sbe->get && ext_ops[i].id == be->ext_ops.get) |
| 601 | sbe->get = ext_ops[i].get; |
| 602 | } |
| 603 | |
| 604 | if (sbe->put && sbe->get) |
| 605 | return 0; |
| 606 | else |
| 607 | return -EINVAL; |
| 608 | } |
| 609 | |
Mengdong Lin | 88a17d8 | 2015-08-18 18:11:51 +0800 | [diff] [blame] | 610 | /* try and map vendor specific kcontrol handlers first */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 611 | ops = tplg->io_ops; |
| 612 | num_ops = tplg->io_ops_count; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 613 | for (i = 0; i < num_ops; i++) { |
| 614 | |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 615 | if (k->put == NULL && ops[i].id == hdr->ops.put) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 616 | k->put = ops[i].put; |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 617 | if (k->get == NULL && ops[i].id == hdr->ops.get) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 618 | k->get = ops[i].get; |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 619 | if (k->info == NULL && ops[i].id == hdr->ops.info) |
| 620 | k->info = ops[i].info; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 621 | } |
| 622 | |
Mengdong Lin | 88a17d8 | 2015-08-18 18:11:51 +0800 | [diff] [blame] | 623 | /* vendor specific handlers found ? */ |
| 624 | if (k->put && k->get && k->info) |
| 625 | return 0; |
| 626 | |
| 627 | /* none found so try standard kcontrol handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 628 | ops = io_ops; |
| 629 | num_ops = ARRAY_SIZE(io_ops); |
Mengdong Lin | 88a17d8 | 2015-08-18 18:11:51 +0800 | [diff] [blame] | 630 | for (i = 0; i < num_ops; i++) { |
| 631 | |
| 632 | if (k->put == NULL && ops[i].id == hdr->ops.put) |
| 633 | k->put = ops[i].put; |
| 634 | if (k->get == NULL && ops[i].id == hdr->ops.get) |
| 635 | k->get = ops[i].get; |
| 636 | if (k->info == NULL && ops[i].id == hdr->ops.info) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 637 | k->info = ops[i].info; |
| 638 | } |
| 639 | |
| 640 | /* standard handlers found ? */ |
| 641 | if (k->put && k->get && k->info) |
| 642 | return 0; |
| 643 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 644 | /* nothing to bind */ |
| 645 | return -EINVAL; |
| 646 | } |
| 647 | |
| 648 | /* bind a widgets to it's evnt handlers */ |
| 649 | int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w, |
| 650 | const struct snd_soc_tplg_widget_events *events, |
| 651 | int num_events, u16 event_type) |
| 652 | { |
| 653 | int i; |
| 654 | |
| 655 | w->event = NULL; |
| 656 | |
| 657 | for (i = 0; i < num_events; i++) { |
| 658 | if (event_type == events[i].type) { |
| 659 | |
| 660 | /* found - so assign event */ |
| 661 | w->event = events[i].event_handler; |
| 662 | return 0; |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | /* not found */ |
| 667 | return -EINVAL; |
| 668 | } |
| 669 | EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event); |
| 670 | |
| 671 | /* optionally pass new dynamic kcontrol to component driver. */ |
| 672 | static int soc_tplg_init_kcontrol(struct soc_tplg *tplg, |
| 673 | struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr) |
| 674 | { |
| 675 | if (tplg->comp && tplg->ops && tplg->ops->control_load) |
| 676 | return tplg->ops->control_load(tplg->comp, k, hdr); |
| 677 | |
| 678 | return 0; |
| 679 | } |
| 680 | |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 681 | |
| 682 | static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg, |
| 683 | struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 684 | { |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 685 | unsigned int item_len = 2 * sizeof(unsigned int); |
| 686 | unsigned int *p; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 687 | |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 688 | p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL); |
| 689 | if (!p) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 690 | return -ENOMEM; |
| 691 | |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 692 | p[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 693 | p[1] = item_len; |
| 694 | p[2] = scale->min; |
| 695 | p[3] = (scale->step & TLV_DB_SCALE_MASK) |
| 696 | | (scale->mute ? TLV_DB_SCALE_MUTE : 0); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 697 | |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 698 | kc->tlv.p = (void *)p; |
| 699 | return 0; |
| 700 | } |
| 701 | |
| 702 | static int soc_tplg_create_tlv(struct soc_tplg *tplg, |
| 703 | struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc) |
| 704 | { |
| 705 | struct snd_soc_tplg_ctl_tlv *tplg_tlv; |
| 706 | |
| 707 | if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE)) |
| 708 | return 0; |
| 709 | |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 710 | if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) { |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 711 | tplg_tlv = &tc->tlv; |
| 712 | switch (tplg_tlv->type) { |
| 713 | case SNDRV_CTL_TLVT_DB_SCALE: |
| 714 | return soc_tplg_create_tlv_db_scale(tplg, kc, |
| 715 | &tplg_tlv->scale); |
| 716 | |
| 717 | /* TODO: add support for other TLV types */ |
| 718 | default: |
| 719 | dev_dbg(tplg->dev, "Unsupported TLV type %d\n", |
| 720 | tplg_tlv->type); |
| 721 | return -EINVAL; |
| 722 | } |
| 723 | } |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 724 | |
| 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | static inline void soc_tplg_free_tlv(struct soc_tplg *tplg, |
| 729 | struct snd_kcontrol_new *kc) |
| 730 | { |
| 731 | kfree(kc->tlv.p); |
| 732 | } |
| 733 | |
| 734 | static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count, |
| 735 | size_t size) |
| 736 | { |
| 737 | struct snd_soc_tplg_bytes_control *be; |
| 738 | struct soc_bytes_ext *sbe; |
| 739 | struct snd_kcontrol_new kc; |
| 740 | int i, err; |
| 741 | |
| 742 | if (soc_tplg_check_elem_count(tplg, |
| 743 | sizeof(struct snd_soc_tplg_bytes_control), count, |
| 744 | size, "mixer bytes")) { |
| 745 | dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n", |
| 746 | count); |
| 747 | return -EINVAL; |
| 748 | } |
| 749 | |
| 750 | for (i = 0; i < count; i++) { |
| 751 | be = (struct snd_soc_tplg_bytes_control *)tplg->pos; |
| 752 | |
| 753 | /* validate kcontrol */ |
| 754 | if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 755 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 756 | return -EINVAL; |
| 757 | |
| 758 | sbe = kzalloc(sizeof(*sbe), GFP_KERNEL); |
| 759 | if (sbe == NULL) |
| 760 | return -ENOMEM; |
| 761 | |
| 762 | tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) + |
| 763 | be->priv.size); |
| 764 | |
| 765 | dev_dbg(tplg->dev, |
| 766 | "ASoC: adding bytes kcontrol %s with access 0x%x\n", |
| 767 | be->hdr.name, be->hdr.access); |
| 768 | |
| 769 | memset(&kc, 0, sizeof(kc)); |
| 770 | kc.name = be->hdr.name; |
| 771 | kc.private_value = (long)sbe; |
| 772 | kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 773 | kc.access = be->hdr.access; |
| 774 | |
| 775 | sbe->max = be->max; |
| 776 | sbe->dobj.type = SND_SOC_DOBJ_BYTES; |
| 777 | sbe->dobj.ops = tplg->ops; |
| 778 | INIT_LIST_HEAD(&sbe->dobj.list); |
| 779 | |
| 780 | /* map io handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 781 | err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 782 | if (err) { |
| 783 | soc_control_err(tplg, &be->hdr, be->hdr.name); |
| 784 | kfree(sbe); |
| 785 | continue; |
| 786 | } |
| 787 | |
| 788 | /* pass control to driver for optional further init */ |
| 789 | err = soc_tplg_init_kcontrol(tplg, &kc, |
| 790 | (struct snd_soc_tplg_ctl_hdr *)be); |
| 791 | if (err < 0) { |
| 792 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 793 | be->hdr.name); |
| 794 | kfree(sbe); |
| 795 | continue; |
| 796 | } |
| 797 | |
| 798 | /* register control here */ |
| 799 | err = soc_tplg_add_kcontrol(tplg, &kc, |
| 800 | &sbe->dobj.control.kcontrol); |
| 801 | if (err < 0) { |
| 802 | dev_err(tplg->dev, "ASoC: failed to add %s\n", |
| 803 | be->hdr.name); |
| 804 | kfree(sbe); |
| 805 | continue; |
| 806 | } |
| 807 | |
| 808 | list_add(&sbe->dobj.list, &tplg->comp->dobj_list); |
| 809 | } |
| 810 | return 0; |
| 811 | |
| 812 | } |
| 813 | |
| 814 | static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count, |
| 815 | size_t size) |
| 816 | { |
| 817 | struct snd_soc_tplg_mixer_control *mc; |
| 818 | struct soc_mixer_control *sm; |
| 819 | struct snd_kcontrol_new kc; |
| 820 | int i, err; |
| 821 | |
| 822 | if (soc_tplg_check_elem_count(tplg, |
| 823 | sizeof(struct snd_soc_tplg_mixer_control), |
| 824 | count, size, "mixers")) { |
| 825 | |
| 826 | dev_err(tplg->dev, "ASoC: invalid count %d for controls\n", |
| 827 | count); |
| 828 | return -EINVAL; |
| 829 | } |
| 830 | |
| 831 | for (i = 0; i < count; i++) { |
| 832 | mc = (struct snd_soc_tplg_mixer_control *)tplg->pos; |
| 833 | |
| 834 | /* validate kcontrol */ |
| 835 | if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 836 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 837 | return -EINVAL; |
| 838 | |
| 839 | sm = kzalloc(sizeof(*sm), GFP_KERNEL); |
| 840 | if (sm == NULL) |
| 841 | return -ENOMEM; |
| 842 | tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) + |
| 843 | mc->priv.size); |
| 844 | |
| 845 | dev_dbg(tplg->dev, |
| 846 | "ASoC: adding mixer kcontrol %s with access 0x%x\n", |
| 847 | mc->hdr.name, mc->hdr.access); |
| 848 | |
| 849 | memset(&kc, 0, sizeof(kc)); |
| 850 | kc.name = mc->hdr.name; |
| 851 | kc.private_value = (long)sm; |
| 852 | kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 853 | kc.access = mc->hdr.access; |
| 854 | |
| 855 | /* we only support FL/FR channel mapping atm */ |
| 856 | sm->reg = tplc_chan_get_reg(tplg, mc->channel, |
| 857 | SNDRV_CHMAP_FL); |
| 858 | sm->rreg = tplc_chan_get_reg(tplg, mc->channel, |
| 859 | SNDRV_CHMAP_FR); |
| 860 | sm->shift = tplc_chan_get_shift(tplg, mc->channel, |
| 861 | SNDRV_CHMAP_FL); |
| 862 | sm->rshift = tplc_chan_get_shift(tplg, mc->channel, |
| 863 | SNDRV_CHMAP_FR); |
| 864 | |
| 865 | sm->max = mc->max; |
| 866 | sm->min = mc->min; |
| 867 | sm->invert = mc->invert; |
| 868 | sm->platform_max = mc->platform_max; |
| 869 | sm->dobj.index = tplg->index; |
| 870 | sm->dobj.ops = tplg->ops; |
| 871 | sm->dobj.type = SND_SOC_DOBJ_MIXER; |
| 872 | INIT_LIST_HEAD(&sm->dobj.list); |
| 873 | |
| 874 | /* map io handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 875 | err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 876 | if (err) { |
| 877 | soc_control_err(tplg, &mc->hdr, mc->hdr.name); |
| 878 | kfree(sm); |
| 879 | continue; |
| 880 | } |
| 881 | |
| 882 | /* pass control to driver for optional further init */ |
| 883 | err = soc_tplg_init_kcontrol(tplg, &kc, |
| 884 | (struct snd_soc_tplg_ctl_hdr *) mc); |
| 885 | if (err < 0) { |
| 886 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 887 | mc->hdr.name); |
| 888 | kfree(sm); |
| 889 | continue; |
| 890 | } |
| 891 | |
| 892 | /* create any TLV data */ |
Mengdong Lin | 28a87ee | 2015-08-05 14:41:13 +0100 | [diff] [blame] | 893 | soc_tplg_create_tlv(tplg, &kc, &mc->hdr); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 894 | |
| 895 | /* register control here */ |
| 896 | err = soc_tplg_add_kcontrol(tplg, &kc, |
| 897 | &sm->dobj.control.kcontrol); |
| 898 | if (err < 0) { |
| 899 | dev_err(tplg->dev, "ASoC: failed to add %s\n", |
| 900 | mc->hdr.name); |
| 901 | soc_tplg_free_tlv(tplg, &kc); |
| 902 | kfree(sm); |
| 903 | continue; |
| 904 | } |
| 905 | |
| 906 | list_add(&sm->dobj.list, &tplg->comp->dobj_list); |
| 907 | } |
| 908 | |
| 909 | return 0; |
| 910 | } |
| 911 | |
| 912 | static int soc_tplg_denum_create_texts(struct soc_enum *se, |
| 913 | struct snd_soc_tplg_enum_control *ec) |
| 914 | { |
| 915 | int i, ret; |
| 916 | |
| 917 | se->dobj.control.dtexts = |
| 918 | kzalloc(sizeof(char *) * ec->items, GFP_KERNEL); |
| 919 | if (se->dobj.control.dtexts == NULL) |
| 920 | return -ENOMEM; |
| 921 | |
| 922 | for (i = 0; i < ec->items; i++) { |
| 923 | |
| 924 | if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 925 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) { |
| 926 | ret = -EINVAL; |
| 927 | goto err; |
| 928 | } |
| 929 | |
| 930 | se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL); |
| 931 | if (!se->dobj.control.dtexts[i]) { |
| 932 | ret = -ENOMEM; |
| 933 | goto err; |
| 934 | } |
| 935 | } |
| 936 | |
Mousumi Jana | b6e38b2 | 2017-04-11 13:06:22 +0530 | [diff] [blame^] | 937 | se->texts = (const char * const *)se->dobj.control.dtexts; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 938 | return 0; |
| 939 | |
| 940 | err: |
| 941 | for (--i; i >= 0; i--) |
| 942 | kfree(se->dobj.control.dtexts[i]); |
| 943 | kfree(se->dobj.control.dtexts); |
| 944 | return ret; |
| 945 | } |
| 946 | |
| 947 | static int soc_tplg_denum_create_values(struct soc_enum *se, |
| 948 | struct snd_soc_tplg_enum_control *ec) |
| 949 | { |
| 950 | if (ec->items > sizeof(*ec->values)) |
| 951 | return -EINVAL; |
| 952 | |
Andrzej Hajda | 376c0af | 2015-08-07 09:59:37 +0200 | [diff] [blame] | 953 | se->dobj.control.dvalues = kmemdup(ec->values, |
| 954 | ec->items * sizeof(u32), |
| 955 | GFP_KERNEL); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 956 | if (!se->dobj.control.dvalues) |
| 957 | return -ENOMEM; |
| 958 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 959 | return 0; |
| 960 | } |
| 961 | |
| 962 | static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count, |
| 963 | size_t size) |
| 964 | { |
| 965 | struct snd_soc_tplg_enum_control *ec; |
| 966 | struct soc_enum *se; |
| 967 | struct snd_kcontrol_new kc; |
| 968 | int i, ret, err; |
| 969 | |
| 970 | if (soc_tplg_check_elem_count(tplg, |
| 971 | sizeof(struct snd_soc_tplg_enum_control), |
| 972 | count, size, "enums")) { |
| 973 | |
| 974 | dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n", |
| 975 | count); |
| 976 | return -EINVAL; |
| 977 | } |
| 978 | |
| 979 | for (i = 0; i < count; i++) { |
| 980 | ec = (struct snd_soc_tplg_enum_control *)tplg->pos; |
| 981 | tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) + |
| 982 | ec->priv.size); |
| 983 | |
| 984 | /* validate kcontrol */ |
| 985 | if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 986 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 987 | return -EINVAL; |
| 988 | |
| 989 | se = kzalloc((sizeof(*se)), GFP_KERNEL); |
| 990 | if (se == NULL) |
| 991 | return -ENOMEM; |
| 992 | |
| 993 | dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n", |
| 994 | ec->hdr.name, ec->items); |
| 995 | |
| 996 | memset(&kc, 0, sizeof(kc)); |
| 997 | kc.name = ec->hdr.name; |
| 998 | kc.private_value = (long)se; |
| 999 | kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 1000 | kc.access = ec->hdr.access; |
| 1001 | |
| 1002 | se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL); |
| 1003 | se->shift_l = tplc_chan_get_shift(tplg, ec->channel, |
| 1004 | SNDRV_CHMAP_FL); |
| 1005 | se->shift_r = tplc_chan_get_shift(tplg, ec->channel, |
| 1006 | SNDRV_CHMAP_FL); |
| 1007 | |
| 1008 | se->items = ec->items; |
| 1009 | se->mask = ec->mask; |
| 1010 | se->dobj.index = tplg->index; |
| 1011 | se->dobj.type = SND_SOC_DOBJ_ENUM; |
| 1012 | se->dobj.ops = tplg->ops; |
| 1013 | INIT_LIST_HEAD(&se->dobj.list); |
| 1014 | |
| 1015 | switch (ec->hdr.ops.info) { |
| 1016 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: |
| 1017 | case SND_SOC_TPLG_CTL_ENUM_VALUE: |
| 1018 | err = soc_tplg_denum_create_values(se, ec); |
| 1019 | if (err < 0) { |
| 1020 | dev_err(tplg->dev, |
| 1021 | "ASoC: could not create values for %s\n", |
| 1022 | ec->hdr.name); |
| 1023 | kfree(se); |
| 1024 | continue; |
| 1025 | } |
| 1026 | /* fall through and create texts */ |
| 1027 | case SND_SOC_TPLG_CTL_ENUM: |
| 1028 | case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: |
| 1029 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: |
| 1030 | err = soc_tplg_denum_create_texts(se, ec); |
| 1031 | if (err < 0) { |
| 1032 | dev_err(tplg->dev, |
| 1033 | "ASoC: could not create texts for %s\n", |
| 1034 | ec->hdr.name); |
| 1035 | kfree(se); |
| 1036 | continue; |
| 1037 | } |
| 1038 | break; |
| 1039 | default: |
| 1040 | dev_err(tplg->dev, |
| 1041 | "ASoC: invalid enum control type %d for %s\n", |
| 1042 | ec->hdr.ops.info, ec->hdr.name); |
| 1043 | kfree(se); |
| 1044 | continue; |
| 1045 | } |
| 1046 | |
| 1047 | /* map io handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 1048 | err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1049 | if (err) { |
| 1050 | soc_control_err(tplg, &ec->hdr, ec->hdr.name); |
| 1051 | kfree(se); |
| 1052 | continue; |
| 1053 | } |
| 1054 | |
| 1055 | /* pass control to driver for optional further init */ |
| 1056 | err = soc_tplg_init_kcontrol(tplg, &kc, |
| 1057 | (struct snd_soc_tplg_ctl_hdr *) ec); |
| 1058 | if (err < 0) { |
| 1059 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 1060 | ec->hdr.name); |
| 1061 | kfree(se); |
| 1062 | continue; |
| 1063 | } |
| 1064 | |
| 1065 | /* register control here */ |
| 1066 | ret = soc_tplg_add_kcontrol(tplg, |
| 1067 | &kc, &se->dobj.control.kcontrol); |
| 1068 | if (ret < 0) { |
| 1069 | dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n", |
| 1070 | ec->hdr.name); |
| 1071 | kfree(se); |
| 1072 | continue; |
| 1073 | } |
| 1074 | |
| 1075 | list_add(&se->dobj.list, &tplg->comp->dobj_list); |
| 1076 | } |
| 1077 | |
| 1078 | return 0; |
| 1079 | } |
| 1080 | |
| 1081 | static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg, |
| 1082 | struct snd_soc_tplg_hdr *hdr) |
| 1083 | { |
| 1084 | struct snd_soc_tplg_ctl_hdr *control_hdr; |
| 1085 | int i; |
| 1086 | |
| 1087 | if (tplg->pass != SOC_TPLG_PASS_MIXER) { |
| 1088 | tplg->pos += hdr->size + hdr->payload_size; |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count, |
| 1093 | soc_tplg_get_offset(tplg)); |
| 1094 | |
| 1095 | for (i = 0; i < hdr->count; i++) { |
| 1096 | |
| 1097 | control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos; |
| 1098 | |
Mengdong Lin | 06eb49f | 2016-04-27 14:52:56 +0800 | [diff] [blame] | 1099 | if (control_hdr->size != sizeof(*control_hdr)) { |
| 1100 | dev_err(tplg->dev, "ASoC: invalid control size\n"); |
| 1101 | return -EINVAL; |
| 1102 | } |
| 1103 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1104 | switch (control_hdr->ops.info) { |
| 1105 | case SND_SOC_TPLG_CTL_VOLSW: |
| 1106 | case SND_SOC_TPLG_CTL_STROBE: |
| 1107 | case SND_SOC_TPLG_CTL_VOLSW_SX: |
| 1108 | case SND_SOC_TPLG_CTL_VOLSW_XR_SX: |
| 1109 | case SND_SOC_TPLG_CTL_RANGE: |
| 1110 | case SND_SOC_TPLG_DAPM_CTL_VOLSW: |
| 1111 | case SND_SOC_TPLG_DAPM_CTL_PIN: |
| 1112 | soc_tplg_dmixer_create(tplg, 1, hdr->payload_size); |
| 1113 | break; |
| 1114 | case SND_SOC_TPLG_CTL_ENUM: |
| 1115 | case SND_SOC_TPLG_CTL_ENUM_VALUE: |
| 1116 | case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: |
| 1117 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: |
| 1118 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: |
| 1119 | soc_tplg_denum_create(tplg, 1, hdr->payload_size); |
| 1120 | break; |
| 1121 | case SND_SOC_TPLG_CTL_BYTES: |
| 1122 | soc_tplg_dbytes_create(tplg, 1, hdr->payload_size); |
| 1123 | break; |
| 1124 | default: |
| 1125 | soc_bind_err(tplg, control_hdr, i); |
| 1126 | return -EINVAL; |
| 1127 | } |
| 1128 | } |
| 1129 | |
| 1130 | return 0; |
| 1131 | } |
| 1132 | |
| 1133 | static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg, |
| 1134 | struct snd_soc_tplg_hdr *hdr) |
| 1135 | { |
| 1136 | struct snd_soc_dapm_context *dapm = &tplg->comp->dapm; |
| 1137 | struct snd_soc_dapm_route route; |
| 1138 | struct snd_soc_tplg_dapm_graph_elem *elem; |
| 1139 | int count = hdr->count, i; |
| 1140 | |
| 1141 | if (tplg->pass != SOC_TPLG_PASS_GRAPH) { |
| 1142 | tplg->pos += hdr->size + hdr->payload_size; |
| 1143 | return 0; |
| 1144 | } |
| 1145 | |
| 1146 | if (soc_tplg_check_elem_count(tplg, |
| 1147 | sizeof(struct snd_soc_tplg_dapm_graph_elem), |
| 1148 | count, hdr->payload_size, "graph")) { |
| 1149 | |
| 1150 | dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n", |
| 1151 | count); |
| 1152 | return -EINVAL; |
| 1153 | } |
| 1154 | |
| 1155 | dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes\n", count); |
| 1156 | |
| 1157 | for (i = 0; i < count; i++) { |
| 1158 | elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos; |
| 1159 | tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem); |
| 1160 | |
| 1161 | /* validate routes */ |
| 1162 | if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1163 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1164 | return -EINVAL; |
| 1165 | if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1166 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1167 | return -EINVAL; |
| 1168 | if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1169 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1170 | return -EINVAL; |
| 1171 | |
| 1172 | route.source = elem->source; |
| 1173 | route.sink = elem->sink; |
| 1174 | route.connected = NULL; /* set to NULL atm for tplg users */ |
| 1175 | if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0) |
| 1176 | route.control = NULL; |
| 1177 | else |
| 1178 | route.control = elem->control; |
| 1179 | |
| 1180 | /* add route, but keep going if some fail */ |
| 1181 | snd_soc_dapm_add_routes(dapm, &route, 1); |
| 1182 | } |
| 1183 | |
| 1184 | return 0; |
| 1185 | } |
| 1186 | |
| 1187 | static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create( |
| 1188 | struct soc_tplg *tplg, int num_kcontrols) |
| 1189 | { |
| 1190 | struct snd_kcontrol_new *kc; |
| 1191 | struct soc_mixer_control *sm; |
| 1192 | struct snd_soc_tplg_mixer_control *mc; |
| 1193 | int i, err; |
| 1194 | |
Axel Lin | 4ca7deb | 2015-08-05 22:34:22 +0800 | [diff] [blame] | 1195 | kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1196 | if (kc == NULL) |
| 1197 | return NULL; |
| 1198 | |
| 1199 | for (i = 0; i < num_kcontrols; i++) { |
| 1200 | mc = (struct snd_soc_tplg_mixer_control *)tplg->pos; |
| 1201 | sm = kzalloc(sizeof(*sm), GFP_KERNEL); |
| 1202 | if (sm == NULL) |
| 1203 | goto err; |
| 1204 | |
| 1205 | tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) + |
| 1206 | mc->priv.size); |
| 1207 | |
| 1208 | /* validate kcontrol */ |
| 1209 | if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1210 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1211 | goto err_str; |
| 1212 | |
| 1213 | dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n", |
| 1214 | mc->hdr.name, i); |
| 1215 | |
| 1216 | kc[i].name = mc->hdr.name; |
| 1217 | kc[i].private_value = (long)sm; |
| 1218 | kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 1219 | kc[i].access = mc->hdr.access; |
| 1220 | |
| 1221 | /* we only support FL/FR channel mapping atm */ |
| 1222 | sm->reg = tplc_chan_get_reg(tplg, mc->channel, |
| 1223 | SNDRV_CHMAP_FL); |
| 1224 | sm->rreg = tplc_chan_get_reg(tplg, mc->channel, |
| 1225 | SNDRV_CHMAP_FR); |
| 1226 | sm->shift = tplc_chan_get_shift(tplg, mc->channel, |
| 1227 | SNDRV_CHMAP_FL); |
| 1228 | sm->rshift = tplc_chan_get_shift(tplg, mc->channel, |
| 1229 | SNDRV_CHMAP_FR); |
| 1230 | |
| 1231 | sm->max = mc->max; |
| 1232 | sm->min = mc->min; |
| 1233 | sm->invert = mc->invert; |
| 1234 | sm->platform_max = mc->platform_max; |
| 1235 | sm->dobj.index = tplg->index; |
| 1236 | INIT_LIST_HEAD(&sm->dobj.list); |
| 1237 | |
| 1238 | /* map io handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 1239 | err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1240 | if (err) { |
| 1241 | soc_control_err(tplg, &mc->hdr, mc->hdr.name); |
| 1242 | kfree(sm); |
| 1243 | continue; |
| 1244 | } |
| 1245 | |
| 1246 | /* pass control to driver for optional further init */ |
| 1247 | err = soc_tplg_init_kcontrol(tplg, &kc[i], |
| 1248 | (struct snd_soc_tplg_ctl_hdr *)mc); |
| 1249 | if (err < 0) { |
| 1250 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 1251 | mc->hdr.name); |
| 1252 | kfree(sm); |
| 1253 | continue; |
| 1254 | } |
| 1255 | } |
| 1256 | return kc; |
| 1257 | |
| 1258 | err_str: |
| 1259 | kfree(sm); |
| 1260 | err: |
| 1261 | for (--i; i >= 0; i--) |
| 1262 | kfree((void *)kc[i].private_value); |
| 1263 | kfree(kc); |
| 1264 | return NULL; |
| 1265 | } |
| 1266 | |
| 1267 | static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create( |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1268 | struct soc_tplg *tplg, int num_kcontrols) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1269 | { |
| 1270 | struct snd_kcontrol_new *kc; |
| 1271 | struct snd_soc_tplg_enum_control *ec; |
| 1272 | struct soc_enum *se; |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1273 | int i, j, err; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1274 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1275 | kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1276 | if (kc == NULL) |
| 1277 | return NULL; |
| 1278 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1279 | for (i = 0; i < num_kcontrols; i++) { |
| 1280 | ec = (struct snd_soc_tplg_enum_control *)tplg->pos; |
| 1281 | /* validate kcontrol */ |
| 1282 | if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1283 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1284 | return NULL; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1285 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1286 | se = kzalloc(sizeof(*se), GFP_KERNEL); |
| 1287 | if (se == NULL) |
| 1288 | goto err; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1289 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1290 | dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n", |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1291 | ec->hdr.name); |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1292 | |
| 1293 | kc[i].name = ec->hdr.name; |
| 1294 | kc[i].private_value = (long)se; |
| 1295 | kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 1296 | kc[i].access = ec->hdr.access; |
| 1297 | |
| 1298 | /* we only support FL/FR channel mapping atm */ |
| 1299 | se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL); |
| 1300 | se->shift_l = tplc_chan_get_shift(tplg, ec->channel, |
| 1301 | SNDRV_CHMAP_FL); |
| 1302 | se->shift_r = tplc_chan_get_shift(tplg, ec->channel, |
| 1303 | SNDRV_CHMAP_FR); |
| 1304 | |
| 1305 | se->items = ec->items; |
| 1306 | se->mask = ec->mask; |
| 1307 | se->dobj.index = tplg->index; |
| 1308 | |
| 1309 | switch (ec->hdr.ops.info) { |
| 1310 | case SND_SOC_TPLG_CTL_ENUM_VALUE: |
| 1311 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: |
| 1312 | err = soc_tplg_denum_create_values(se, ec); |
| 1313 | if (err < 0) { |
| 1314 | dev_err(tplg->dev, "ASoC: could not create values for %s\n", |
| 1315 | ec->hdr.name); |
| 1316 | goto err_se; |
| 1317 | } |
| 1318 | /* fall through to create texts */ |
| 1319 | case SND_SOC_TPLG_CTL_ENUM: |
| 1320 | case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: |
| 1321 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: |
| 1322 | err = soc_tplg_denum_create_texts(se, ec); |
| 1323 | if (err < 0) { |
| 1324 | dev_err(tplg->dev, "ASoC: could not create texts for %s\n", |
| 1325 | ec->hdr.name); |
| 1326 | goto err_se; |
| 1327 | } |
| 1328 | break; |
| 1329 | default: |
| 1330 | dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n", |
| 1331 | ec->hdr.ops.info, ec->hdr.name); |
| 1332 | goto err_se; |
| 1333 | } |
| 1334 | |
| 1335 | /* map io handlers */ |
| 1336 | err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg); |
| 1337 | if (err) { |
| 1338 | soc_control_err(tplg, &ec->hdr, ec->hdr.name); |
| 1339 | goto err_se; |
| 1340 | } |
| 1341 | |
| 1342 | /* pass control to driver for optional further init */ |
| 1343 | err = soc_tplg_init_kcontrol(tplg, &kc[i], |
| 1344 | (struct snd_soc_tplg_ctl_hdr *)ec); |
| 1345 | if (err < 0) { |
| 1346 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 1347 | ec->hdr.name); |
| 1348 | goto err_se; |
| 1349 | } |
| 1350 | |
| 1351 | tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) + |
| 1352 | ec->priv.size); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | return kc; |
| 1356 | |
| 1357 | err_se: |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1358 | for (; i >= 0; i--) { |
| 1359 | /* free values and texts */ |
| 1360 | se = (struct soc_enum *)kc[i].private_value; |
| 1361 | kfree(se->dobj.control.dvalues); |
| 1362 | for (j = 0; j < ec->items; j++) |
| 1363 | kfree(se->dobj.control.dtexts[j]); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1364 | |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1365 | kfree(se); |
| 1366 | } |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1367 | err: |
| 1368 | kfree(kc); |
| 1369 | |
| 1370 | return NULL; |
| 1371 | } |
| 1372 | |
| 1373 | static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create( |
| 1374 | struct soc_tplg *tplg, int count) |
| 1375 | { |
| 1376 | struct snd_soc_tplg_bytes_control *be; |
| 1377 | struct soc_bytes_ext *sbe; |
| 1378 | struct snd_kcontrol_new *kc; |
| 1379 | int i, err; |
| 1380 | |
Axel Lin | 4ca7deb | 2015-08-05 22:34:22 +0800 | [diff] [blame] | 1381 | kc = kcalloc(count, sizeof(*kc), GFP_KERNEL); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1382 | if (!kc) |
| 1383 | return NULL; |
| 1384 | |
| 1385 | for (i = 0; i < count; i++) { |
| 1386 | be = (struct snd_soc_tplg_bytes_control *)tplg->pos; |
| 1387 | |
| 1388 | /* validate kcontrol */ |
| 1389 | if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1390 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1391 | goto err; |
| 1392 | |
| 1393 | sbe = kzalloc(sizeof(*sbe), GFP_KERNEL); |
| 1394 | if (sbe == NULL) |
| 1395 | goto err; |
| 1396 | |
| 1397 | tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) + |
| 1398 | be->priv.size); |
| 1399 | |
| 1400 | dev_dbg(tplg->dev, |
| 1401 | "ASoC: adding bytes kcontrol %s with access 0x%x\n", |
| 1402 | be->hdr.name, be->hdr.access); |
| 1403 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1404 | kc[i].name = be->hdr.name; |
| 1405 | kc[i].private_value = (long)sbe; |
| 1406 | kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 1407 | kc[i].access = be->hdr.access; |
| 1408 | |
| 1409 | sbe->max = be->max; |
| 1410 | INIT_LIST_HEAD(&sbe->dobj.list); |
| 1411 | |
| 1412 | /* map standard io handlers and check for external handlers */ |
Mengdong Lin | 2b5cdb9 | 2015-08-18 18:12:01 +0800 | [diff] [blame] | 1413 | err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1414 | if (err) { |
| 1415 | soc_control_err(tplg, &be->hdr, be->hdr.name); |
| 1416 | kfree(sbe); |
| 1417 | continue; |
| 1418 | } |
| 1419 | |
| 1420 | /* pass control to driver for optional further init */ |
| 1421 | err = soc_tplg_init_kcontrol(tplg, &kc[i], |
| 1422 | (struct snd_soc_tplg_ctl_hdr *)be); |
| 1423 | if (err < 0) { |
| 1424 | dev_err(tplg->dev, "ASoC: failed to init %s\n", |
| 1425 | be->hdr.name); |
| 1426 | kfree(sbe); |
| 1427 | continue; |
| 1428 | } |
| 1429 | } |
| 1430 | |
| 1431 | return kc; |
| 1432 | |
| 1433 | err: |
| 1434 | for (--i; i >= 0; i--) |
| 1435 | kfree((void *)kc[i].private_value); |
| 1436 | |
| 1437 | kfree(kc); |
| 1438 | return NULL; |
| 1439 | } |
| 1440 | |
| 1441 | static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg, |
| 1442 | struct snd_soc_tplg_dapm_widget *w) |
| 1443 | { |
| 1444 | struct snd_soc_dapm_context *dapm = &tplg->comp->dapm; |
| 1445 | struct snd_soc_dapm_widget template, *widget; |
| 1446 | struct snd_soc_tplg_ctl_hdr *control_hdr; |
| 1447 | struct snd_soc_card *card = tplg->comp->card; |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 1448 | unsigned int kcontrol_type; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1449 | int ret = 0; |
| 1450 | |
| 1451 | if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1452 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1453 | return -EINVAL; |
| 1454 | if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == |
| 1455 | SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 1456 | return -EINVAL; |
| 1457 | |
| 1458 | dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n", |
| 1459 | w->name, w->id); |
| 1460 | |
| 1461 | memset(&template, 0, sizeof(template)); |
| 1462 | |
| 1463 | /* map user to kernel widget ID */ |
| 1464 | template.id = get_widget_id(w->id); |
| 1465 | if (template.id < 0) |
| 1466 | return template.id; |
| 1467 | |
| 1468 | template.name = kstrdup(w->name, GFP_KERNEL); |
| 1469 | if (!template.name) |
| 1470 | return -ENOMEM; |
| 1471 | template.sname = kstrdup(w->sname, GFP_KERNEL); |
| 1472 | if (!template.sname) { |
| 1473 | ret = -ENOMEM; |
| 1474 | goto err; |
| 1475 | } |
| 1476 | template.reg = w->reg; |
| 1477 | template.shift = w->shift; |
| 1478 | template.mask = w->mask; |
Subhransu S. Prusty | 6dc6db7 | 2015-06-29 17:36:44 +0100 | [diff] [blame] | 1479 | template.subseq = w->subseq; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1480 | template.on_val = w->invert ? 0 : 1; |
| 1481 | template.off_val = w->invert ? 1 : 0; |
| 1482 | template.ignore_suspend = w->ignore_suspend; |
| 1483 | template.event_flags = w->event_flags; |
| 1484 | template.dobj.index = tplg->index; |
| 1485 | |
| 1486 | tplg->pos += |
| 1487 | (sizeof(struct snd_soc_tplg_dapm_widget) + w->priv.size); |
| 1488 | if (w->num_kcontrols == 0) { |
Arnd Bergmann | dd5abb7 | 2016-12-09 12:51:46 +0100 | [diff] [blame] | 1489 | kcontrol_type = 0; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1490 | template.num_kcontrols = 0; |
| 1491 | goto widget; |
| 1492 | } |
| 1493 | |
| 1494 | control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos; |
| 1495 | dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n", |
| 1496 | w->name, w->num_kcontrols, control_hdr->type); |
| 1497 | |
| 1498 | switch (control_hdr->ops.info) { |
| 1499 | case SND_SOC_TPLG_CTL_VOLSW: |
| 1500 | case SND_SOC_TPLG_CTL_STROBE: |
| 1501 | case SND_SOC_TPLG_CTL_VOLSW_SX: |
| 1502 | case SND_SOC_TPLG_CTL_VOLSW_XR_SX: |
| 1503 | case SND_SOC_TPLG_CTL_RANGE: |
| 1504 | case SND_SOC_TPLG_DAPM_CTL_VOLSW: |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 1505 | kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1506 | template.num_kcontrols = w->num_kcontrols; |
| 1507 | template.kcontrol_news = |
| 1508 | soc_tplg_dapm_widget_dmixer_create(tplg, |
| 1509 | template.num_kcontrols); |
| 1510 | if (!template.kcontrol_news) { |
| 1511 | ret = -ENOMEM; |
| 1512 | goto hdr_err; |
| 1513 | } |
| 1514 | break; |
| 1515 | case SND_SOC_TPLG_CTL_ENUM: |
| 1516 | case SND_SOC_TPLG_CTL_ENUM_VALUE: |
| 1517 | case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: |
| 1518 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: |
| 1519 | case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 1520 | kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */ |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1521 | template.num_kcontrols = w->num_kcontrols; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1522 | template.kcontrol_news = |
Mengdong Lin | 1a7dd6e | 2016-11-25 16:09:10 +0800 | [diff] [blame] | 1523 | soc_tplg_dapm_widget_denum_create(tplg, |
| 1524 | template.num_kcontrols); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1525 | if (!template.kcontrol_news) { |
| 1526 | ret = -ENOMEM; |
| 1527 | goto hdr_err; |
| 1528 | } |
| 1529 | break; |
| 1530 | case SND_SOC_TPLG_CTL_BYTES: |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 1531 | kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1532 | template.num_kcontrols = w->num_kcontrols; |
| 1533 | template.kcontrol_news = |
| 1534 | soc_tplg_dapm_widget_dbytes_create(tplg, |
| 1535 | template.num_kcontrols); |
| 1536 | if (!template.kcontrol_news) { |
| 1537 | ret = -ENOMEM; |
| 1538 | goto hdr_err; |
| 1539 | } |
| 1540 | break; |
| 1541 | default: |
| 1542 | dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n", |
| 1543 | control_hdr->ops.get, control_hdr->ops.put, |
| 1544 | control_hdr->ops.info); |
| 1545 | ret = -EINVAL; |
| 1546 | goto hdr_err; |
| 1547 | } |
| 1548 | |
| 1549 | widget: |
| 1550 | ret = soc_tplg_widget_load(tplg, &template, w); |
| 1551 | if (ret < 0) |
| 1552 | goto hdr_err; |
| 1553 | |
| 1554 | /* card dapm mutex is held by the core if we are loading topology |
| 1555 | * data during sound card init. */ |
| 1556 | if (card->instantiated) |
| 1557 | widget = snd_soc_dapm_new_control(dapm, &template); |
| 1558 | else |
| 1559 | widget = snd_soc_dapm_new_control_unlocked(dapm, &template); |
| 1560 | if (widget == NULL) { |
| 1561 | dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n", |
| 1562 | w->name); |
Wei Yongjun | 8ae3ea4 | 2016-08-10 13:43:12 +0000 | [diff] [blame] | 1563 | ret = -ENOMEM; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1564 | goto hdr_err; |
| 1565 | } |
| 1566 | |
| 1567 | widget->dobj.type = SND_SOC_DOBJ_WIDGET; |
Mengdong Lin | eea3dd4 | 2016-11-25 16:09:17 +0800 | [diff] [blame] | 1568 | widget->dobj.widget.kcontrol_type = kcontrol_type; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1569 | widget->dobj.ops = tplg->ops; |
| 1570 | widget->dobj.index = tplg->index; |
Jeeja KP | 8ea4167 | 2016-05-05 11:19:18 +0530 | [diff] [blame] | 1571 | kfree(template.sname); |
| 1572 | kfree(template.name); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1573 | list_add(&widget->dobj.list, &tplg->comp->dobj_list); |
| 1574 | return 0; |
| 1575 | |
| 1576 | hdr_err: |
| 1577 | kfree(template.sname); |
| 1578 | err: |
| 1579 | kfree(template.name); |
| 1580 | return ret; |
| 1581 | } |
| 1582 | |
| 1583 | static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg, |
| 1584 | struct snd_soc_tplg_hdr *hdr) |
| 1585 | { |
| 1586 | struct snd_soc_tplg_dapm_widget *widget; |
| 1587 | int ret, count = hdr->count, i; |
| 1588 | |
| 1589 | if (tplg->pass != SOC_TPLG_PASS_WIDGET) |
| 1590 | return 0; |
| 1591 | |
| 1592 | dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count); |
| 1593 | |
| 1594 | for (i = 0; i < count; i++) { |
| 1595 | widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos; |
Mengdong Lin | 06eb49f | 2016-04-27 14:52:56 +0800 | [diff] [blame] | 1596 | if (widget->size != sizeof(*widget)) { |
| 1597 | dev_err(tplg->dev, "ASoC: invalid widget size\n"); |
| 1598 | return -EINVAL; |
| 1599 | } |
| 1600 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1601 | ret = soc_tplg_dapm_widget_create(tplg, widget); |
Mengdong Lin | 7de76b6 | 2016-04-27 14:52:38 +0800 | [diff] [blame] | 1602 | if (ret < 0) { |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1603 | dev_err(tplg->dev, "ASoC: failed to load widget %s\n", |
| 1604 | widget->name); |
Mengdong Lin | 7de76b6 | 2016-04-27 14:52:38 +0800 | [diff] [blame] | 1605 | return ret; |
| 1606 | } |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | return 0; |
| 1610 | } |
| 1611 | |
| 1612 | static int soc_tplg_dapm_complete(struct soc_tplg *tplg) |
| 1613 | { |
| 1614 | struct snd_soc_card *card = tplg->comp->card; |
| 1615 | int ret; |
| 1616 | |
| 1617 | /* Card might not have been registered at this point. |
| 1618 | * If so, just return success. |
| 1619 | */ |
| 1620 | if (!card || !card->instantiated) { |
| 1621 | dev_warn(tplg->dev, "ASoC: Parent card not yet available," |
| 1622 | "Do not add new widgets now\n"); |
| 1623 | return 0; |
| 1624 | } |
| 1625 | |
| 1626 | ret = snd_soc_dapm_new_widgets(card); |
| 1627 | if (ret < 0) |
| 1628 | dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n", |
| 1629 | ret); |
| 1630 | |
| 1631 | return 0; |
| 1632 | } |
| 1633 | |
Mengdong Lin | b6b6e4d | 2016-02-22 16:29:19 +0800 | [diff] [blame] | 1634 | static void set_stream_info(struct snd_soc_pcm_stream *stream, |
| 1635 | struct snd_soc_tplg_stream_caps *caps) |
| 1636 | { |
| 1637 | stream->stream_name = kstrdup(caps->name, GFP_KERNEL); |
| 1638 | stream->channels_min = caps->channels_min; |
| 1639 | stream->channels_max = caps->channels_max; |
| 1640 | stream->rates = caps->rates; |
| 1641 | stream->rate_min = caps->rate_min; |
| 1642 | stream->rate_max = caps->rate_max; |
| 1643 | stream->formats = caps->formats; |
Mengdong Lin | f918e16 | 2016-08-19 18:12:46 +0800 | [diff] [blame] | 1644 | stream->sig_bits = caps->sig_bits; |
Mengdong Lin | b6b6e4d | 2016-02-22 16:29:19 +0800 | [diff] [blame] | 1645 | } |
| 1646 | |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 1647 | static void set_dai_flags(struct snd_soc_dai_driver *dai_drv, |
| 1648 | unsigned int flag_mask, unsigned int flags) |
| 1649 | { |
| 1650 | if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES) |
| 1651 | dai_drv->symmetric_rates = |
| 1652 | flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0; |
| 1653 | |
| 1654 | if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS) |
| 1655 | dai_drv->symmetric_channels = |
| 1656 | flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ? |
| 1657 | 1 : 0; |
| 1658 | |
| 1659 | if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS) |
| 1660 | dai_drv->symmetric_samplebits = |
| 1661 | flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ? |
| 1662 | 1 : 0; |
| 1663 | } |
| 1664 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1665 | static int soc_tplg_dai_create(struct soc_tplg *tplg, |
| 1666 | struct snd_soc_tplg_pcm *pcm) |
| 1667 | { |
| 1668 | struct snd_soc_dai_driver *dai_drv; |
| 1669 | struct snd_soc_pcm_stream *stream; |
| 1670 | struct snd_soc_tplg_stream_caps *caps; |
| 1671 | int ret; |
| 1672 | |
| 1673 | dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL); |
| 1674 | if (dai_drv == NULL) |
| 1675 | return -ENOMEM; |
| 1676 | |
Mengdong Lin | 8f27c4a | 2016-11-03 01:02:59 +0800 | [diff] [blame] | 1677 | if (strlen(pcm->dai_name)) |
| 1678 | dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL); |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1679 | dai_drv->id = pcm->dai_id; |
| 1680 | |
| 1681 | if (pcm->playback) { |
| 1682 | stream = &dai_drv->playback; |
| 1683 | caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK]; |
Mengdong Lin | b6b6e4d | 2016-02-22 16:29:19 +0800 | [diff] [blame] | 1684 | set_stream_info(stream, caps); |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1685 | } |
| 1686 | |
| 1687 | if (pcm->capture) { |
| 1688 | stream = &dai_drv->capture; |
| 1689 | caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE]; |
Mengdong Lin | b6b6e4d | 2016-02-22 16:29:19 +0800 | [diff] [blame] | 1690 | set_stream_info(stream, caps); |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | /* pass control to component driver for optional further init */ |
| 1694 | ret = soc_tplg_dai_load(tplg, dai_drv); |
| 1695 | if (ret < 0) { |
| 1696 | dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n"); |
| 1697 | kfree(dai_drv); |
| 1698 | return ret; |
| 1699 | } |
| 1700 | |
| 1701 | dai_drv->dobj.index = tplg->index; |
| 1702 | dai_drv->dobj.ops = tplg->ops; |
| 1703 | dai_drv->dobj.type = SND_SOC_DOBJ_PCM; |
| 1704 | list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list); |
| 1705 | |
| 1706 | /* register the DAI to the component */ |
| 1707 | return snd_soc_register_dai(tplg->comp, dai_drv); |
| 1708 | } |
| 1709 | |
Mengdong Lin | 717a8e7 | 2016-11-03 01:03:34 +0800 | [diff] [blame] | 1710 | static void set_link_flags(struct snd_soc_dai_link *link, |
| 1711 | unsigned int flag_mask, unsigned int flags) |
| 1712 | { |
| 1713 | if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES) |
| 1714 | link->symmetric_rates = |
| 1715 | flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0; |
| 1716 | |
| 1717 | if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS) |
| 1718 | link->symmetric_channels = |
| 1719 | flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ? |
| 1720 | 1 : 0; |
| 1721 | |
| 1722 | if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS) |
| 1723 | link->symmetric_samplebits = |
| 1724 | flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ? |
| 1725 | 1 : 0; |
Mengdong Lin | 6ff67cc | 2016-11-03 01:05:32 +0800 | [diff] [blame] | 1726 | |
| 1727 | if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP) |
| 1728 | link->ignore_suspend = |
| 1729 | flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ? |
| 1730 | 1 : 0; |
Mengdong Lin | 717a8e7 | 2016-11-03 01:03:34 +0800 | [diff] [blame] | 1731 | } |
| 1732 | |
Guneshwor Singh | 67d1c21 | 2016-04-19 13:12:50 +0800 | [diff] [blame] | 1733 | /* create the FE DAI link */ |
Mengdong Lin | ab4bc5e | 2016-11-03 01:04:42 +0800 | [diff] [blame] | 1734 | static int soc_tplg_fe_link_create(struct soc_tplg *tplg, |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 1735 | struct snd_soc_tplg_pcm *pcm) |
| 1736 | { |
| 1737 | struct snd_soc_dai_link *link; |
| 1738 | int ret; |
| 1739 | |
| 1740 | link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL); |
| 1741 | if (link == NULL) |
| 1742 | return -ENOMEM; |
| 1743 | |
Mengdong Lin | 8f27c4a | 2016-11-03 01:02:59 +0800 | [diff] [blame] | 1744 | if (strlen(pcm->pcm_name)) { |
| 1745 | link->name = kstrdup(pcm->pcm_name, GFP_KERNEL); |
| 1746 | link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL); |
| 1747 | } |
Mengdong Lin | b84fff5 | 2016-04-19 13:12:43 +0800 | [diff] [blame] | 1748 | link->id = pcm->pcm_id; |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 1749 | |
Mengdong Lin | 8f27c4a | 2016-11-03 01:02:59 +0800 | [diff] [blame] | 1750 | if (strlen(pcm->dai_name)) |
| 1751 | link->cpu_dai_name = kstrdup(pcm->dai_name, GFP_KERNEL); |
| 1752 | |
Guneshwor Singh | 67d1c21 | 2016-04-19 13:12:50 +0800 | [diff] [blame] | 1753 | link->codec_name = "snd-soc-dummy"; |
| 1754 | link->codec_dai_name = "snd-soc-dummy-dai"; |
| 1755 | |
| 1756 | /* enable DPCM */ |
| 1757 | link->dynamic = 1; |
| 1758 | link->dpcm_playback = pcm->playback; |
| 1759 | link->dpcm_capture = pcm->capture; |
Mengdong Lin | 717a8e7 | 2016-11-03 01:03:34 +0800 | [diff] [blame] | 1760 | if (pcm->flag_mask) |
| 1761 | set_link_flags(link, pcm->flag_mask, pcm->flags); |
Guneshwor Singh | 67d1c21 | 2016-04-19 13:12:50 +0800 | [diff] [blame] | 1762 | |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 1763 | /* pass control to component driver for optional further init */ |
| 1764 | ret = soc_tplg_dai_link_load(tplg, link); |
| 1765 | if (ret < 0) { |
| 1766 | dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n"); |
| 1767 | kfree(link); |
| 1768 | return ret; |
| 1769 | } |
| 1770 | |
| 1771 | link->dobj.index = tplg->index; |
| 1772 | link->dobj.ops = tplg->ops; |
| 1773 | link->dobj.type = SND_SOC_DOBJ_DAI_LINK; |
| 1774 | list_add(&link->dobj.list, &tplg->comp->dobj_list); |
| 1775 | |
| 1776 | snd_soc_add_dai_link(tplg->comp->card, link); |
| 1777 | return 0; |
| 1778 | } |
| 1779 | |
| 1780 | /* create a FE DAI and DAI link from the PCM object */ |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1781 | static int soc_tplg_pcm_create(struct soc_tplg *tplg, |
| 1782 | struct snd_soc_tplg_pcm *pcm) |
| 1783 | { |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 1784 | int ret; |
| 1785 | |
| 1786 | ret = soc_tplg_dai_create(tplg, pcm); |
| 1787 | if (ret < 0) |
| 1788 | return ret; |
| 1789 | |
Mengdong Lin | ab4bc5e | 2016-11-03 01:04:42 +0800 | [diff] [blame] | 1790 | return soc_tplg_fe_link_create(tplg, pcm); |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1791 | } |
| 1792 | |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1793 | /* copy stream caps from the old version 4 of source */ |
| 1794 | static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest, |
| 1795 | struct snd_soc_tplg_stream_caps_v4 *src) |
| 1796 | { |
| 1797 | dest->size = sizeof(*dest); |
| 1798 | memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); |
| 1799 | dest->formats = src->formats; |
| 1800 | dest->rates = src->rates; |
| 1801 | dest->rate_min = src->rate_min; |
| 1802 | dest->rate_max = src->rate_max; |
| 1803 | dest->channels_min = src->channels_min; |
| 1804 | dest->channels_max = src->channels_max; |
| 1805 | dest->periods_min = src->periods_min; |
| 1806 | dest->periods_max = src->periods_max; |
| 1807 | dest->period_size_min = src->period_size_min; |
| 1808 | dest->period_size_max = src->period_size_max; |
| 1809 | dest->buffer_size_min = src->buffer_size_min; |
| 1810 | dest->buffer_size_max = src->buffer_size_max; |
| 1811 | } |
| 1812 | |
| 1813 | /** |
| 1814 | * pcm_new_ver - Create the new version of PCM from the old version. |
| 1815 | * @tplg: topology context |
| 1816 | * @src: older version of pcm as a source |
| 1817 | * @pcm: latest version of pcm created from the source |
| 1818 | * |
| 1819 | * Support from vesion 4. User should free the returned pcm manually. |
| 1820 | */ |
| 1821 | static int pcm_new_ver(struct soc_tplg *tplg, |
| 1822 | struct snd_soc_tplg_pcm *src, |
| 1823 | struct snd_soc_tplg_pcm **pcm) |
| 1824 | { |
| 1825 | struct snd_soc_tplg_pcm *dest; |
| 1826 | struct snd_soc_tplg_pcm_v4 *src_v4; |
| 1827 | int i; |
| 1828 | |
| 1829 | *pcm = NULL; |
| 1830 | |
| 1831 | if (src->size != sizeof(*src_v4)) { |
| 1832 | dev_err(tplg->dev, "ASoC: invalid PCM size\n"); |
| 1833 | return -EINVAL; |
| 1834 | } |
| 1835 | |
| 1836 | dev_warn(tplg->dev, "ASoC: old version of PCM\n"); |
| 1837 | src_v4 = (struct snd_soc_tplg_pcm_v4 *)src; |
| 1838 | dest = kzalloc(sizeof(*dest), GFP_KERNEL); |
| 1839 | if (!dest) |
| 1840 | return -ENOMEM; |
| 1841 | |
| 1842 | dest->size = sizeof(*dest); /* size of latest abi version */ |
| 1843 | memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); |
| 1844 | memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); |
| 1845 | dest->pcm_id = src_v4->pcm_id; |
| 1846 | dest->dai_id = src_v4->dai_id; |
| 1847 | dest->playback = src_v4->playback; |
| 1848 | dest->capture = src_v4->capture; |
| 1849 | dest->compress = src_v4->compress; |
| 1850 | dest->num_streams = src_v4->num_streams; |
| 1851 | for (i = 0; i < dest->num_streams; i++) |
| 1852 | memcpy(&dest->stream[i], &src_v4->stream[i], |
| 1853 | sizeof(struct snd_soc_tplg_stream)); |
| 1854 | |
| 1855 | for (i = 0; i < 2; i++) |
| 1856 | stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]); |
| 1857 | |
| 1858 | *pcm = dest; |
| 1859 | return 0; |
| 1860 | } |
| 1861 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1862 | static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg, |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1863 | struct snd_soc_tplg_hdr *hdr) |
| 1864 | { |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1865 | struct snd_soc_tplg_pcm *pcm, *_pcm; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1866 | int count = hdr->count; |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1867 | int i, err; |
| 1868 | bool abi_match; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1869 | |
| 1870 | if (tplg->pass != SOC_TPLG_PASS_PCM_DAI) |
| 1871 | return 0; |
| 1872 | |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1873 | /* check the element size and count */ |
| 1874 | pcm = (struct snd_soc_tplg_pcm *)tplg->pos; |
| 1875 | if (pcm->size > sizeof(struct snd_soc_tplg_pcm) |
| 1876 | || pcm->size < sizeof(struct snd_soc_tplg_pcm_v4)) { |
| 1877 | dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n", |
| 1878 | pcm->size); |
| 1879 | return -EINVAL; |
| 1880 | } |
| 1881 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1882 | if (soc_tplg_check_elem_count(tplg, |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1883 | pcm->size, count, |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1884 | hdr->payload_size, "PCM DAI")) { |
| 1885 | dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n", |
| 1886 | count); |
| 1887 | return -EINVAL; |
| 1888 | } |
| 1889 | |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1890 | for (i = 0; i < count; i++) { |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1891 | pcm = (struct snd_soc_tplg_pcm *)tplg->pos; |
| 1892 | |
| 1893 | /* check ABI version by size, create a new version of pcm |
| 1894 | * if abi not match. |
| 1895 | */ |
| 1896 | if (pcm->size == sizeof(*pcm)) { |
| 1897 | abi_match = true; |
| 1898 | _pcm = pcm; |
| 1899 | } else { |
| 1900 | abi_match = false; |
| 1901 | err = pcm_new_ver(tplg, pcm, &_pcm); |
Mengdong Lin | 06eb49f | 2016-04-27 14:52:56 +0800 | [diff] [blame] | 1902 | } |
| 1903 | |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1904 | /* create the FE DAIs and DAI links */ |
| 1905 | soc_tplg_pcm_create(tplg, _pcm); |
| 1906 | |
Mengdong Lin | 717a8e7 | 2016-11-03 01:03:34 +0800 | [diff] [blame] | 1907 | /* offset by version-specific struct size and |
| 1908 | * real priv data size |
| 1909 | */ |
| 1910 | tplg->pos += pcm->size + _pcm->priv.size; |
| 1911 | |
Mengdong Lin | 55726dc | 2016-11-03 01:00:16 +0800 | [diff] [blame] | 1912 | if (!abi_match) |
| 1913 | kfree(_pcm); /* free the duplicated one */ |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 1914 | } |
| 1915 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1916 | dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1917 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1918 | return 0; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 1919 | } |
| 1920 | |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 1921 | /** |
| 1922 | * set_link_hw_format - Set the HW audio format of the physical DAI link. |
| 1923 | * @tplg: topology context |
| 1924 | * @cfg: physical link configs. |
| 1925 | * |
| 1926 | * Topology context contains a list of supported HW formats (configs) and |
| 1927 | * a default format ID for the physical link. This function will use this |
| 1928 | * default ID to choose the HW format to set the link's DAI format for init. |
| 1929 | */ |
| 1930 | static void set_link_hw_format(struct snd_soc_dai_link *link, |
| 1931 | struct snd_soc_tplg_link_config *cfg) |
| 1932 | { |
| 1933 | struct snd_soc_tplg_hw_config *hw_config; |
| 1934 | unsigned char bclk_master, fsync_master; |
| 1935 | unsigned char invert_bclk, invert_fsync; |
| 1936 | int i; |
| 1937 | |
| 1938 | for (i = 0; i < cfg->num_hw_configs; i++) { |
| 1939 | hw_config = &cfg->hw_config[i]; |
| 1940 | if (hw_config->id != cfg->default_hw_config_id) |
| 1941 | continue; |
| 1942 | |
| 1943 | link->dai_fmt = hw_config->fmt & SND_SOC_DAIFMT_FORMAT_MASK; |
| 1944 | |
| 1945 | /* clock signal polarity */ |
| 1946 | invert_bclk = hw_config->invert_bclk; |
| 1947 | invert_fsync = hw_config->invert_fsync; |
| 1948 | if (!invert_bclk && !invert_fsync) |
| 1949 | link->dai_fmt |= SND_SOC_DAIFMT_NB_NF; |
| 1950 | else if (!invert_bclk && invert_fsync) |
| 1951 | link->dai_fmt |= SND_SOC_DAIFMT_NB_IF; |
| 1952 | else if (invert_bclk && !invert_fsync) |
| 1953 | link->dai_fmt |= SND_SOC_DAIFMT_IB_NF; |
| 1954 | else |
| 1955 | link->dai_fmt |= SND_SOC_DAIFMT_IB_IF; |
| 1956 | |
| 1957 | /* clock masters */ |
| 1958 | bclk_master = hw_config->bclk_master; |
| 1959 | fsync_master = hw_config->fsync_master; |
| 1960 | if (!bclk_master && !fsync_master) |
| 1961 | link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM; |
| 1962 | else if (bclk_master && !fsync_master) |
| 1963 | link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM; |
| 1964 | else if (!bclk_master && fsync_master) |
| 1965 | link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS; |
| 1966 | else |
| 1967 | link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS; |
| 1968 | } |
| 1969 | } |
| 1970 | |
| 1971 | /** |
| 1972 | * link_new_ver - Create a new physical link config from the old |
| 1973 | * version of source. |
| 1974 | * @toplogy: topology context |
| 1975 | * @src: old version of phyical link config as a source |
| 1976 | * @link: latest version of physical link config created from the source |
| 1977 | * |
| 1978 | * Support from vesion 4. User need free the returned link config manually. |
| 1979 | */ |
| 1980 | static int link_new_ver(struct soc_tplg *tplg, |
| 1981 | struct snd_soc_tplg_link_config *src, |
| 1982 | struct snd_soc_tplg_link_config **link) |
| 1983 | { |
| 1984 | struct snd_soc_tplg_link_config *dest; |
| 1985 | struct snd_soc_tplg_link_config_v4 *src_v4; |
| 1986 | int i; |
| 1987 | |
| 1988 | *link = NULL; |
| 1989 | |
| 1990 | if (src->size != sizeof(struct snd_soc_tplg_link_config_v4)) { |
| 1991 | dev_err(tplg->dev, "ASoC: invalid physical link config size\n"); |
| 1992 | return -EINVAL; |
| 1993 | } |
| 1994 | |
| 1995 | dev_warn(tplg->dev, "ASoC: old version of physical link config\n"); |
| 1996 | |
| 1997 | src_v4 = (struct snd_soc_tplg_link_config_v4 *)src; |
| 1998 | dest = kzalloc(sizeof(*dest), GFP_KERNEL); |
| 1999 | if (!dest) |
| 2000 | return -ENOMEM; |
| 2001 | |
| 2002 | dest->size = sizeof(*dest); |
| 2003 | dest->id = src_v4->id; |
| 2004 | dest->num_streams = src_v4->num_streams; |
| 2005 | for (i = 0; i < dest->num_streams; i++) |
| 2006 | memcpy(&dest->stream[i], &src_v4->stream[i], |
| 2007 | sizeof(struct snd_soc_tplg_stream)); |
| 2008 | |
| 2009 | *link = dest; |
| 2010 | return 0; |
| 2011 | } |
| 2012 | |
| 2013 | /* Find and configure an existing physical DAI link */ |
| 2014 | static int soc_tplg_link_config(struct soc_tplg *tplg, |
| 2015 | struct snd_soc_tplg_link_config *cfg) |
| 2016 | { |
| 2017 | struct snd_soc_dai_link *link; |
| 2018 | const char *name, *stream_name; |
Mengdong Lin | dbab1cb | 2016-11-05 08:42:14 +0800 | [diff] [blame] | 2019 | size_t len; |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 2020 | int ret; |
| 2021 | |
Mengdong Lin | dbab1cb | 2016-11-05 08:42:14 +0800 | [diff] [blame] | 2022 | len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); |
| 2023 | if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 2024 | return -EINVAL; |
| 2025 | else if (len) |
| 2026 | name = cfg->name; |
| 2027 | else |
| 2028 | name = NULL; |
| 2029 | |
| 2030 | len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); |
| 2031 | if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) |
| 2032 | return -EINVAL; |
| 2033 | else if (len) |
| 2034 | stream_name = cfg->stream_name; |
| 2035 | else |
| 2036 | stream_name = NULL; |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 2037 | |
| 2038 | link = snd_soc_find_dai_link(tplg->comp->card, cfg->id, |
| 2039 | name, stream_name); |
| 2040 | if (!link) { |
| 2041 | dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n", |
| 2042 | name, cfg->id); |
| 2043 | return -EINVAL; |
| 2044 | } |
| 2045 | |
| 2046 | /* hw format */ |
| 2047 | if (cfg->num_hw_configs) |
| 2048 | set_link_hw_format(link, cfg); |
| 2049 | |
| 2050 | /* flags */ |
| 2051 | if (cfg->flag_mask) |
| 2052 | set_link_flags(link, cfg->flag_mask, cfg->flags); |
| 2053 | |
| 2054 | /* pass control to component driver for optional further init */ |
| 2055 | ret = soc_tplg_dai_link_load(tplg, link); |
| 2056 | if (ret < 0) { |
| 2057 | dev_err(tplg->dev, "ASoC: physical link loading failed\n"); |
| 2058 | return ret; |
| 2059 | } |
| 2060 | |
| 2061 | return 0; |
| 2062 | } |
| 2063 | |
| 2064 | |
| 2065 | /* Load physical link config elements from the topology context */ |
| 2066 | static int soc_tplg_link_elems_load(struct soc_tplg *tplg, |
| 2067 | struct snd_soc_tplg_hdr *hdr) |
| 2068 | { |
| 2069 | struct snd_soc_tplg_link_config *link, *_link; |
| 2070 | int count = hdr->count; |
| 2071 | int i, ret; |
| 2072 | bool abi_match; |
| 2073 | |
| 2074 | if (tplg->pass != SOC_TPLG_PASS_LINK) { |
| 2075 | tplg->pos += hdr->size + hdr->payload_size; |
| 2076 | return 0; |
| 2077 | }; |
| 2078 | |
| 2079 | /* check the element size and count */ |
| 2080 | link = (struct snd_soc_tplg_link_config *)tplg->pos; |
| 2081 | if (link->size > sizeof(struct snd_soc_tplg_link_config) |
| 2082 | || link->size < sizeof(struct snd_soc_tplg_link_config_v4)) { |
| 2083 | dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n", |
| 2084 | link->size); |
| 2085 | return -EINVAL; |
| 2086 | } |
| 2087 | |
| 2088 | if (soc_tplg_check_elem_count(tplg, |
| 2089 | link->size, count, |
| 2090 | hdr->payload_size, "physical link config")) { |
| 2091 | dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n", |
| 2092 | count); |
| 2093 | return -EINVAL; |
| 2094 | } |
| 2095 | |
| 2096 | /* config physical DAI links */ |
| 2097 | for (i = 0; i < count; i++) { |
| 2098 | link = (struct snd_soc_tplg_link_config *)tplg->pos; |
| 2099 | if (link->size == sizeof(*link)) { |
| 2100 | abi_match = true; |
| 2101 | _link = link; |
| 2102 | } else { |
| 2103 | abi_match = false; |
| 2104 | ret = link_new_ver(tplg, link, &_link); |
| 2105 | if (ret < 0) |
| 2106 | return ret; |
| 2107 | } |
| 2108 | |
| 2109 | ret = soc_tplg_link_config(tplg, _link); |
| 2110 | if (ret < 0) |
| 2111 | return ret; |
| 2112 | |
| 2113 | /* offset by version-specific struct size and |
| 2114 | * real priv data size |
| 2115 | */ |
| 2116 | tplg->pos += link->size + _link->priv.size; |
| 2117 | |
| 2118 | if (!abi_match) |
| 2119 | kfree(_link); /* free the duplicated one */ |
| 2120 | } |
| 2121 | |
| 2122 | return 0; |
| 2123 | } |
| 2124 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2125 | /** |
| 2126 | * soc_tplg_dai_config - Find and configure an existing physical DAI. |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2127 | * @tplg: topology context |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2128 | * @d: physical DAI configs. |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2129 | * |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2130 | * The physical dai should already be registered by the platform driver. |
| 2131 | * The platform driver should specify the DAI name and ID for matching. |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2132 | */ |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2133 | static int soc_tplg_dai_config(struct soc_tplg *tplg, |
| 2134 | struct snd_soc_tplg_dai *d) |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2135 | { |
| 2136 | struct snd_soc_dai_link_component dai_component = {0}; |
| 2137 | struct snd_soc_dai *dai; |
| 2138 | struct snd_soc_dai_driver *dai_drv; |
| 2139 | struct snd_soc_pcm_stream *stream; |
| 2140 | struct snd_soc_tplg_stream_caps *caps; |
| 2141 | int ret; |
| 2142 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2143 | dai_component.dai_name = d->dai_name; |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2144 | dai = snd_soc_find_dai(&dai_component); |
| 2145 | if (!dai) { |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2146 | dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n", |
| 2147 | d->dai_name); |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2148 | return -EINVAL; |
| 2149 | } |
| 2150 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2151 | if (d->dai_id != dai->id) { |
| 2152 | dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n", |
| 2153 | d->dai_name); |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2154 | return -EINVAL; |
| 2155 | } |
| 2156 | |
| 2157 | dai_drv = dai->driver; |
| 2158 | if (!dai_drv) |
| 2159 | return -EINVAL; |
| 2160 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2161 | if (d->playback) { |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2162 | stream = &dai_drv->playback; |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2163 | caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK]; |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2164 | set_stream_info(stream, caps); |
| 2165 | } |
| 2166 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2167 | if (d->capture) { |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2168 | stream = &dai_drv->capture; |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2169 | caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE]; |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2170 | set_stream_info(stream, caps); |
| 2171 | } |
| 2172 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2173 | if (d->flag_mask) |
| 2174 | set_dai_flags(dai_drv, d->flag_mask, d->flags); |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2175 | |
| 2176 | /* pass control to component driver for optional further init */ |
| 2177 | ret = soc_tplg_dai_load(tplg, dai_drv); |
| 2178 | if (ret < 0) { |
| 2179 | dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n"); |
| 2180 | return ret; |
| 2181 | } |
| 2182 | |
| 2183 | return 0; |
| 2184 | } |
| 2185 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2186 | /* load physical DAI elements */ |
| 2187 | static int soc_tplg_dai_elems_load(struct soc_tplg *tplg, |
| 2188 | struct snd_soc_tplg_hdr *hdr) |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2189 | { |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2190 | struct snd_soc_tplg_dai *dai; |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2191 | int count = hdr->count; |
| 2192 | int i; |
| 2193 | |
| 2194 | if (tplg->pass != SOC_TPLG_PASS_BE_DAI) |
| 2195 | return 0; |
| 2196 | |
| 2197 | /* config the existing BE DAIs */ |
| 2198 | for (i = 0; i < count; i++) { |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2199 | dai = (struct snd_soc_tplg_dai *)tplg->pos; |
| 2200 | if (dai->size != sizeof(*dai)) { |
| 2201 | dev_err(tplg->dev, "ASoC: invalid physical DAI size\n"); |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2202 | return -EINVAL; |
| 2203 | } |
| 2204 | |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2205 | soc_tplg_dai_config(tplg, dai); |
| 2206 | tplg->pos += (sizeof(*dai) + dai->priv.size); |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2207 | } |
| 2208 | |
| 2209 | dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count); |
| 2210 | return 0; |
| 2211 | } |
| 2212 | |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2213 | /** |
| 2214 | * manifest_new_ver - Create a new version of manifest from the old version |
| 2215 | * of source. |
| 2216 | * @toplogy: topology context |
| 2217 | * @src: old version of manifest as a source |
| 2218 | * @manifest: latest version of manifest created from the source |
| 2219 | * |
| 2220 | * Support from vesion 4. Users need free the returned manifest manually. |
| 2221 | */ |
| 2222 | static int manifest_new_ver(struct soc_tplg *tplg, |
| 2223 | struct snd_soc_tplg_manifest *src, |
| 2224 | struct snd_soc_tplg_manifest **manifest) |
| 2225 | { |
| 2226 | struct snd_soc_tplg_manifest *dest; |
| 2227 | struct snd_soc_tplg_manifest_v4 *src_v4; |
| 2228 | |
| 2229 | *manifest = NULL; |
| 2230 | |
| 2231 | if (src->size != sizeof(*src_v4)) { |
| 2232 | dev_err(tplg->dev, "ASoC: invalid manifest size\n"); |
| 2233 | return -EINVAL; |
| 2234 | } |
| 2235 | |
| 2236 | dev_warn(tplg->dev, "ASoC: old version of manifest\n"); |
| 2237 | |
| 2238 | src_v4 = (struct snd_soc_tplg_manifest_v4 *)src; |
| 2239 | dest = kzalloc(sizeof(*dest) + src_v4->priv.size, GFP_KERNEL); |
| 2240 | if (!dest) |
| 2241 | return -ENOMEM; |
| 2242 | |
| 2243 | dest->size = sizeof(*dest); /* size of latest abi version */ |
| 2244 | dest->control_elems = src_v4->control_elems; |
| 2245 | dest->widget_elems = src_v4->widget_elems; |
| 2246 | dest->graph_elems = src_v4->graph_elems; |
| 2247 | dest->pcm_elems = src_v4->pcm_elems; |
| 2248 | dest->dai_link_elems = src_v4->dai_link_elems; |
| 2249 | dest->priv.size = src_v4->priv.size; |
| 2250 | if (dest->priv.size) |
| 2251 | memcpy(dest->priv.data, src_v4->priv.data, |
| 2252 | src_v4->priv.size); |
| 2253 | |
| 2254 | *manifest = dest; |
| 2255 | return 0; |
| 2256 | } |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2257 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2258 | static int soc_tplg_manifest_load(struct soc_tplg *tplg, |
Mengdong Lin | 0038be9 | 2016-07-26 14:32:37 +0800 | [diff] [blame] | 2259 | struct snd_soc_tplg_hdr *hdr) |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2260 | { |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2261 | struct snd_soc_tplg_manifest *manifest, *_manifest; |
| 2262 | bool abi_match; |
| 2263 | int err; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2264 | |
| 2265 | if (tplg->pass != SOC_TPLG_PASS_MANIFEST) |
| 2266 | return 0; |
| 2267 | |
| 2268 | manifest = (struct snd_soc_tplg_manifest *)tplg->pos; |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2269 | |
| 2270 | /* check ABI version by size, create a new manifest if abi not match */ |
| 2271 | if (manifest->size == sizeof(*manifest)) { |
| 2272 | abi_match = true; |
| 2273 | _manifest = manifest; |
| 2274 | } else { |
| 2275 | abi_match = false; |
| 2276 | err = manifest_new_ver(tplg, manifest, &_manifest); |
| 2277 | if (err < 0) |
| 2278 | return err; |
Mengdong Lin | 06eb49f | 2016-04-27 14:52:56 +0800 | [diff] [blame] | 2279 | } |
| 2280 | |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2281 | /* pass control to component driver for optional further init */ |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2282 | if (tplg->comp && tplg->ops && tplg->ops->manifest) |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2283 | return tplg->ops->manifest(tplg->comp, _manifest); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2284 | |
Mengdong Lin | 583958f | 2016-10-11 14:36:42 +0800 | [diff] [blame] | 2285 | if (!abi_match) /* free the duplicated one */ |
| 2286 | kfree(_manifest); |
| 2287 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2288 | return 0; |
| 2289 | } |
| 2290 | |
| 2291 | /* validate header magic, size and type */ |
| 2292 | static int soc_valid_header(struct soc_tplg *tplg, |
| 2293 | struct snd_soc_tplg_hdr *hdr) |
| 2294 | { |
| 2295 | if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size) |
| 2296 | return 0; |
| 2297 | |
Mengdong Lin | 06eb49f | 2016-04-27 14:52:56 +0800 | [diff] [blame] | 2298 | if (hdr->size != sizeof(*hdr)) { |
| 2299 | dev_err(tplg->dev, |
| 2300 | "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n", |
| 2301 | hdr->type, soc_tplg_get_hdr_offset(tplg), |
| 2302 | tplg->fw->size); |
| 2303 | return -EINVAL; |
| 2304 | } |
| 2305 | |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2306 | /* big endian firmware objects not supported atm */ |
| 2307 | if (hdr->magic == cpu_to_be32(SND_SOC_TPLG_MAGIC)) { |
| 2308 | dev_err(tplg->dev, |
| 2309 | "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n", |
| 2310 | tplg->pass, hdr->magic, |
| 2311 | soc_tplg_get_hdr_offset(tplg), tplg->fw->size); |
| 2312 | return -EINVAL; |
| 2313 | } |
| 2314 | |
| 2315 | if (hdr->magic != SND_SOC_TPLG_MAGIC) { |
| 2316 | dev_err(tplg->dev, |
| 2317 | "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n", |
| 2318 | tplg->pass, hdr->magic, |
| 2319 | soc_tplg_get_hdr_offset(tplg), tplg->fw->size); |
| 2320 | return -EINVAL; |
| 2321 | } |
| 2322 | |
Mengdong Lin | 288b8da | 2016-11-03 01:03:17 +0800 | [diff] [blame] | 2323 | /* Support ABI from version 4 */ |
| 2324 | if (hdr->abi > SND_SOC_TPLG_ABI_VERSION |
| 2325 | || hdr->abi < SND_SOC_TPLG_ABI_VERSION_MIN) { |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2326 | dev_err(tplg->dev, |
| 2327 | "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n", |
| 2328 | tplg->pass, hdr->abi, |
| 2329 | SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg), |
| 2330 | tplg->fw->size); |
| 2331 | return -EINVAL; |
| 2332 | } |
| 2333 | |
| 2334 | if (hdr->payload_size == 0) { |
| 2335 | dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n", |
| 2336 | soc_tplg_get_hdr_offset(tplg)); |
| 2337 | return -EINVAL; |
| 2338 | } |
| 2339 | |
| 2340 | if (tplg->pass == hdr->type) |
| 2341 | dev_dbg(tplg->dev, |
| 2342 | "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n", |
| 2343 | hdr->payload_size, hdr->type, hdr->version, |
| 2344 | hdr->vendor_type, tplg->pass); |
| 2345 | |
| 2346 | return 1; |
| 2347 | } |
| 2348 | |
| 2349 | /* check header type and call appropriate handler */ |
| 2350 | static int soc_tplg_load_header(struct soc_tplg *tplg, |
| 2351 | struct snd_soc_tplg_hdr *hdr) |
| 2352 | { |
| 2353 | tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr); |
| 2354 | |
| 2355 | /* check for matching ID */ |
| 2356 | if (hdr->index != tplg->req_index && |
| 2357 | hdr->index != SND_SOC_TPLG_INDEX_ALL) |
| 2358 | return 0; |
| 2359 | |
| 2360 | tplg->index = hdr->index; |
| 2361 | |
| 2362 | switch (hdr->type) { |
| 2363 | case SND_SOC_TPLG_TYPE_MIXER: |
| 2364 | case SND_SOC_TPLG_TYPE_ENUM: |
| 2365 | case SND_SOC_TPLG_TYPE_BYTES: |
| 2366 | return soc_tplg_kcontrol_elems_load(tplg, hdr); |
| 2367 | case SND_SOC_TPLG_TYPE_DAPM_GRAPH: |
| 2368 | return soc_tplg_dapm_graph_elems_load(tplg, hdr); |
| 2369 | case SND_SOC_TPLG_TYPE_DAPM_WIDGET: |
| 2370 | return soc_tplg_dapm_widget_elems_load(tplg, hdr); |
| 2371 | case SND_SOC_TPLG_TYPE_PCM: |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 2372 | return soc_tplg_pcm_elems_load(tplg, hdr); |
Mengdong Lin | 3fbf793 | 2016-11-03 01:05:01 +0800 | [diff] [blame] | 2373 | case SND_SOC_TPLG_TYPE_DAI: |
Mengdong Lin | 9aa3f03 | 2016-11-03 01:05:15 +0800 | [diff] [blame] | 2374 | return soc_tplg_dai_elems_load(tplg, hdr); |
Mengdong Lin | 593d9e5 | 2016-11-03 01:04:27 +0800 | [diff] [blame] | 2375 | case SND_SOC_TPLG_TYPE_DAI_LINK: |
| 2376 | case SND_SOC_TPLG_TYPE_BACKEND_LINK: |
| 2377 | /* physical link configurations */ |
| 2378 | return soc_tplg_link_elems_load(tplg, hdr); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2379 | case SND_SOC_TPLG_TYPE_MANIFEST: |
| 2380 | return soc_tplg_manifest_load(tplg, hdr); |
| 2381 | default: |
| 2382 | /* bespoke vendor data object */ |
| 2383 | return soc_tplg_vendor_load(tplg, hdr); |
| 2384 | } |
| 2385 | |
| 2386 | return 0; |
| 2387 | } |
| 2388 | |
| 2389 | /* process the topology file headers */ |
| 2390 | static int soc_tplg_process_headers(struct soc_tplg *tplg) |
| 2391 | { |
| 2392 | struct snd_soc_tplg_hdr *hdr; |
| 2393 | int ret; |
| 2394 | |
| 2395 | tplg->pass = SOC_TPLG_PASS_START; |
| 2396 | |
| 2397 | /* process the header types from start to end */ |
| 2398 | while (tplg->pass <= SOC_TPLG_PASS_END) { |
| 2399 | |
| 2400 | tplg->hdr_pos = tplg->fw->data; |
| 2401 | hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos; |
| 2402 | |
| 2403 | while (!soc_tplg_is_eof(tplg)) { |
| 2404 | |
| 2405 | /* make sure header is valid before loading */ |
| 2406 | ret = soc_valid_header(tplg, hdr); |
| 2407 | if (ret < 0) |
| 2408 | return ret; |
| 2409 | else if (ret == 0) |
| 2410 | break; |
| 2411 | |
| 2412 | /* load the header object */ |
| 2413 | ret = soc_tplg_load_header(tplg, hdr); |
| 2414 | if (ret < 0) |
| 2415 | return ret; |
| 2416 | |
| 2417 | /* goto next header */ |
| 2418 | tplg->hdr_pos += hdr->payload_size + |
| 2419 | sizeof(struct snd_soc_tplg_hdr); |
| 2420 | hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos; |
| 2421 | } |
| 2422 | |
| 2423 | /* next data type pass */ |
| 2424 | tplg->pass++; |
| 2425 | } |
| 2426 | |
| 2427 | /* signal DAPM we are complete */ |
| 2428 | ret = soc_tplg_dapm_complete(tplg); |
| 2429 | if (ret < 0) |
| 2430 | dev_err(tplg->dev, |
| 2431 | "ASoC: failed to initialise DAPM from Firmware\n"); |
| 2432 | |
| 2433 | return ret; |
| 2434 | } |
| 2435 | |
| 2436 | static int soc_tplg_load(struct soc_tplg *tplg) |
| 2437 | { |
| 2438 | int ret; |
| 2439 | |
| 2440 | ret = soc_tplg_process_headers(tplg); |
| 2441 | if (ret == 0) |
| 2442 | soc_tplg_complete(tplg); |
| 2443 | |
| 2444 | return ret; |
| 2445 | } |
| 2446 | |
| 2447 | /* load audio component topology from "firmware" file */ |
| 2448 | int snd_soc_tplg_component_load(struct snd_soc_component *comp, |
| 2449 | struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id) |
| 2450 | { |
| 2451 | struct soc_tplg tplg; |
| 2452 | |
| 2453 | /* setup parsing context */ |
| 2454 | memset(&tplg, 0, sizeof(tplg)); |
| 2455 | tplg.fw = fw; |
| 2456 | tplg.dev = comp->dev; |
| 2457 | tplg.comp = comp; |
| 2458 | tplg.ops = ops; |
| 2459 | tplg.req_index = id; |
| 2460 | tplg.io_ops = ops->io_ops; |
| 2461 | tplg.io_ops_count = ops->io_ops_count; |
Mengdong Lin | 1a3232d | 2015-08-18 18:12:20 +0800 | [diff] [blame] | 2462 | tplg.bytes_ext_ops = ops->bytes_ext_ops; |
| 2463 | tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2464 | |
| 2465 | return soc_tplg_load(&tplg); |
| 2466 | } |
| 2467 | EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load); |
| 2468 | |
| 2469 | /* remove this dynamic widget */ |
| 2470 | void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w) |
| 2471 | { |
| 2472 | /* make sure we are a widget */ |
| 2473 | if (w->dobj.type != SND_SOC_DOBJ_WIDGET) |
| 2474 | return; |
| 2475 | |
| 2476 | remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET); |
| 2477 | } |
| 2478 | EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove); |
| 2479 | |
| 2480 | /* remove all dynamic widgets from this DAPM context */ |
| 2481 | void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm, |
| 2482 | u32 index) |
| 2483 | { |
| 2484 | struct snd_soc_dapm_widget *w, *next_w; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2485 | |
| 2486 | list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) { |
| 2487 | |
| 2488 | /* make sure we are a widget with correct context */ |
| 2489 | if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm) |
| 2490 | continue; |
| 2491 | |
| 2492 | /* match ID */ |
| 2493 | if (w->dobj.index != index && |
| 2494 | w->dobj.index != SND_SOC_TPLG_INDEX_ALL) |
| 2495 | continue; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2496 | /* check and free and dynamic widget kcontrols */ |
| 2497 | snd_soc_tplg_widget_remove(w); |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2498 | snd_soc_dapm_free_widget(w); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2499 | } |
Jyri Sarha | fd589a1 | 2015-11-10 18:12:42 +0200 | [diff] [blame] | 2500 | snd_soc_dapm_reset_cache(dapm); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2501 | } |
| 2502 | EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all); |
| 2503 | |
| 2504 | /* remove dynamic controls from the component driver */ |
| 2505 | int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index) |
| 2506 | { |
| 2507 | struct snd_soc_dobj *dobj, *next_dobj; |
| 2508 | int pass = SOC_TPLG_PASS_END; |
| 2509 | |
| 2510 | /* process the header types from end to start */ |
| 2511 | while (pass >= SOC_TPLG_PASS_START) { |
| 2512 | |
| 2513 | /* remove mixer controls */ |
| 2514 | list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list, |
| 2515 | list) { |
| 2516 | |
| 2517 | /* match index */ |
| 2518 | if (dobj->index != index && |
| 2519 | dobj->index != SND_SOC_TPLG_INDEX_ALL) |
| 2520 | continue; |
| 2521 | |
| 2522 | switch (dobj->type) { |
| 2523 | case SND_SOC_DOBJ_MIXER: |
| 2524 | remove_mixer(comp, dobj, pass); |
| 2525 | break; |
| 2526 | case SND_SOC_DOBJ_ENUM: |
| 2527 | remove_enum(comp, dobj, pass); |
| 2528 | break; |
| 2529 | case SND_SOC_DOBJ_BYTES: |
| 2530 | remove_bytes(comp, dobj, pass); |
| 2531 | break; |
| 2532 | case SND_SOC_DOBJ_WIDGET: |
| 2533 | remove_widget(comp, dobj, pass); |
| 2534 | break; |
| 2535 | case SND_SOC_DOBJ_PCM: |
Mengdong Lin | 64527e8 | 2016-01-15 16:13:28 +0800 | [diff] [blame] | 2536 | remove_dai(comp, dobj, pass); |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2537 | break; |
Mengdong Lin | acfc7d4 | 2016-01-15 16:13:37 +0800 | [diff] [blame] | 2538 | case SND_SOC_DOBJ_DAI_LINK: |
| 2539 | remove_link(comp, dobj, pass); |
| 2540 | break; |
Liam Girdwood | 8a97823 | 2015-05-29 19:06:14 +0100 | [diff] [blame] | 2541 | default: |
| 2542 | dev_err(comp->dev, "ASoC: invalid component type %d for removal\n", |
| 2543 | dobj->type); |
| 2544 | break; |
| 2545 | } |
| 2546 | } |
| 2547 | pass--; |
| 2548 | } |
| 2549 | |
| 2550 | /* let caller know if FW can be freed when no objects are left */ |
| 2551 | return !list_empty(&comp->dobj_list); |
| 2552 | } |
| 2553 | EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove); |