Lines Matching +full:tdm +full:- +full:data +full:- +full:delay
1 // SPDX-License-Identifier: GPL-2.0-only OR MIT
101 // The specced range is -71.25...24.00 dB with step size of 0.375 dB,
102 // and a mute item below that. This is represented by -71.62...24.00 dB
104 static DECLARE_TLV_DB_MINMAX_MUTE(ssm3515_dac_volume, -7162, 2400);
141 dev_err(component->dev, "device reports:%s%s%s%s%s%s%s\n", in ssm3515_read_faults()
145 FIELD_GET(SSM3515_STATUS_AMP_OC, ret) ? " amp over-current fault" : "", in ssm3515_read_faults()
161 /* Disable the 'master power-down' */ in ssm3515_probe()
174 ret = snd_soc_component_update_bits(dai->component, in ssm3515_mute()
187 struct snd_soc_component *component = dai->component; in ssm3515_hw_params()
202 return -EINVAL; in ssm3515_hw_params()
225 return -EINVAL; in ssm3515_hw_params()
239 struct snd_soc_component *component = dai->component; in ssm3515_set_fmt()
240 bool fpol_inv = false; /* non-inverted: frame starts with low-to-high FSYNC */ in ssm3515_set_fmt()
254 sai1 &= ~SSM3515_SAI1_SDATA_FMT; /* 1 bit start delay */ in ssm3515_set_fmt()
258 sai1 |= SSM3515_SAI1_SDATA_FMT; /* no start delay */ in ssm3515_set_fmt()
261 return -EINVAL; in ssm3515_set_fmt()
271 /* Set the serial input to 'TDM mode' */ in ssm3515_set_fmt()
276 * We configure the codec in a 'TDM mode', in which the in ssm3515_set_fmt()
301 struct snd_soc_component *component = dai->component; in ssm3515_set_tdm_slot()
305 return -EINVAL; in ssm3515_set_tdm_slot()
310 return -EINVAL; in ssm3515_set_tdm_slot()
329 return -EINVAL; in ssm3515_set_tdm_slot()
355 ssm3515_read_faults(dai->component); in ssm3515_hw_free()
403 struct ssm3515_data *data; in ssm3515_i2c_probe() local
406 data = devm_kzalloc(&client->dev, sizeof(*data), GFP_KERNEL); in ssm3515_i2c_probe()
407 if (!data) in ssm3515_i2c_probe()
408 return -ENOMEM; in ssm3515_i2c_probe()
410 data->dev = &client->dev; in ssm3515_i2c_probe()
411 i2c_set_clientdata(client, data); in ssm3515_i2c_probe()
413 data->regmap = devm_regmap_init_i2c(client, &ssm3515_i2c_regmap); in ssm3515_i2c_probe()
414 if (IS_ERR(data->regmap)) in ssm3515_i2c_probe()
415 return dev_err_probe(data->dev, PTR_ERR(data->regmap), in ssm3515_i2c_probe()
419 ret = regmap_update_bits(data->regmap, SSM3515_PWR, in ssm3515_i2c_probe()
422 return dev_err_probe(data->dev, ret, in ssm3515_i2c_probe()
424 regmap_reinit_cache(data->regmap, &ssm3515_i2c_regmap); in ssm3515_i2c_probe()
426 return devm_snd_soc_register_component(data->dev, in ssm3515_i2c_probe()