Skip to content

Commit

Permalink
mfd: Add WM8351 support
Browse files Browse the repository at this point in the history
The WM8351 is a WM8350 variant. As well as register default changes the
WM8351 has fewer voltage and current regulators than the WM8350.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
  • Loading branch information
Mark Brown authored and Samuel Ortiz committed Jan 4, 2009
1 parent 645524a commit ca23f8c
Show file tree
Hide file tree
Showing 5 changed files with 1,112 additions and 0 deletions.
16 changes: 16 additions & 0 deletions drivers/mfd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,22 @@ config MFD_WM8350_CONFIG_MODE_3
bool
depends on MFD_WM8350

config MFD_WM8351_CONFIG_MODE_0
bool
depends on MFD_WM8350

config MFD_WM8351_CONFIG_MODE_1
bool
depends on MFD_WM8350

config MFD_WM8351_CONFIG_MODE_2
bool
depends on MFD_WM8350

config MFD_WM8351_CONFIG_MODE_3
bool
depends on MFD_WM8350

config MFD_WM8352_CONFIG_MODE_0
bool
depends on MFD_WM8350
Expand Down
47 changes: 47 additions & 0 deletions drivers/mfd/wm8350-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,36 @@ static int wm8350_create_cache(struct wm8350 *wm8350, int type, int mode)
return -EINVAL;
}

case 1:
switch (mode) {
#ifdef CONFIG_MFD_WM8351_CONFIG_MODE_0
case 0:
reg_map = wm8351_mode0_defaults;
break;
#endif
#ifdef CONFIG_MFD_WM8351_CONFIG_MODE_1
case 1:
reg_map = wm8351_mode1_defaults;
break;
#endif
#ifdef CONFIG_MFD_WM8351_CONFIG_MODE_2
case 2:
reg_map = wm8351_mode2_defaults;
break;
#endif
#ifdef CONFIG_MFD_WM8351_CONFIG_MODE_3
case 3:
reg_map = wm8351_mode3_defaults;
break;
#endif
default:
dev_err(wm8350->dev,
"WM8351 configuration mode %d not supported\n",
mode);
return -EINVAL;
}
break;

case 2:
switch (mode) {
#ifdef CONFIG_MFD_WM8352_CONFIG_MODE_0
Expand Down Expand Up @@ -1327,6 +1357,23 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq,
}
break;

case 1:
wm8350->pmic.max_dcdc = WM8350_DCDC_4;
wm8350->pmic.max_isink = WM8350_ISINK_A;

switch (chip_rev) {
case 0:
dev_info(wm8350->dev, "WM8351 Rev A\n");
wm8350->power.rev_g_coeff = 1;
break;

default:
dev_err(wm8350->dev, "Unknown WM8351 CHIP_REV\n");
ret = -ENODEV;
goto err;
}
break;

case 2:
wm8350->pmic.max_dcdc = WM8350_DCDC_6;
wm8350->pmic.max_isink = WM8350_ISINK_B;
Expand Down
1 change: 1 addition & 0 deletions drivers/mfd/wm8350-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ static int wm8350_i2c_remove(struct i2c_client *i2c)

static const struct i2c_device_id wm8350_i2c_id[] = {
{ "wm8350", 0 },
{ "wm8351", 0 },
{ "wm8352", 0 },
{ }
};
Expand Down
Loading

0 comments on commit ca23f8c

Please sign in to comment.