aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-11-18 13:45:52 -0500
committerMark Brown <broonie@kernel.org>2014-11-19 05:46:03 -0500
commit20feb881988cdf5f53304c355ae8ee3bf82e80ec (patch)
tree195f81489bd8935cd1103d469b068c5181562bba /include/sound
parentf114040e3ea6e07372334ade75d1ee0775c355e1 (diff)
ASoC: Add helper functions for deferred regmap setup
Some drivers (most notably the AC'97 drivers) do not have access to their regmap struct when the component/codec is registered. For those drivers the automatic regmap setup will not work and needs to be done manually, typically from the component/CODEC drivers probe callback. This patch adds a set of helper function to handle deferred regmap initialization as well as early regmap tear-down. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/soc.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 7ba7130037a0..342b43b3799e 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -1277,6 +1277,41 @@ void snd_soc_component_async_complete(struct snd_soc_component *component);
1277int snd_soc_component_test_bits(struct snd_soc_component *component, 1277int snd_soc_component_test_bits(struct snd_soc_component *component,
1278 unsigned int reg, unsigned int mask, unsigned int value); 1278 unsigned int reg, unsigned int mask, unsigned int value);
1279 1279
1280void snd_soc_component_init_regmap(struct snd_soc_component *component,
1281 struct regmap *regmap);
1282void snd_soc_component_exit_regmap(struct snd_soc_component *component);
1283
1284/**
1285 * snd_soc_codec_init_regmap() - Initialize regmap instance for the CODEC
1286 * @codec: The CODEC for which to initialize the regmap instance
1287 * @regmap: The regmap instance that should be used by the CODEC
1288 *
1289 * This function allows deferred assignment of the regmap instance that is
1290 * associated with the CODEC. Only use this if the regmap instance is not yet
1291 * ready when the CODEC is registered. The function must also be called before
1292 * the first IO attempt of the CODEC.
1293 */
1294static inline void snd_soc_codec_init_regmap(struct snd_soc_codec *codec,
1295 struct regmap *regmap)
1296{
1297 snd_soc_component_init_regmap(&codec->component, regmap);
1298}
1299
1300/**
1301 * snd_soc_codec_exit_regmap() - De-initialize regmap instance for the CODEC
1302 * @codec: The CODEC for which to de-initialize the regmap instance
1303 *
1304 * Calls regmap_exit() on the regmap instance associated to the CODEC and
1305 * removes the regmap instance from the CODEC.
1306 *
1307 * This function should only be used if snd_soc_codec_init_regmap() was used to
1308 * initialize the regmap instance.
1309 */
1310static inline void snd_soc_codec_exit_regmap(struct snd_soc_codec *codec)
1311{
1312 snd_soc_component_exit_regmap(&codec->component);
1313}
1314
1280/* device driver data */ 1315/* device driver data */
1281 1316
1282static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card, 1317static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,