Skip to content

Commit

Permalink
regmap: Add support for 2/6 register formating
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Wolfram Sang authored and Mark Brown committed Jan 27, 2012
1 parent a24f64a commit 9aa5075
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions drivers/base/regmap/regmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ static bool regmap_volatile_range(struct regmap *map, unsigned int reg,
return true;
}

static void regmap_format_2_6_write(struct regmap *map,
unsigned int reg, unsigned int val)
{
u8 *out = map->work_buf;

*out = (reg << 6) | val;
}

static void regmap_format_4_12_write(struct regmap *map,
unsigned int reg, unsigned int val)
{
Expand Down Expand Up @@ -180,6 +188,16 @@ struct regmap *regmap_init(struct device *dev,
}

switch (config->reg_bits) {
case 2:
switch (config->val_bits) {
case 6:
map->format.format_write = regmap_format_2_6_write;
break;
default:
goto err_map;
}
break;

case 4:
switch (config->val_bits) {
case 12:
Expand Down

0 comments on commit 9aa5075

Please sign in to comment.