On Tue, Feb 27, 2018 at 05:51:28PM -0500, Matt Porter wrote: > +static bool tda7419_writeable_reg(struct device *dev, unsigned int reg) > +{ > + return true; > +} This is the default behaviour, may as well omit it (but equally it does no harm). > +static inline int tda7419_vol_get_value(int val, unsigned int mask, > + int thresh, unsigned int invert) > +{ > + val &= mask; > + if (val < thresh) { > + if (invert) > + val = 0 - val; > + } else if (val > thresh) { This feels like something some other device might want to use so might warrant pulling out into a general control at some point but I'd not insist on doing it now. > +static struct snd_kcontrol_new tda7419_controls[] = { > +SOC_ENUM("Main Source Select", soc_enum_main_src_sel), Should this be a DAPM route? > +SOC_SINGLE("Main Source AutoZero", TDA7419_MAIN_SRC_REG, > + TDA7419_MAIN_SRC_AUTOZERO, 1, 1), There's a lot of on/off switches for various things in here - these should all have Switch at the end of their names so that userspace can see how it's expected to display them. Most of the controls with a max value of 1 probably fall into this category. > +SOC_SINGLE("Clock Fast Mode", TDA7419_MUTE_CLK_REG, > + TDA7419_CLK_FAST_MODE, 1, 1), What does this do - should it be in set_sysclk() or something? > + /* Configure registers */ > + regmap_write(tda7419->regmap, TDA7419_VOLUME_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_MIXING_GAIN_REG, 0x0f); > + regmap_write(tda7419->regmap, TDA7419_ATTENUATOR_LF_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_ATTENUATOR_RF_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_ATTENUATOR_LR_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_ATTENUATOR_RR_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_MIXING_LEVEL_REG, 0xe0); > + regmap_write(tda7419->regmap, TDA7419_ATTENUATOR_SUB_REG, 0xe0); This looks like it's setting default volumes - just leave those at the chip defaults and let userspace handle setting them, what works for one board may be totally inappropriate on another board and using the chip default means we've got some fixed thing we don't need to discuss. > +static int tda7419_remove(struct i2c_client *i2c) > +{ > + int i; > + struct tda7419_data *tda7419 = i2c_get_clientdata(i2c); > + > + /* Reset registers to defaults */ > + for (i = 0; i < ARRAY_SIZE(tda7419_regmap_defaults); i++) > + regmap_write(tda7419->regmap, > + tda7419_regmap_defaults[i].reg, > + tda7419_regmap_defaults[i].def); Why are we doing this? Other drivers don't do it... if anything I'd expect a reset on probe in case the bootloader or something left the chip configured.