2 * soc-io.c -- ASoC register I/O helpers
4 * Copyright 2009-2011 Wolfson Microelectronics PLC.
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/i2c.h>
15 #include <linux/spi/spi.h>
16 #include <linux/regmap.h>
17 #include <sound/soc.h>
19 #include <trace/events/asoc.h>
22 static int hw_write(struct snd_soc_codec
*codec
, unsigned int reg
,
27 if (!snd_soc_codec_volatile_register(codec
, reg
) &&
28 reg
< codec
->driver
->reg_cache_size
&&
29 !codec
->cache_bypass
) {
30 ret
= snd_soc_cache_write(codec
, reg
, value
);
35 if (codec
->cache_only
) {
36 codec
->cache_sync
= 1;
40 return regmap_write(codec
->control_data
, reg
, value
);
43 static unsigned int hw_read(struct snd_soc_codec
*codec
, unsigned int reg
)
48 if (reg
>= codec
->driver
->reg_cache_size
||
49 snd_soc_codec_volatile_register(codec
, reg
) ||
50 codec
->cache_bypass
) {
51 if (codec
->cache_only
)
54 ret
= regmap_read(codec
->control_data
, reg
, &val
);
61 ret
= snd_soc_cache_read(codec
, reg
, &val
);
67 /* Primitive bulk write support for soc-cache. The data pointed to by
68 * `data' needs to already be in the form the hardware expects. Any
69 * data written through this function will not go through the cache as
70 * it only handles writing to volatile or out of bounds registers.
72 * This is currently only supported for devices using the regmap API
75 static int snd_soc_hw_bulk_write_raw(struct snd_soc_codec
*codec
,
77 const void *data
, size_t len
)
79 /* To ensure that we don't get out of sync with the cache, check
80 * whether the base register is volatile or if we've directly asked
81 * to bypass the cache. Out of bounds registers are considered
84 if (!codec
->cache_bypass
85 && !snd_soc_codec_volatile_register(codec
, reg
)
86 && reg
< codec
->driver
->reg_cache_size
)
89 return regmap_raw_write(codec
->control_data
, reg
, data
, len
);
93 * snd_soc_codec_set_cache_io: Set up standard I/O functions.
95 * @codec: CODEC to configure.
96 * @addr_bits: Number of bits of register address data.
97 * @data_bits: Number of bits of data per register.
98 * @control: Control bus used.
100 * Register formats are frequently shared between many I2C and SPI
101 * devices. In order to promote code reuse the ASoC core provides
102 * some standard implementations of CODEC read and write operations
103 * which can be set up using this function.
105 * The caller is responsible for allocating and initialising the
108 * Note that at present this code cannot be used by CODECs with
109 * volatile registers.
111 int snd_soc_codec_set_cache_io(struct snd_soc_codec
*codec
,
112 int addr_bits
, int data_bits
,
113 enum snd_soc_control_type control
)
115 struct regmap_config config
;
117 memset(&config
, 0, sizeof(config
));
118 codec
->write
= hw_write
;
119 codec
->read
= hw_read
;
120 codec
->bulk_write_raw
= snd_soc_hw_bulk_write_raw
;
122 config
.reg_bits
= addr_bits
;
123 config
.val_bits
= data_bits
;
126 #if defined(CONFIG_REGMAP_I2C) || defined(CONFIG_REGMAP_I2C_MODULE)
128 codec
->control_data
= regmap_init_i2c(to_i2c_client(codec
->dev
),
133 #if defined(CONFIG_REGMAP_SPI) || defined(CONFIG_REGMAP_SPI_MODULE)
135 codec
->control_data
= regmap_init_spi(to_spi_device(codec
->dev
),
141 /* Device has made its own regmap arrangements */
148 if (IS_ERR(codec
->control_data
))
149 return PTR_ERR(codec
->control_data
);
153 EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io
);
155 int snd_soc_codec_set_cache_io(struct snd_soc_codec
*codec
,
156 int addr_bits
, int data_bits
,
157 enum snd_soc_control_type control
)
161 EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io
);