Commit 1321e883 authored by Dimitris Papastamos's avatar Dimitris Papastamos Committed by Mark Brown

ASoC: soc-cache: Clean up the cache manipulation code

Use Takashi's clean up code to make the cache manipulation code more
readable.
Signed-off-by: default avatarDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 0378b6ac
...@@ -761,6 +761,49 @@ int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec, ...@@ -761,6 +761,49 @@ int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
} }
EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io); EXPORT_SYMBOL_GPL(snd_soc_codec_set_cache_io);
static bool snd_soc_set_cache_val(void *base, unsigned int idx,
unsigned int val, unsigned int word_size)
{
switch (word_size) {
case 1: {
u8 *cache = base;
if (cache[idx] == val)
return true;
cache[idx] = val;
break;
}
case 2: {
u16 *cache = base;
if (cache[idx] == val)
return true;
cache[idx] = val;
break;
}
default:
BUG();
}
return false;
}
static unsigned int snd_soc_get_cache_val(const void *base, unsigned int idx,
unsigned int word_size)
{
switch (word_size) {
case 1: {
const u8 *cache = base;
return cache[idx];
}
case 2: {
const u16 *cache = base;
return cache[idx];
}
default:
BUG();
}
/* unreachable */
return -1;
}
struct snd_soc_rbtree_node { struct snd_soc_rbtree_node {
struct rb_node node; struct rb_node node;
unsigned int reg; unsigned int reg;
...@@ -924,7 +967,12 @@ static int snd_soc_rbtree_cache_exit(struct snd_soc_codec *codec) ...@@ -924,7 +967,12 @@ static int snd_soc_rbtree_cache_exit(struct snd_soc_codec *codec)
static int snd_soc_rbtree_cache_init(struct snd_soc_codec *codec) static int snd_soc_rbtree_cache_init(struct snd_soc_codec *codec)
{ {
struct snd_soc_rbtree_node *rbtree_node;
struct snd_soc_rbtree_ctx *rbtree_ctx; struct snd_soc_rbtree_ctx *rbtree_ctx;
unsigned int val;
unsigned int word_size;
int i;
int ret;
codec->reg_cache = kmalloc(sizeof *rbtree_ctx, GFP_KERNEL); codec->reg_cache = kmalloc(sizeof *rbtree_ctx, GFP_KERNEL);
if (!codec->reg_cache) if (!codec->reg_cache)
...@@ -936,53 +984,25 @@ static int snd_soc_rbtree_cache_init(struct snd_soc_codec *codec) ...@@ -936,53 +984,25 @@ static int snd_soc_rbtree_cache_init(struct snd_soc_codec *codec)
if (!codec->reg_def_copy) if (!codec->reg_def_copy)
return 0; return 0;
/* /*
* populate the rbtree with the initialized registers. All other * populate the rbtree with the initialized registers. All other
* registers will be inserted into the tree when they are first written. * registers will be inserted when they are first modified.
* */
* The reasoning behind this, is that we need to step through and word_size = codec->driver->reg_word_size;
* dereference the cache in u8/u16 increments without sacrificing for (i = 0; i < codec->driver->reg_cache_size; ++i) {
* portability. This could also be done using memcpy() but that would val = snd_soc_get_cache_val(codec->reg_def_copy, i, word_size);
* be slightly more cryptic. if (!val)
*/ continue;
#define snd_soc_rbtree_populate(cache) \ rbtree_node = kzalloc(sizeof *rbtree_node, GFP_KERNEL);
({ \ if (!rbtree_node) {
int ret, i; \ ret = -ENOMEM;
struct snd_soc_rbtree_node *rbtree_node; \ snd_soc_cache_exit(codec);
\ break;
ret = 0; \ }
cache = codec->reg_def_copy; \ rbtree_node->reg = i;
for (i = 0; i < codec->driver->reg_cache_size; ++i) { \ rbtree_node->value = val;
if (!cache[i]) \ rbtree_node->defval = val;
continue; \ snd_soc_rbtree_insert(&rbtree_ctx->root, rbtree_node);
rbtree_node = kzalloc(sizeof *rbtree_node, GFP_KERNEL); \
if (!rbtree_node) { \
ret = -ENOMEM; \
snd_soc_cache_exit(codec); \
break; \
} \
rbtree_node->reg = i; \
rbtree_node->value = cache[i]; \
rbtree_node->defval = cache[i]; \
snd_soc_rbtree_insert(&rbtree_ctx->root, \
rbtree_node); \
} \
ret; \
})
switch (codec->driver->reg_word_size) {
case 1: {
const u8 *cache;
return snd_soc_rbtree_populate(cache);
}
case 2: {
const u16 *cache;
return snd_soc_rbtree_populate(cache);
}
default:
BUG();
} }
return 0; return 0;
...@@ -1165,29 +1185,10 @@ static int snd_soc_lzo_cache_write(struct snd_soc_codec *codec, ...@@ -1165,29 +1185,10 @@ static int snd_soc_lzo_cache_write(struct snd_soc_codec *codec,
} }
/* write the new value to the cache */ /* write the new value to the cache */
switch (codec->driver->reg_word_size) { if (snd_soc_set_cache_val(lzo_block->dst, blkpos, value,
case 1: { codec->driver->reg_word_size)) {
u8 *cache; kfree(lzo_block->dst);
cache = lzo_block->dst; goto out;
if (cache[blkpos] == value) {
kfree(lzo_block->dst);
goto out;
}
cache[blkpos] = value;
}
break;
case 2: {
u16 *cache;
cache = lzo_block->dst;
if (cache[blkpos] == value) {
kfree(lzo_block->dst);
goto out;
}
cache[blkpos] = value;
}
break;
default:
BUG();
} }
/* prepare the source to be the decompressed block */ /* prepare the source to be the decompressed block */
...@@ -1241,25 +1242,10 @@ static int snd_soc_lzo_cache_read(struct snd_soc_codec *codec, ...@@ -1241,25 +1242,10 @@ static int snd_soc_lzo_cache_read(struct snd_soc_codec *codec,
/* decompress the block */ /* decompress the block */
ret = snd_soc_lzo_decompress_cache_block(codec, lzo_block); ret = snd_soc_lzo_decompress_cache_block(codec, lzo_block);
if (ret >= 0) { if (ret >= 0)
/* fetch the value from the cache */ /* fetch the value from the cache */
switch (codec->driver->reg_word_size) { *value = snd_soc_get_cache_val(lzo_block->dst, blkpos,
case 1: { codec->driver->reg_word_size);
u8 *cache;
cache = lzo_block->dst;
*value = cache[blkpos];
}
break;
case 2: {
u16 *cache;
cache = lzo_block->dst;
*value = cache[blkpos];
}
break;
default:
BUG();
}
}
kfree(lzo_block->dst); kfree(lzo_block->dst);
/* restore the pointer and length of the compressed block */ /* restore the pointer and length of the compressed block */
...@@ -1414,28 +1400,10 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec) ...@@ -1414,28 +1400,10 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec)
ret = snd_soc_cache_read(codec, i, &val); ret = snd_soc_cache_read(codec, i, &val);
if (ret) if (ret)
return ret; return ret;
if (codec_drv->reg_cache_default) { if (codec_drv->reg_cache_default)
switch (codec_drv->reg_word_size) { if (snd_soc_get_cache_val(codec_drv->reg_cache_default,
case 1: { i, codec_drv->reg_word_size) == val)
const u8 *cache; continue;
cache = codec_drv->reg_cache_default;
if (cache[i] == val)
continue;
}
break;
case 2: {
const u16 *cache;
cache = codec_drv->reg_cache_default;
if (cache[i] == val)
continue;
}
break;
default:
BUG();
}
}
ret = snd_soc_write(codec, i, val); ret = snd_soc_write(codec, i, val);
if (ret) if (ret)
return ret; return ret;
...@@ -1448,50 +1416,16 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec) ...@@ -1448,50 +1416,16 @@ static int snd_soc_flat_cache_sync(struct snd_soc_codec *codec)
static int snd_soc_flat_cache_write(struct snd_soc_codec *codec, static int snd_soc_flat_cache_write(struct snd_soc_codec *codec,
unsigned int reg, unsigned int value) unsigned int reg, unsigned int value)
{ {
switch (codec->driver->reg_word_size) { snd_soc_set_cache_val(codec->reg_cache, reg, value,
case 1: { codec->driver->reg_word_size);
u8 *cache;
cache = codec->reg_cache;
cache[reg] = value;
}
break;
case 2: {
u16 *cache;
cache = codec->reg_cache;
cache[reg] = value;
}
break;
default:
BUG();
}
return 0; return 0;
} }
static int snd_soc_flat_cache_read(struct snd_soc_codec *codec, static int snd_soc_flat_cache_read(struct snd_soc_codec *codec,
unsigned int reg, unsigned int *value) unsigned int reg, unsigned int *value)
{ {
switch (codec->driver->reg_word_size) { *value = snd_soc_get_cache_val(codec->reg_cache, reg,
case 1: { codec->driver->reg_word_size);
u8 *cache;
cache = codec->reg_cache;
*value = cache[reg];
}
break;
case 2: {
u16 *cache;
cache = codec->reg_cache;
*value = cache[reg];
}
break;
default:
BUG();
}
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment