2 * soc-cache.c -- ASoC register cache helpers
4 * Copyright 2009 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 <sound/soc.h>
18 static unsigned int snd_soc_7_9_read(struct snd_soc_codec *codec,
21 u16 *cache = codec->reg_cache;
22 if (reg >= codec->reg_cache_size)
27 static int snd_soc_7_9_write(struct snd_soc_codec *codec, unsigned int reg,
30 u16 *cache = codec->reg_cache;
34 BUG_ON(codec->volatile_register);
36 data[0] = (reg << 1) | ((value >> 8) & 0x0001);
37 data[1] = value & 0x00ff;
39 if (reg < codec->reg_cache_size)
41 ret = codec->hw_write(codec->control_data, data, 2);
50 #if defined(CONFIG_SPI_MASTER)
51 static int snd_soc_7_9_spi_write(void *control_data, const char *data,
54 struct spi_device *spi = control_data;
55 struct spi_transfer t;
66 memset(&t, 0, (sizeof t));
71 spi_message_add_tail(&t, &m);
77 #define snd_soc_7_9_spi_write NULL
80 static int snd_soc_8_8_write(struct snd_soc_codec *codec, unsigned int reg,
83 u8 *cache = codec->reg_cache;
86 BUG_ON(codec->volatile_register);
89 data[1] = value & 0xff;
91 if (reg < codec->reg_cache_size)
94 if (codec->hw_write(codec->control_data, data, 2) == 2)
100 static unsigned int snd_soc_8_8_read(struct snd_soc_codec *codec,
103 u8 *cache = codec->reg_cache;
104 if (reg >= codec->reg_cache_size)
109 static int snd_soc_8_16_write(struct snd_soc_codec *codec, unsigned int reg,
112 u16 *reg_cache = codec->reg_cache;
116 data[1] = (value >> 8) & 0xff;
117 data[2] = value & 0xff;
119 if (!snd_soc_codec_volatile_register(codec, reg))
120 reg_cache[reg] = value;
122 if (codec->hw_write(codec->control_data, data, 3) == 3)
128 static unsigned int snd_soc_8_16_read(struct snd_soc_codec *codec,
131 u16 *cache = codec->reg_cache;
133 if (reg >= codec->reg_cache_size ||
134 snd_soc_codec_volatile_register(codec, reg))
135 return codec->hw_read(codec, reg);
140 #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
141 static unsigned int snd_soc_8_16_read_i2c(struct snd_soc_codec *codec,
144 struct i2c_msg xfer[2];
148 struct i2c_client *client = codec->control_data;
151 xfer[0].addr = client->addr;
157 xfer[1].addr = client->addr;
158 xfer[1].flags = I2C_M_RD;
160 xfer[1].buf = (u8 *)&data;
162 ret = i2c_transfer(client->adapter, xfer, 2);
164 dev_err(&client->dev, "i2c_transfer() returned %d\n", ret);
168 return (data >> 8) | ((data & 0xff) << 8);
171 #define snd_soc_8_16_read_i2c NULL
177 int (*write)(struct snd_soc_codec *codec, unsigned int, unsigned int);
178 int (*spi_write)(void *, const char *, int);
179 unsigned int (*read)(struct snd_soc_codec *, unsigned int);
180 unsigned int (*i2c_read)(struct snd_soc_codec *, unsigned int);
183 .addr_bits = 7, .data_bits = 9,
184 .write = snd_soc_7_9_write, .read = snd_soc_7_9_read,
185 .spi_write = snd_soc_7_9_spi_write
188 .addr_bits = 8, .data_bits = 8,
189 .write = snd_soc_8_8_write, .read = snd_soc_8_8_read,
192 .addr_bits = 8, .data_bits = 16,
193 .write = snd_soc_8_16_write, .read = snd_soc_8_16_read,
194 .i2c_read = snd_soc_8_16_read_i2c,
199 * snd_soc_codec_set_cache_io: Set up standard I/O functions.
201 * @codec: CODEC to configure.
202 * @type: Type of cache.
203 * @addr_bits: Number of bits of register address data.
204 * @data_bits: Number of bits of data per register.
205 * @control: Control bus used.
207 * Register formats are frequently shared between many I2C and SPI
208 * devices. In order to promote code reuse the ASoC core provides
209 * some standard implementations of CODEC read and write operations
210 * which can be set up using this function.
212 * The caller is responsible for allocating and initialising the
215 * Note that at present this code cannot be used by CODECs with
216 * volatile registers.
218 int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
219 int addr_bits, int data_bits,
220 enum snd_soc_control_type control)
224 for (i = 0; i < ARRAY_SIZE(io_types); i++)
225 if (io_types[i].addr_bits == addr_bits &&
226 io_types[i].data_bits == data_bits)
228 if (i == ARRAY_SIZE(io_types)) {
230 "No I/O functions for %d bit address %d bit data\n",
231 addr_bits, data_bits);
235 codec->write = io_types[i].write;
236 codec->read = io_types[i].read;
243 #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
244 codec->hw_write = (hw_write_t)i2c_master_send;
246 if (io_types[i].i2c_read)
247 codec->hw_read = io_types[i].i2c_read;
251 if (io_types[i].spi_write)
252 codec->hw_write = io_types[i].spi_write;
258 EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);