|
@@ -1948,27 +1948,9 @@ static int skl_tplg_fill_pins_info(struct device *dev,
|
|
|
* on the direction
|
|
|
*/
|
|
|
static int skl_tplg_fill_fmt(struct device *dev,
|
|
|
- struct skl_module_cfg *mconfig, u32 tkn,
|
|
|
- u32 value, u32 dir, u32 pin_count)
|
|
|
+ struct skl_module_fmt *dst_fmt,
|
|
|
+ u32 tkn, u32 value)
|
|
|
{
|
|
|
- struct skl_module_fmt *dst_fmt;
|
|
|
-
|
|
|
- switch (dir) {
|
|
|
- case SKL_DIR_IN:
|
|
|
- dst_fmt = mconfig->in_fmt;
|
|
|
- dst_fmt += pin_count;
|
|
|
- break;
|
|
|
-
|
|
|
- case SKL_DIR_OUT:
|
|
|
- dst_fmt = mconfig->out_fmt;
|
|
|
- dst_fmt += pin_count;
|
|
|
- break;
|
|
|
-
|
|
|
- default:
|
|
|
- dev_err(dev, "Invalid direction value\n");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
switch (tkn) {
|
|
|
case SKL_TKN_U32_FMT_CH:
|
|
|
dst_fmt->channels = value;
|
|
@@ -2010,6 +1992,29 @@ static int skl_tplg_fill_fmt(struct device *dev,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static int skl_tplg_widget_fill_fmt(struct device *dev,
|
|
|
+ struct skl_module_cfg *mconfig,
|
|
|
+ u32 tkn, u32 val, u32 dir, int fmt_idx)
|
|
|
+{
|
|
|
+ struct skl_module_fmt *dst_fmt;
|
|
|
+
|
|
|
+ switch (dir) {
|
|
|
+ case SKL_DIR_IN:
|
|
|
+ dst_fmt = &mconfig->in_fmt[fmt_idx];
|
|
|
+ break;
|
|
|
+
|
|
|
+ case SKL_DIR_OUT:
|
|
|
+ dst_fmt = &mconfig->out_fmt[fmt_idx];
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ dev_err(dev, "Invalid direction: %d\n", dir);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ return skl_tplg_fill_fmt(dev, dst_fmt, tkn, val);
|
|
|
+}
|
|
|
+
|
|
|
static int skl_tplg_get_uuid(struct device *dev, struct skl_module_cfg *mconfig,
|
|
|
struct snd_soc_tplg_vendor_uuid_elem *uuid_tkn)
|
|
|
{
|
|
@@ -2190,7 +2195,7 @@ static int skl_tplg_get_token(struct device *dev,
|
|
|
case SKL_TKN_U32_FMT_INTERLEAVE:
|
|
|
case SKL_TKN_U32_FMT_SAMPLE_TYPE:
|
|
|
case SKL_TKN_U32_FMT_CH_MAP:
|
|
|
- ret = skl_tplg_fill_fmt(dev, mconfig, tkn_elem->token,
|
|
|
+ ret = skl_tplg_widget_fill_fmt(dev, mconfig, tkn_elem->token,
|
|
|
tkn_elem->value, dir, pin_index);
|
|
|
|
|
|
if (ret < 0)
|